diff --git a/VERSION b/VERSION index c32d7efee0..ee9752d2e6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2023.09-dev +2023.09-rc diff --git a/database.sql b/database.sql index 11fbd514e7..ec7adc5c7a 100644 --- a/database.sql +++ b/database.sql @@ -1,6 +1,6 @@ -- ------------------------------------------ --- Friendica 2023.09-dev (Giant Rhubarb) --- DB_UPDATE_VERSION 1529 +-- Friendica 2023.09-rc (Giant Rhubarb) +-- DB_UPDATE_VERSION 1536 -- ------------------------------------------ @@ -492,6 +492,25 @@ 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(255) COMMENT 'Comma separated list of tags that will be included in the channel', + `exclude-tags` varchar(255) COMMENT 'Comma separated list of tags that aren\'t allowed in the channel', + `full-text-search` varchar(255) 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 -- @@ -510,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, @@ -1296,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 -- @@ -1549,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`), @@ -1710,15 +1756,15 @@ CREATE TABLE IF NOT EXISTS `report` ( `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_*', + `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' COMMENT '', + `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`), @@ -1843,6 +1889,7 @@ 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 '', @@ -2044,6 +2091,7 @@ CREATE VIEW `post-user-view` AS SELECT `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`, @@ -2228,6 +2276,7 @@ CREATE VIEW `post-thread-user-view` AS SELECT `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`, @@ -2396,6 +2445,7 @@ CREATE VIEW `post-view` AS SELECT `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`, @@ -2541,6 +2591,7 @@ CREATE VIEW `post-thread-view` AS SELECT `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`, diff --git a/doc/Accesskeys.md b/doc/Accesskeys.md index 9a68c62def..7f85f37ef1 100644 --- a/doc/Accesskeys.md +++ b/doc/Accesskeys.md @@ -16,6 +16,7 @@ General ------- * p - Profile * n - Network +* l - Channel * c - Community * s - Search * a - Admin @@ -28,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 diff --git a/doc/Addons.md b/doc/Addons.md index 567e5b2756..b89a48d26d 100644 --- a/doc/Addons.md +++ b/doc/Addons.md @@ -221,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: @@ -800,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); diff --git a/doc/Channels.md b/doc/Channels.md new file mode 100644 index 0000000000..260b962942 --- /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/FAQ-admin.md b/doc/FAQ-admin.md index e5f4f2a9f3..993a6c89ef 100644 --- a/doc/FAQ-admin.md +++ b/doc/FAQ-admin.md @@ -42,7 +42,7 @@ The listed emails need to be separated by a comma like this: 'admin_email' => 'mail1@example.com,mail2@example.com', ``` - + ### The Database structure seems not to be updated. What can I do? Please have a look at the Admin panel under [DB updates](/admin/dbsync/) and follow the link to *check database structure*. @@ -52,4 +52,4 @@ You can manually execute the structure update from the CLI in the base directory bin/console dbstructure update -if there occur any errors, please contact the [support group](https://forum.friendi.ca/profile/helpers). +if there occur any errors, please contact the [Friendica Support group](https://forum.friendi.ca/profile/helpers) or discuss in the [Friendica Admins group](https://forum.friendi.ca/profile/admins). diff --git a/doc/Home.md b/doc/Home.md index 9578e914a0..33ed640746 100644 --- a/doc/Home.md +++ b/doc/Home.md @@ -17,6 +17,7 @@ Friendica Documentation and Resources * [Circles and Privacy](help/Circles-and-Privacy) * [Tags and Mentions](help/Tags-and-Mentions) * [Community Groups](help/Groups) + * [Channels](help/Channels) * [Chats](help/Chats) * Further information * [Move your account](help/Move-Account) diff --git a/doc/Install.md b/doc/Install.md index bf9dffb357..dc390fbc8a 100644 --- a/doc/Install.md +++ b/doc/Install.md @@ -28,9 +28,9 @@ Due to the large variety of operating systems and PHP platforms in existence we ### Requirements * Apache with mod-rewrite enabled and "Options All" so you can use a local `.htaccess` file -* PHP 7.3+ (PHP8 is not fully supported yet) +* PHP 7.3+ * PHP *command line* access with register_argc_argv set to true in the php.ini file - * Curl, GD, GMP, PDO, mbstrings, MySQLi, hash, xml, zip and OpenSSL extensions + * Curl, GD, GMP, PDO, mbstrings, MySQLi, hash, xml, zip, IntlChar and OpenSSL extensions * The POSIX module of PHP needs to be activated (e.g. [RHEL, CentOS](http://www.bigsoft.co.uk/blog/index.php/2014/12/08/posix-php-commands-not-working-under-centos-7) have disabled it) * Some form of email server or email gateway such that PHP mail() works. If you cannot set up your own email server, you can use the [phpmailer](https://github.com/friendica/friendica-addons/tree/develop/phpmailer) addon and use a remote SMTP server. diff --git a/doc/database.md b/doc/database.md index 2848706570..516be3bae1 100644 --- a/doc/database.md +++ b/doc/database.md @@ -17,6 +17,7 @@ Database Tables | [arrived-activity](help/database/db_arrived-activity) | Id of arrived activities | | [attach](help/database/db_attach) | file attachments | | [cache](help/database/db_cache) | Stores temporary data | +| [channel](help/database/db_channel) | User defined Channels | | [config](help/database/db_config) | main configuration storage | | [contact](help/database/db_contact) | contact table | | [contact-relation](help/database/db_contact-relation) | Contact relations | @@ -61,6 +62,7 @@ Database Tables | [post-content](help/database/db_post-content) | Content for all posts | | [post-delivery](help/database/db_post-delivery) | Delivery data for posts for the batch processing | | [post-delivery-data](help/database/db_post-delivery-data) | Delivery data for items | +| [post-engagement](help/database/db_post-engagement) | Engagement data per post | | [post-history](help/database/db_post-history) | Post history | | [post-link](help/database/db_post-link) | Post related external links | | [post-media](help/database/db_post-media) | Attached media | diff --git a/doc/database/db_channel.md b/doc/database/db_channel.md new file mode 100644 index 0000000000..e37aa93d11 --- /dev/null +++ b/doc/database/db_channel.md @@ -0,0 +1,37 @@ +Table channel +=========== + +User defined Channels + +Fields +------ + +| Field | Description | Type | Null | Key | Default | Extra | +| ---------------- | ------------------------------------------------------------------------------------------------- | ------------------ | ---- | --- | ------- | -------------- | +| id | | int unsigned | NO | PRI | NULL | auto_increment | +| uid | User id | mediumint unsigned | NO | | NULL | | +| label | Channel label | varchar(64) | NO | | NULL | | +| description | Channel description | varchar(64) | YES | | NULL | | +| circle | Circle or channel that this channel is based on | int | YES | | NULL | | +| access-key | Access key | varchar(1) | YES | | NULL | | +| include-tags | Comma separated list of tags that will be included in the channel | varchar(255) | YES | | NULL | | +| exclude-tags | Comma separated list of tags that aren't allowed in the channel | varchar(255) | YES | | NULL | | +| full-text-search | Full text search pattern, see https://mariadb.com/kb/en/full-text-index-overview/#in-boolean-mode | varchar(255) | YES | | NULL | | +| media-type | Filtered media types | smallint unsigned | YES | | NULL | | + +Indexes +------------ + +| Name | Fields | +| ------- | ------ | +| PRIMARY | id | +| uid | uid | + +Foreign Keys +------------ + +| Field | Target Table | Target Field | +|-------|--------------|--------------| +| uid | [user](help/database/db_user) | uid | + +Return to [database documentation](help/database) diff --git a/doc/database/db_contact-relation.md b/doc/database/db_contact-relation.md index 8628b1ef66..f11fd95a0f 100644 --- a/doc/database/db_contact-relation.md +++ b/doc/database/db_contact-relation.md @@ -6,13 +6,17 @@ Contact relations Fields ------ -| Field | Description | Type | Null | Key | Default | Extra | -| ---------------- | --------------------------------------------------- | ------------ | ---- | --- | ------------------- | ----- | -| cid | contact the related contact had interacted with | int unsigned | NO | PRI | 0 | | -| relation-cid | related contact who had interacted with the contact | int unsigned | NO | PRI | 0 | | -| last-interaction | Date of the last interaction | datetime | NO | | 0001-01-01 00:00:00 | | -| follow-updated | Date of the last update of the contact relationship | datetime | NO | | 0001-01-01 00:00:00 | | -| follows | | boolean | NO | | 0 | | +| Field | Description | Type | Null | Key | Default | Extra | +| --------------------- | -------------------------------------------------------- | ----------------- | ---- | --- | ------------------- | ----- | +| cid | contact the related contact had interacted with | int unsigned | NO | PRI | 0 | | +| relation-cid | related contact who had interacted with the contact | int unsigned | NO | PRI | 0 | | +| last-interaction | Date of the last interaction by relation-cid on cid | datetime | NO | | 0001-01-01 00:00:00 | | +| follow-updated | Date of the last update of the contact relationship | datetime | NO | | 0001-01-01 00:00:00 | | +| follows | if true, relation-cid follows cid | boolean | NO | | 0 | | +| score | score for interactions of cid on relation-cid | smallint unsigned | YES | | NULL | | +| relation-score | score for interactions of relation-cid on cid | smallint unsigned | YES | | NULL | | +| thread-score | score for interactions of cid on threads of relation-cid | smallint unsigned | YES | | NULL | | +| relation-thread-score | score for interactions of relation-cid on threads of cid | smallint unsigned | YES | | NULL | | Indexes ------------ diff --git a/doc/database/db_post-engagement.md b/doc/database/db_post-engagement.md new file mode 100644 index 0000000000..edca447f3d --- /dev/null +++ b/doc/database/db_post-engagement.md @@ -0,0 +1,40 @@ +Table post-engagement +=========== + +Engagement data per post + +Fields +------ + +| Field | Description | Type | Null | Key | Default | Extra | +| ------------ | --------------------------------------------------------------------- | ------------------ | ---- | --- | ------- | ----- | +| uri-id | Id of the item-uri table entry that contains the item uri | int unsigned | NO | PRI | NULL | | +| owner-id | Item owner | int unsigned | NO | | 0 | | +| contact-type | Person, organisation, news, community, relay | tinyint | NO | | 0 | | +| media-type | Type of media in a bit array (1 = image, 2 = video, 4 = audio | tinyint | NO | | 0 | | +| language | Language information about this post | varbinary(128) | YES | | NULL | | +| searchtext | Simplified text for the full text search | mediumtext | YES | | NULL | | +| created | | datetime | YES | | NULL | | +| restricted | If true, this post is either unlisted or not from a federated network | boolean | NO | | 0 | | +| comments | Number of comments | mediumint unsigned | YES | | NULL | | +| activities | Number of activities (like, dislike, ...) | mediumint unsigned | YES | | NULL | | + +Indexes +------------ + +| Name | Fields | +| ---------- | -------------------- | +| PRIMARY | uri-id | +| owner-id | owner-id | +| created | created | +| searchtext | FULLTEXT, searchtext | + +Foreign Keys +------------ + +| Field | Target Table | Target Field | +|-------|--------------|--------------| +| uri-id | [item-uri](help/database/db_item-uri) | id | +| owner-id | [contact](help/database/db_contact) | id | + +Return to [database documentation](help/database) diff --git a/doc/database/db_post-thread-user.md b/doc/database/db_post-thread-user.md index 9026370491..e4f5e39bda 100644 --- a/doc/database/db_post-thread-user.md +++ b/doc/database/db_post-thread-user.md @@ -49,6 +49,7 @@ Indexes | psid | psid | | post-user-id | post-user-id | | commented | commented | +| received | received | | uid_received | uid, received | | uid_wall_received | uid, wall, received | | uid_commented | uid, commented | diff --git a/doc/database/db_report.md b/doc/database/db_report.md index c2890e25a9..7157224314 100644 --- a/doc/database/db_report.md +++ b/doc/database/db_report.md @@ -6,24 +6,24 @@ Table report Fields ------ -| Field | Description | Type | Null | Key | Default | Extra | -| --------------- | ------------------------------------------------------------ | ------------------ | ---- | --- | ------------------- | -------------- | -| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment | -| uid | Reporting user | mediumint unsigned | YES | | NULL | | -| reporter-id | Reporting contact | int unsigned | YES | | NULL | | -| cid | Reported contact | int unsigned | NO | | NULL | | -| gsid | Reported contact server | int unsigned | YES | | NULL | | -| comment | Report | text | YES | | NULL | | -| category-id | Report category, one of Entity\Report::CATEGORY_* | int unsigned | NO | | 1 | | -| forward | Forward the report to the remote server | boolean | YES | | NULL | | -| public-remarks | Remarks shared with the reporter | text | YES | | NULL | | -| private-remarks | Remarks shared with the moderation team | text | YES | | NULL | | -| last-editor-uid | Last editor user | mediumint unsigned | YES | | NULL | | -| assigned-uid | Assigned moderator user | mediumint unsigned | YES | | NULL | | -| status | Status of the report, one of Entity\Report::STATUS_* | tinyint unsigned | NO | | NULL | | -| resolution | Resolution of the report, one of Entity\Report::RESOLUTION_* | tinyint unsigned | YES | | NULL | | -| created | | datetime(6) | NO | | 0001-01-01 00:00:00 | | -| edited | Last time the report has been edited | datetime(6) | YES | | NULL | | +| Field | Description | Type | Null | Key | Default | Extra | +| --------------- | ------------------------------------------------------------ | ------------------ | ---- | --- | -------------------------- | -------------- | +| id | sequential ID | int unsigned | NO | PRI | NULL | auto_increment | +| uid | Reporting user | mediumint unsigned | YES | | NULL | | +| reporter-id | Reporting contact | int unsigned | YES | | NULL | | +| cid | Reported contact | int unsigned | NO | | NULL | | +| gsid | Reported contact server | int unsigned | YES | | NULL | | +| comment | Report | text | YES | | NULL | | +| category-id | Report category, one of Entity Report::CATEGORY_* | int unsigned | NO | | 1 | | +| forward | Forward the report to the remote server | boolean | YES | | NULL | | +| public-remarks | Remarks shared with the reporter | text | YES | | NULL | | +| private-remarks | Remarks shared with the moderation team | text | YES | | NULL | | +| last-editor-uid | Last editor user | mediumint unsigned | YES | | NULL | | +| assigned-uid | Assigned moderator user | mediumint unsigned | YES | | NULL | | +| status | Status of the report, one of Entity Report::STATUS_* | tinyint unsigned | NO | | NULL | | +| resolution | Resolution of the report, one of Entity Report::RESOLUTION_* | tinyint unsigned | YES | | NULL | | +| created | | datetime(6) | NO | | 0001-01-01 00:00:00.000000 | | +| edited | Last time the report has been edited | datetime(6) | YES | | NULL | | Indexes ------------ diff --git a/doc/database/db_user-contact.md b/doc/database/db_user-contact.md index ac89aab1de..bfba9cb651 100644 --- a/doc/database/db_user-contact.md +++ b/doc/database/db_user-contact.md @@ -16,6 +16,7 @@ Fields | collapsed | Posts from this contact are collapsed | boolean | YES | | NULL | | | hidden | This contact is hidden from the others | boolean | YES | | NULL | | | is-blocked | User is blocked by this contact | boolean | YES | | NULL | | +| channel-frequency | Controls the frequency of the appearance of this contact in channels | tinyint unsigned | YES | | NULL | | | pending | | boolean | YES | | NULL | | | rel | The kind of the relation between the user and the contact | tinyint unsigned | YES | | NULL | | | info | | mediumtext | YES | | NULL | | diff --git a/doc/database/db_user-gserver.md b/doc/database/db_user-gserver.md index 6cfbe34eb1..7ad6de485e 100644 --- a/doc/database/db_user-gserver.md +++ b/doc/database/db_user-gserver.md @@ -8,8 +8,8 @@ Fields | Field | Description | Type | Null | Key | Default | Extra | | ------- | ---------------------------------------- | ------------------ | ---- | --- | ------- | ----- | -| uid | Owner User id | mediumint unsigned | NO | | 0 | | -| gsid | Gserver id | int unsigned | NO | | 0 | | +| uid | Owner User id | mediumint unsigned | NO | PRI | 0 | | +| gsid | Gserver id | int unsigned | NO | PRI | 0 | | | ignored | server accounts are ignored for the user | boolean | NO | | 0 | | Indexes diff --git a/doc/de/Addons.md b/doc/de/Addons.md index 0caf3f2545..0843c103ab 100644 --- a/doc/de/Addons.md +++ b/doc/de/Addons.md @@ -103,6 +103,15 @@ Derzeitige Hooks $b ist das Item-Array einer Information, die in der Datenbank und im Item gespeichert ist. {Bitte beachte: der Seiteninhalt ist bbcode - nicht HTML) +**'detect_languages'** +Wird nach der Sprachenerkennung aufgerufen. +Dieser Hook kann dafür verwendet werden, alternative Erkennungsfunktionen einzubinden. +`$data` ist ein Array: + 'text' => Der analysierte Text. + 'detected' => (Eingabe/Ausgabe) Das Array mit den erkannten Sprachen. Der Sprachcode ist der Array-Schlüssel, der Array-Wert ist der dezimale Wert für die Wahrscheinlichkeit. + 'uri-id' => Die Uri-Id des Beitrags + 'author-id' => Die Contact-id des Autors. + **'addon_settings'** - wird aufgerufen, wenn die HTML-Ausgabe der Addon-Einstellungsseite generiert wird. $b ist die HTML-Ausgabe (String) der Addon-Einstellungsseite vor dem finalen ""-Tag. @@ -316,6 +325,7 @@ Eine komplette Liste aller Hook-Callbacks mit den zugehörigen Dateien (am 01-Ap ### 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); diff --git a/doc/de/FAQ-admin.md b/doc/de/FAQ-admin.md index 2441a51304..3b171afe51 100644 --- a/doc/de/FAQ-admin.md +++ b/doc/de/FAQ-admin.md @@ -45,7 +45,7 @@ Die aufgelisteten Adressen werden wie folgt durch Kommas voneinander getrennt: 'admin_email' => 'mail1@example.com,mail2@example.com', ``` - + ### Die Datenbank Struktur schein nicht aktuell zu sein. Was kann ich tun? Rufe bitte im Admin Panel den Punkt [DB Updates](/admin/dbsync/) auf und folge dem Link *Datenbank Struktur überprüfen*. @@ -56,4 +56,4 @@ Starte dazu bitte vom Grundverzeichnis deiner Friendica Instanz folgendes Komman bin/console dbstructure update -sollten bei der Ausführung Fehler auftreten, kontaktiere bitte die [Support Gruppe](https://forum.friendi.ca/profile/helpers). +sollten bei der Ausführung Fehler auftreten, kontaktiere bitte die [Friendia Support](https://forum.friendi.ca/profile/helpers) Gruppe oder die [Friendica Admins](https://forum.friendi.ca/profile/admins) Gruppe. diff --git a/doc/de/Home.md b/doc/de/Home.md index 91976bb282..6cd6e5ea87 100644 --- a/doc/de/Home.md +++ b/doc/de/Home.md @@ -17,6 +17,7 @@ Friendica - Dokumentation und Ressourcen * [Circles und Privatsphäre](help/Circles-and-Privacy) * [Tags und Erwähnungen](help/Tags-and-Mentions) * [Community-Gruppen](help/Groups) + * [Channels](help/Channels) * [Chats](help/Chats) * Weiterführende Informationen * [Account umziehen](help/Move-Account) diff --git a/doc/de/Install.md b/doc/de/Install.md index 3040230131..db99367af3 100644 --- a/doc/de/Install.md +++ b/doc/de/Install.md @@ -25,9 +25,9 @@ Requirements --- * Apache mit einer aktiverten mod-rewrite-Funktion und dem Eintrag "Options All", so dass du die lokale .htaccess-Datei nutzen kannst -* PHP 7.3+ (PHP 8 wird noch nicht komplett unterstützt) +* PHP 7.3+ * PHP *Kommandozeilen*-Zugang mit register_argc_argv auf "true" gesetzt in der php.ini-Datei - * Curl, GD, GMP, PDO, MySQLi, xml, zip und OpenSSL-Erweiterung + * Curl, GD, GMP, PDO, mbstrings, MySQLi, hash, xml, zip, IntlChar and OpenSSL-Erweiterung * Das POSIX Modul muss aktiviert sein ([CentOS, RHEL](http://www.bigsoft.co.uk/blog/index.php/2014/12/08/posix-php-commands-not-working-under-centos-7http://www.bigsoft.co.uk/blog/index.php/2014/12/08/posix-php-commands-not-working-under-centos-7) haben dies z.B. deaktiviert) * Einen E-Mail Server, so dass PHP `mail()` funktioniert. Wenn kein eigener E-Mail Server zur Verfügung steht, kann alternativ das [phpmailer](https://github.com/friendica/friendica-addons/tree/develop/phpmailer) Addon mit einem externen SMTP Account verwendet werden. diff --git a/mod/lostpass.php b/mod/lostpass.php index 6505db5497..5eb53ae2f3 100644 --- a/mod/lostpass.php +++ b/mod/lostpass.php @@ -34,7 +34,7 @@ function lostpass_post(App $a) DI::baseUrl()->redirect(); } - $condition = ['(`email` = ? OR `nickname` = ?) AND `verified` = 1 AND `blocked` = 0 AND `account_removed` = 0 AND `account_expired` = 0', $loginame, $loginame]; + $condition = ['(`email` = ? OR `nickname` = ?) AND `verified` AND NOT `blocked` AND NOT `account_removed` AND NOT `account_expired`', $loginame, $loginame]; $user = DBA::selectFirst('user', ['uid', 'username', 'nickname', 'email', 'language'], $condition); if (!DBA::isResult($user)) { DI::sysmsg()->addNotice(DI::l10n()->t('No valid account found.')); diff --git a/src/App.php b/src/App.php index db3e644c2f..3482d11158 100644 --- a/src/App.php +++ b/src/App.php @@ -64,7 +64,7 @@ class App { const PLATFORM = 'Friendica'; const CODENAME = 'Giant Rhubarb'; - const VERSION = '2023.09-dev'; + const VERSION = '2023.09-rc'; // Allow themes to control internal parameters // by changing App values in theme.php @@ -565,6 +565,9 @@ class App */ public function runFrontend(App\Router $router, IManagePersonalConfigValues $pconfig, Authentication $auth, App\Page $page, Nav $nav, ModuleHTTPException $httpException, HTTPInputData $httpInput, float $start_time, array $server) { + $requeststring = ($_SERVER['REQUEST_METHOD'] ?? '') . ' ' . ($_SERVER['REQUEST_URI'] ?? '') . ' ' . ($_SERVER['SERVER_PROTOCOL'] ?? ''); + $this->logger->debug('Request received', ['address' => $_SERVER['REMOTE_ADDR'] ?? '', 'request' => $requeststring, 'referer' => $_SERVER['HTTP_REFERER'] ?? '', 'user-agent' => $_SERVER['HTTP_USER_AGENT'] ?? '']); + $this->profiler->set($start_time, 'start'); $this->profiler->set(microtime(true), 'classinit'); @@ -712,8 +715,10 @@ class App $response = $page->run($this, $this->baseURL, $this->args, $this->mode, $response, $this->l10n, $this->profiler, $this->config, $pconfig, $nav, $this->session->getLocalUserId()); } - $page->exit($response); + $this->logger->debug('Request processed sucessfully', ['response' => $response->getStatusCode(), 'address' => $_SERVER['REMOTE_ADDR'] ?? '', 'request' => $requeststring, 'referer' => $_SERVER['HTTP_REFERER'] ?? '', 'user-agent' => $_SERVER['HTTP_USER_AGENT'] ?? '']); + System::echoResponse($response); } catch (HTTPException $e) { + $this->logger->debug('Request processed with exception', ['response' => $e->getCode(), 'address' => $_SERVER['REMOTE_ADDR'] ?? '', 'request' => $requeststring, 'referer' => $_SERVER['HTTP_REFERER'] ?? '', 'user-agent' => $_SERVER['HTTP_USER_AGENT'] ?? '']); $httpException->rawContent($e); } $page->logRuntime($this->config, 'runFrontend'); diff --git a/src/App/Page.php b/src/App/Page.php index e369d482e8..08efac627f 100644 --- a/src/App/Page.php +++ b/src/App/Page.php @@ -401,36 +401,6 @@ class Page implements ArrayAccess $this->footerScripts[] = trim($url, '/'); } - /** - * Directly exit with the current response (include setting all headers) - * - * @param ResponseInterface $response - */ - public function exit(ResponseInterface $response) - { - header(sprintf("HTTP/%s %s %s", - $response->getProtocolVersion(), - $response->getStatusCode(), - $response->getReasonPhrase()) - ); - - foreach ($response->getHeaders() as $key => $header) { - if (is_array($header)) { - $header_str = implode(',', $header); - } else { - $header_str = $header; - } - - if (empty($key)) { - header($header_str); - } else { - header("$key: $header_str"); - } - } - - echo $response->getBody(); - } - /** * Executes the creation of the current page and prints it to the screen * @@ -526,7 +496,9 @@ class Page implements ArrayAccess } if ($_GET["mode"] == "raw") { - System::httpExit(substr($target->saveHTML(), 6, -8), Response::TYPE_HTML); + $response->withBody(Utils::streamFor($target->saveHTML())); + System::echoResponse($response); + System::exit(); } } diff --git a/src/BaseCollection.php b/src/BaseCollection.php index 97e772f168..f2a64151d8 100644 --- a/src/BaseCollection.php +++ b/src/BaseCollection.php @@ -129,6 +129,24 @@ class BaseCollection extends \ArrayIterator return new static(array_reverse($this->getArrayCopy()), $this->getTotalCount()); } + /** + * Split the collection in smaller collections no bigger than the provided length + * + * @param int $length + * @return static[] + */ + public function chunk(int $length): array + { + if ($length < 1) { + throw new \RangeException('BaseCollection->chunk(): Size parameter expected to be greater than 0'); + } + + return array_map(function ($array) { + return new static($array); + }, array_chunk($this->getArrayCopy(), $length)); + } + + /** * @inheritDoc * diff --git a/src/BaseModule.php b/src/BaseModule.php index 619095dfb6..1cdf96dff6 100644 --- a/src/BaseModule.php +++ b/src/BaseModule.php @@ -27,11 +27,13 @@ use Friendica\Capabilities\ICanCreateResponses; use Friendica\Core\Hook; use Friendica\Core\L10n; use Friendica\Core\Logger; +use Friendica\Core\System; use Friendica\Model\User; use Friendica\Module\Response; use Friendica\Module\Special\HTTPException as ModuleHTTPException; use Friendica\Network\HTTPException; use Friendica\Util\Profiler; +use Friendica\Util\XML; use Psr\Http\Message\ResponseInterface; use Psr\Log\LoggerInterface; @@ -106,8 +108,7 @@ abstract class BaseModule implements ICanHandleRequests */ protected function rawContent(array $request = []) { - // echo ''; - // exit; + // $this->httpExit(...); } /** @@ -234,7 +235,8 @@ abstract class BaseModule implements ICanHandleRequests $timestamp = microtime(true); // "rawContent" is especially meant for technical endpoints. - // This endpoint doesn't need any theme initialization or other comparable stuff. + // This endpoint doesn't need any theme initialization or + // templating and is expected to exit on its own if it is set. $this->rawContent($request); try { @@ -456,4 +458,76 @@ abstract class BaseModule implements ICanHandleRequests return $tabs; } + + /** + * This function adds the content and a content-type HTTP header to the output. + * After finishing the process is getting killed. + * + * @param string $content + * @param string $type + * @param string|null $content_type + * @return void + * @throws HTTPException\InternalServerErrorException + */ + public function httpExit(string $content, string $type = Response::TYPE_HTML, ?string $content_type = null) + { + $this->response->setType($type, $content_type); + $this->response->addContent($content); + System::echoResponse($this->response->generate()); + + System::exit(); + } + + /** + * Send HTTP status header and exit. + * + * @param integer $httpCode HTTP status result value + * @param string $message Error message. Optional. + * @param mixed $content Response body. Optional. + * @throws \Exception + */ + public function httpError(int $httpCode, string $message = '', $content = '') + { + if ($httpCode >= 400) { + $this->logger->debug('Exit with error', ['code' => $httpCode, 'message' => $message, 'callstack' => System::callstack(20), 'method' => $this->args->getMethod(), 'agent' => $this->server['HTTP_USER_AGENT'] ?? '']); + } + + $this->response->setStatus($httpCode, $message); + + $this->httpExit($content); + } + + /** + * Display the response using JSON to encode the content + * + * @param mixed $content + * @param string $content_type + * @param int $options A combination of json_encode() binary flags + * @return void + * @throws HTTPException\InternalServerErrorException + * @see json_encode() + */ + public function jsonExit($content, string $content_type = 'application/json', int $options = JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE | JSON_PRETTY_PRINT) + { + $this->httpExit(json_encode($content, $options), ICanCreateResponses::TYPE_JSON, $content_type); + } + + /** + * Display a non-200 HTTP code response using JSON to encode the content and exit + * + * @param int $httpCode + * @param mixed $content + * @param string $content_type + * @return void + * @throws HTTPException\InternalServerErrorException + */ + public function jsonError(int $httpCode, $content, string $content_type = 'application/json') + { + if ($httpCode >= 400) { + $this->logger->debug('Exit with error', ['code' => $httpCode, 'content_type' => $content_type, 'callstack' => System::callstack(20), 'method' => $this->args->getMethod(), 'agent' => $this->server['HTTP_USER_AGENT'] ?? '']); + } + + $this->response->setStatus($httpCode); + $this->jsonExit($content, $content_type); + } } diff --git a/src/Capabilities/ICanCreateResponses.php b/src/Capabilities/ICanCreateResponses.php index 300b1938aa..837e0cd886 100644 --- a/src/Capabilities/ICanCreateResponses.php +++ b/src/Capabilities/ICanCreateResponses.php @@ -70,7 +70,7 @@ interface ICanCreateResponses * * @throws InternalServerErrorException */ - public function setType(string $type, ?string $content_type = null): void; + public function setType(string $type = ICanCreateResponses::TYPE_HTML, ?string $content_type = null): void; /** * Sets the status and the reason for the response diff --git a/src/Content/ContactSelector.php b/src/Content/ContactSelector.php index 5d33aa59e4..56d6961be5 100644 --- a/src/Content/ContactSelector.php +++ b/src/Content/ContactSelector.php @@ -221,6 +221,7 @@ class ContactSelector 'mastodon' => 'mastodon', 'peertube' => 'peertube', 'pixelfed' => 'pixelfed', 'pleroma' => 'pleroma', 'red' => 'hubzilla', 'redmatrix' => 'hubzilla', 'socialhome' => 'social-home', 'wordpress' => 'wordpress', 'lemmy' => 'users', + 'plume' => 'plume', 'funkwhale' => 'funkwhale', 'nextcloud' => 'nextcloud', 'drupal' => 'drupal', 'firefish' => 'fire', 'calckey' => 'calculator', 'kbin' => 'check']; $search = array_keys($nets); diff --git a/src/Content/Conversation.php b/src/Content/Conversation.php index 7edd4415db..c52517cf8a 100644 --- a/src/Content/Conversation.php +++ b/src/Content/Conversation.php @@ -57,6 +57,7 @@ use Psr\Log\LoggerInterface; class Conversation { + const MODE_CHANNEL = 'channel'; const MODE_COMMUNITY = 'community'; const MODE_CONTACTS = 'contacts'; const MODE_CONTACT_POSTS = 'contact-posts'; @@ -494,7 +495,9 @@ class Conversation . (!empty($_GET['cmin']) ? '&cmin=' . rawurlencode($_GET['cmin']) : '') . (!empty($_GET['cmax']) ? '&cmax=' . rawurlencode($_GET['cmax']) : '') . (!empty($_GET['file']) ? '&file=' . rawurlencode($_GET['file']) : '') - + . (!empty($_GET['channel']) ? '&channel=' . rawurlencode($_GET['channel']) : '') + . (!empty($_GET['no_sharer']) ? '&no_sharer=' . rawurlencode($_GET['no_sharer']) : '') + . (!empty($_GET['accounttype']) ? '&accounttype=' . rawurlencode($_GET['accounttype']) : '') . "'; \r\n"; } } elseif ($mode === self::MODE_PROFILE) { @@ -530,6 +533,17 @@ class Conversation . ""; } + } elseif ($mode === self::MODE_CHANNEL) { + $items = $this->addChildren($items, true, $order, $uid, $mode, $ignoredGsids); + + if (!$update) { + $live_update_div = '
' . "\r\n" + . "\r\n"; + } } elseif ($mode === self::MODE_COMMUNITY) { $items = $this->addChildren($items, true, $order, $uid, $mode, $ignoredGsids); @@ -621,7 +635,7 @@ class Conversation unset($conv_responses['dislike']); } - if (in_array($mode, [self::MODE_COMMUNITY, self::MODE_CONTACTS, self::MODE_PROFILE])) { + if (in_array($mode, [self::MODE_CHANNEL, self::MODE_COMMUNITY, self::MODE_CONTACTS, self::MODE_PROFILE])) { $writable = true; } else { $writable = $items[0]['writable'] || ($items[0]['uid'] == 0) && in_array($items[0]['network'], Protocol::FEDERATED); @@ -918,7 +932,8 @@ class Conversation continue; } - if (in_array($row['author-gsid'], $ignoredGsids) + if ( + in_array($row['author-gsid'], $ignoredGsids) || in_array($row['owner-gsid'], $ignoredGsids) || in_array($row['causer-gsid'], $ignoredGsids) ) { @@ -1009,7 +1024,7 @@ class Conversation $items[$key]['user-collapsed-owner'] = !$always_display && in_array($row['owner-id'], $collapses); if ( - in_array($mode, [self::MODE_COMMUNITY, self::MODE_NETWORK]) && + in_array($mode, [self::MODE_CHANNEL, self::MODE_COMMUNITY, self::MODE_NETWORK]) && (in_array($row['author-id'], $blocks) || in_array($row['owner-id'], $blocks) || in_array($row['author-id'], $ignores) || in_array($row['owner-id'], $ignores)) ) { unset($items[$key]); diff --git a/src/Content/Conversation/Collection/Timelines.php b/src/Content/Conversation/Collection/Timelines.php new file mode 100644 index 0000000000..da9c7c9e61 --- /dev/null +++ b/src/Content/Conversation/Collection/Timelines.php @@ -0,0 +1,28 @@ +. + * + */ + +namespace Friendica\Content\Conversation\Collection; + +use Friendica\BaseCollection; + +class Timelines extends BaseCollection +{ +} diff --git a/src/Content/Conversation/Collection/UserDefinedChannels.php b/src/Content/Conversation/Collection/UserDefinedChannels.php new file mode 100644 index 0000000000..5dc7326da6 --- /dev/null +++ b/src/Content/Conversation/Collection/UserDefinedChannels.php @@ -0,0 +1,26 @@ +. + * + */ + +namespace Friendica\Content\Conversation\Collection; + +class UserDefinedChannels extends Timelines +{ +} diff --git a/src/Content/Conversation/Entity/Channel.php b/src/Content/Conversation/Entity/Channel.php new file mode 100644 index 0000000000..8166b7906b --- /dev/null +++ b/src/Content/Conversation/Entity/Channel.php @@ -0,0 +1,34 @@ +. + * + */ + +namespace Friendica\Content\Conversation\Entity; + +class Channel extends Timeline +{ + const WHATSHOT = 'whatshot'; + const FORYOU = 'foryou'; + const FOLLOWERS = 'followers'; + const SHARERSOFSHARERS = 'sharersofsharers'; + const IMAGE = 'image'; + const VIDEO = 'video'; + const AUDIO = 'audio'; + const LANGUAGE = 'language'; +} diff --git a/src/Content/Conversation/Entity/Community.php b/src/Content/Conversation/Entity/Community.php new file mode 100644 index 0000000000..35c7add33e --- /dev/null +++ b/src/Content/Conversation/Entity/Community.php @@ -0,0 +1,28 @@ +. + * + */ + +namespace Friendica\Content\Conversation\Entity; + +final class Community extends Timeline +{ + const LOCAL = 'local'; + const GLOBAL = 'global'; +} diff --git a/src/Content/Conversation/Entity/Network.php b/src/Content/Conversation/Entity/Network.php new file mode 100644 index 0000000000..75775b7b3c --- /dev/null +++ b/src/Content/Conversation/Entity/Network.php @@ -0,0 +1,31 @@ +. + * + */ + +namespace Friendica\Content\Conversation\Entity; + +final class Network extends Timeline +{ + const STAR = 'star'; + const MENTION = 'mention'; + const RECEIVED = 'received'; + const COMMENTED = 'commented'; + const CREATED = 'created'; +} diff --git a/src/Content/Conversation/Entity/Timeline.php b/src/Content/Conversation/Entity/Timeline.php new file mode 100644 index 0000000000..20223d5182 --- /dev/null +++ b/src/Content/Conversation/Entity/Timeline.php @@ -0,0 +1,76 @@ +. + * + */ + +namespace Friendica\Content\Conversation\Entity; + +/** + * @property-read string $code Channel code + * @property-read string $label Channel label + * @property-read string $description Channel description + * @property-read string $accessKey Access key + * @property-read string $path Path + * @property-read int $uid User of the channel + * @property-read string $includeTags The tags to include in the channel + * @property-read string $excludeTags The tags to exclude in the channel + * @property-read string $fullTextSearch full text search pattern + * @property-read int $mediaType Media types that are included in the channel + * @property-read int $circle Circle or timeline this channel is based on + */ +class Timeline extends \Friendica\BaseEntity +{ + /** @var string */ + protected $code; + /** @var string */ + protected $label; + /** @var string */ + protected $description; + /** @var string */ + protected $accessKey; + /** @var string */ + protected $path; + /** @var int */ + protected $uid; + /** @var int */ + protected $circle; + /** @var string */ + protected $includeTags; + /** @var string */ + protected $excludeTags; + /** @var string */ + protected $fullTextSearch; + /** @var int */ + protected $mediaType; + + public function __construct(string $code = null, string $label = null, string $description = null, string $accessKey = null, string $path = null, int $uid = null, string $includeTags = null, string $excludeTags = null, string $fullTextSearch = null, int $mediaType = null, int $circle = null) + { + $this->code = $code; + $this->label = $label; + $this->description = $description; + $this->accessKey = $accessKey; + $this->path = $path; + $this->uid = $uid; + $this->includeTags = $includeTags; + $this->excludeTags = $excludeTags; + $this->fullTextSearch = $fullTextSearch; + $this->mediaType = $mediaType; + $this->circle = $circle; + } +} diff --git a/src/Content/Conversation/Entity/UserDefinedChannel.php b/src/Content/Conversation/Entity/UserDefinedChannel.php new file mode 100644 index 0000000000..3d88c6666b --- /dev/null +++ b/src/Content/Conversation/Entity/UserDefinedChannel.php @@ -0,0 +1,26 @@ +. + * + */ + +namespace Friendica\Content\Conversation\Entity; + +class UserDefinedChannel extends Channel +{ +} diff --git a/src/Content/Conversation/Factory/Channel.php b/src/Content/Conversation/Factory/Channel.php new file mode 100644 index 0000000000..f03b589251 --- /dev/null +++ b/src/Content/Conversation/Factory/Channel.php @@ -0,0 +1,59 @@ +. + * + */ + +namespace Friendica\Content\Conversation\Factory; + +use Friendica\Content\Conversation\Collection\Timelines; +use Friendica\Content\Conversation\Entity\Channel as ChannelEntity; +use Friendica\Model\User; + +final class Channel extends Timeline +{ + /** + * List of available channels + * + * @param integer $uid + * @return Timelines + */ + public function getTimelines(int $uid): Timelines + { + $language = User::getLanguageCode($uid); + $languages = $this->l10n->getAvailableLanguages(true); + + $tabs = [ + new ChannelEntity(ChannelEntity::FORYOU, $this->l10n->t('For you'), $this->l10n->t('Posts from contacts you interact with and who interact with you'), 'y'), + new ChannelEntity(ChannelEntity::WHATSHOT, $this->l10n->t('What\'s Hot'), $this->l10n->t('Posts with a lot of interactions'), 'h'), + new ChannelEntity(ChannelEntity::LANGUAGE, $languages[$language], $this->l10n->t('Posts in %s', $languages[$language]), 'g'), + new ChannelEntity(ChannelEntity::FOLLOWERS, $this->l10n->t('Followers'), $this->l10n->t('Posts from your followers that you don\'t follow'), 'f'), + new ChannelEntity(ChannelEntity::SHARERSOFSHARERS, $this->l10n->t('Sharers of sharers'), $this->l10n->t('Posts from accounts that are followed by accounts that you follow'), 'r'), + new ChannelEntity(ChannelEntity::IMAGE, $this->l10n->t('Images'), $this->l10n->t('Posts with images'), 'i'), + new ChannelEntity(ChannelEntity::AUDIO, $this->l10n->t('Audio'), $this->l10n->t('Posts with audio'), 'd'), + new ChannelEntity(ChannelEntity::VIDEO, $this->l10n->t('Videos'), $this->l10n->t('Posts with videos'), 'v'), + ]; + + return new Timelines($tabs); + } + + public function isTimeline(string $selectedTab): bool + { + return in_array($selectedTab, [ChannelEntity::WHATSHOT, ChannelEntity::FORYOU, ChannelEntity::FOLLOWERS, ChannelEntity::SHARERSOFSHARERS, ChannelEntity::IMAGE, ChannelEntity::VIDEO, ChannelEntity::AUDIO, ChannelEntity::LANGUAGE]); + } +} diff --git a/src/Content/Conversation/Factory/Community.php b/src/Content/Conversation/Factory/Community.php new file mode 100644 index 0000000000..bd86ce3a9f --- /dev/null +++ b/src/Content/Conversation/Factory/Community.php @@ -0,0 +1,56 @@ +. + * + */ + +namespace Friendica\Content\Conversation\Factory; + +use Friendica\Content\Conversation\Collection\Timelines; +use Friendica\Content\Conversation\Entity\Community as CommunityEntity; +use Friendica\Module\Conversation\Community as CommunityModule; + +final class Community extends Timeline +{ + /** + * List of available communities + * + * @param boolean $authenticated + * @return Timelines + */ + public function getTimelines(bool $authenticated): Timelines + { + $page_style = $this->config->get('system', 'community_page_style'); + + $tabs = []; + + if (($authenticated || in_array($page_style, [CommunityModule::LOCAL_AND_GLOBAL, CommunityModule::LOCAL])) && empty($this->config->get('system', 'singleuser'))) { + $tabs[] = new CommunityEntity(CommunityEntity::LOCAL, $this->l10n->t('Local Community'), $this->l10n->t('Posts from local users on this server'), 'l'); + } + + if ($authenticated || in_array($page_style, [CommunityModule::LOCAL_AND_GLOBAL, CommunityModule::GLOBAL])) { + $tabs[] = new CommunityEntity(CommunityEntity::GLOBAL, $this->l10n->t('Global Community'), $this->l10n->t('Posts from users of the whole federated network'), 'g'); + } + return new Timelines($tabs); + } + + public function isTimeline(string $selectedTab): bool + { + return in_array($selectedTab, [CommunityEntity::LOCAL, CommunityEntity::GLOBAL]); + } +} diff --git a/src/Content/Conversation/Factory/Network.php b/src/Content/Conversation/Factory/Network.php new file mode 100644 index 0000000000..d7457a8460 --- /dev/null +++ b/src/Content/Conversation/Factory/Network.php @@ -0,0 +1,51 @@ +. + * + */ + +namespace Friendica\Content\Conversation\Factory; + +use Friendica\Content\Conversation\Collection\Timelines; +use Friendica\Content\Conversation\Entity\Network as NetworkEntity; + +final class Network extends Timeline +{ + /** + * List of available network timelines + * + * @param string $command + * @return Timelines + */ + public function getTimelines(string $command): Timelines + { + $tabs = [ + new NetworkEntity(NetworkEntity::COMMENTED, $this->l10n->t('Latest Activity'), $this->l10n->t('Sort by latest activity'), 'e', $command . '?' . http_build_query(['order' => 'commented'])), + new NetworkEntity(NetworkEntity::RECEIVED, $this->l10n->t('Latest Posts'), $this->l10n->t('Sort by post received date'), 't', $command . '?' . http_build_query(['order' => 'received'])), + new NetworkEntity(NetworkEntity::CREATED, $this->l10n->t('Latest Creation'), $this->l10n->t('Sort by post creation date'), 'q', $command . '?' . http_build_query(['order' => 'created'])), + new NetworkEntity(NetworkEntity::MENTION, $this->l10n->t('Personal'), $this->l10n->t('Posts that mention or involve you'), 'r', $command . '?' . http_build_query(['mention' => true])), + new NetworkEntity(NetworkEntity::STAR, $this->l10n->t('Starred'), $this->l10n->t('Favourite Posts'), 'm', $command . '?' . http_build_query(['star' => true])), + ]; + return new Timelines($tabs); + } + + public function isTimeline(string $selectedTab): bool + { + return in_array($selectedTab, [NetworkEntity::COMMENTED, NetworkEntity::RECEIVED, NetworkEntity::CREATED, NetworkEntity::MENTION, NetworkEntity::STAR]); + } +} diff --git a/src/Content/Conversation/Factory/Timeline.php b/src/Content/Conversation/Factory/Timeline.php new file mode 100644 index 0000000000..a726762fd5 --- /dev/null +++ b/src/Content/Conversation/Factory/Timeline.php @@ -0,0 +1,48 @@ +. + * + */ + +namespace Friendica\Content\Conversation\Factory; + +use Friendica\Capabilities\ICanCreateFromTableRow; +use Friendica\Content\Conversation\Entity\Timeline as TimelineEntity; +use Friendica\Content\Conversation\Repository\UserDefinedChannel; +use Friendica\Core\Config\Capability\IManageConfigValues; +use Friendica\Core\L10n; +use Psr\Log\LoggerInterface; + +class Timeline extends \Friendica\BaseFactory +{ + /** @var L10n */ + protected $l10n; + /** @var IManageConfigValues The config */ + protected $config; + /** @var UserDefinedChannel */ + protected $channelRepository; + + public function __construct(UserDefinedChannel $channel, L10n $l10n, LoggerInterface $logger, IManageConfigValues $config) + { + parent::__construct($logger); + + $this->channelRepository = $channel; + $this->l10n = $l10n; + $this->config = $config; + } +} diff --git a/src/Content/Conversation/Factory/UserDefinedChannel.php b/src/Content/Conversation/Factory/UserDefinedChannel.php new file mode 100644 index 0000000000..12816126db --- /dev/null +++ b/src/Content/Conversation/Factory/UserDefinedChannel.php @@ -0,0 +1,51 @@ +. + * + */ + +namespace Friendica\Content\Conversation\Factory; + +use Friendica\Capabilities\ICanCreateFromTableRow; +use Friendica\Content\Conversation\Collection\Timelines; +use Friendica\Content\Conversation\Entity; + +final class UserDefinedChannel extends Timeline implements ICanCreateFromTableRow +{ + public function isTimeline(string $selectedTab, int $uid): bool + { + return is_numeric($selectedTab) && $uid && $this->channelRepository->existsById($selectedTab, $uid); + } + + public function createFromTableRow(array $row): Entity\UserDefinedChannel + { + return new Entity\UserDefinedChannel( + $row['id'] ?? null, + $row['label'], + $row['description'] ?? null, + $row['access-key'] ?? null, + null, + $row['uid'], + $row['include-tags'] ?? null, + $row['exclude-tags'] ?? null, + $row['full-text-search'] ?? null, + $row['media-type'] ?? null, + $row['circle'] ?? null, + ); + } +} diff --git a/src/Content/Conversation/Repository/UserDefinedChannel.php b/src/Content/Conversation/Repository/UserDefinedChannel.php new file mode 100644 index 0000000000..1014711765 --- /dev/null +++ b/src/Content/Conversation/Repository/UserDefinedChannel.php @@ -0,0 +1,133 @@ +. + * + */ + +namespace Friendica\Content\Conversation\Repository; + +use Friendica\BaseCollection; +use Friendica\Content\Conversation\Collection\UserDefinedChannels; +use Friendica\Content\Conversation\Entity; +use Friendica\Content\Conversation\Factory; +use Friendica\Database\Database; +use Psr\Log\LoggerInterface; + +class UserDefinedChannel extends \Friendica\BaseRepository +{ + protected static $table_name = 'channel'; + + public function __construct(Database $database, LoggerInterface $logger, Factory\UserDefinedChannel $factory) + { + parent::__construct($database, $logger, $factory); + } + + /** + * @param array $condition + * @param array $params + * @return UserDefinedChannels + * @throws \Exception + */ + protected function _select(array $condition, array $params = []): BaseCollection + { + $rows = $this->db->selectToArray(static::$table_name, [], $condition, $params); + + $Entities = new UserDefinedChannels(); + foreach ($rows as $fields) { + $Entities[] = $this->factory->createFromTableRow($fields); + } + + return $Entities; + } + + /** + * Fetch a single user channel + * + * @param int $id The id of the user defined channel + * @param int $uid The user that this channel belongs to. (Not part of the primary key) + * @return Entity\UserDefinedChannel + * @throws \Friendica\Network\HTTPException\NotFoundException + */ + public function selectById(int $id, int $uid): Entity\UserDefinedChannel + { + return $this->_selectOne(['id' => $id, 'uid' => $uid]); + } + + /** + * Checks if the provided channel id exists for this user + * + * @param integer $id + * @param integer $uid + * @return boolean + */ + public function existsById(int $id, int $uid): bool + { + return $this->exists(['id' => $id, 'uid' => $uid]); + } + + /** + * Delete the given channel + * + * @param integer $id + * @param integer $uid + * @return boolean + */ + public function deleteById(int $id, int $uid): bool + { + return $this->db->delete('channel', ['id' => $id, 'uid' => $uid]); + } + + /** + * Fetch all user channels + * + * @param integer $uid + * @return UserDefinedChannels + * @throws \Exception + */ + public function selectByUid(int $uid): UserDefinedChannels + { + return $this->_select(['uid' => $uid]); + } + + public function save(Entity\UserDefinedChannel $Channel): Entity\UserDefinedChannel + { + $fields = [ + 'label' => $Channel->label, + 'description' => $Channel->description, + 'access-key' => $Channel->accessKey, + 'uid' => $Channel->uid, + 'circle' => $Channel->circle, + 'include-tags' => $Channel->includeTags, + 'exclude-tags' => $Channel->excludeTags, + 'full-text-search' => $Channel->fullTextSearch, + 'media-type' => $Channel->mediaType, + ]; + + if ($Channel->code) { + $this->db->update(self::$table_name, $fields, ['uid' => $Channel->uid, 'id' => $Channel->code]); + } else { + $this->db->insert(self::$table_name, $fields, Database::INSERT_IGNORE); + + $newChannelId = $this->db->lastInsertId(); + + $Channel = $this->selectById($newChannelId, $Channel->uid); + } + + return $Channel; + } +} diff --git a/src/Content/Image.php b/src/Content/Image.php new file mode 100644 index 0000000000..cc2fd5122c --- /dev/null +++ b/src/Content/Image.php @@ -0,0 +1,154 @@ +. + * + */ + +namespace Friendica\Content; + +use Friendica\Content\Image\Collection\MasonryImageRow; +use Friendica\Content\Image\Entity\MasonryImage; +use Friendica\Content\Post\Collection\PostMedias; +use Friendica\Core\Renderer; + +class Image +{ + public static function getBodyAttachHtml(PostMedias $PostMediaImages): string + { + $media = ''; + + if ($PostMediaImages->haveDimensions()) { + if (count($PostMediaImages) > 1) { + $media = self::getHorizontalMasonryHtml($PostMediaImages); + } elseif (count($PostMediaImages) == 1) { + $media = Renderer::replaceMacros(Renderer::getMarkupTemplate('content/image/single_with_height_allocation.tpl'), [ + '$image' => $PostMediaImages[0], + '$allocated_height' => $PostMediaImages[0]->getAllocatedHeight(), + '$allocated_max_width' => ($PostMediaImages[0]->previewWidth ?? $PostMediaImages[0]->width) . 'px', + ]); + } + } else { + if (count($PostMediaImages) > 1) { + $media = self::getImageGridHtml($PostMediaImages); + } elseif (count($PostMediaImages) == 1) { + $media = Renderer::replaceMacros(Renderer::getMarkupTemplate('content/image/single.tpl'), [ + '$image' => $PostMediaImages[0], + ]); + } + } + + return $media; + } + + /** + * @param PostMedias $images + * @return string + * @throws \Friendica\Network\HTTPException\ServiceUnavailableException + */ + private static function getImageGridHtml(PostMedias $images): string + { + // Image for first column (fc) and second column (sc) + $images_fc = []; + $images_sc = []; + + for ($i = 0; $i < count($images); $i++) { + ($i % 2 == 0) ? ($images_fc[] = $images[$i]) : ($images_sc[] = $images[$i]); + } + + return Renderer::replaceMacros(Renderer::getMarkupTemplate('content/image/grid.tpl'), [ + 'columns' => [ + 'fc' => $images_fc, + 'sc' => $images_sc, + ], + ]); + } + + /** + * Creates a horizontally masoned gallery with a fixed maximum number of pictures per row. + * + * For each row, we calculate how much of the total width each picture will take depending on their aspect ratio + * and how much relative height it needs to accomodate all pictures next to each other with their height normalized. + * + * @param array $images + * @return string + * @throws \Friendica\Network\HTTPException\ServiceUnavailableException + */ + private static function getHorizontalMasonryHtml(PostMedias $images): string + { + static $column_size = 2; + + $rows = array_map( + function (PostMedias $PostMediaImages) { + if ($singleImageInRow = count($PostMediaImages) == 1) { + $PostMediaImages[] = $PostMediaImages[0]; + } + + $widths = []; + $heights = []; + foreach ($PostMediaImages as $PostMediaImage) { + if ($PostMediaImage->width && $PostMediaImage->height) { + $widths[] = $PostMediaImage->width; + $heights[] = $PostMediaImage->height; + } else { + $widths[] = $PostMediaImage->previewWidth; + $heights[] = $PostMediaImage->previewHeight; + } + } + + $maxHeight = max($heights); + + // Corrected width preserving aspect ratio when all images on a row are the same height + $correctedWidths = []; + foreach ($widths as $i => $width) { + $correctedWidths[] = $width * $maxHeight / $heights[$i]; + } + + $totalWidth = array_sum($correctedWidths); + + $row_images2 = []; + + if ($singleImageInRow) { + unset($PostMediaImages[1]); + } + + foreach ($PostMediaImages as $i => $PostMediaImage) { + $row_images2[] = new MasonryImage( + $PostMediaImage->uriId, + $PostMediaImage->url, + $PostMediaImage->preview, + $PostMediaImage->description ?? '', + 100 * $correctedWidths[$i] / $totalWidth, + 100 * $maxHeight / $correctedWidths[$i] + ); + } + + // This magic value will stay constant for each image of any given row and is ultimately + // used to determine the height of the row container relative to the available width. + $commonHeightRatio = 100 * $correctedWidths[0] / $totalWidth / ($widths[0] / $heights[0]); + + return new MasonryImageRow($row_images2, count($row_images2), $commonHeightRatio); + }, + $images->chunk($column_size) + ); + + return Renderer::replaceMacros(Renderer::getMarkupTemplate('content/image/horizontal_masonry.tpl'), [ + '$rows' => $rows, + '$column_size' => $column_size, + ]); + } +} diff --git a/src/Content/Image/Collection/MasonryImageRow.php b/src/Content/Image/Collection/MasonryImageRow.php new file mode 100644 index 0000000000..ff507786f5 --- /dev/null +++ b/src/Content/Image/Collection/MasonryImageRow.php @@ -0,0 +1,57 @@ +. + * + */ + +namespace Friendica\Content\Image\Collection; + +use Friendica\Content\Image\Entity; +use Friendica\BaseCollection; +use Friendica\Content\Image\Entity\MasonryImage; + +class MasonryImageRow extends BaseCollection +{ + /** @var ?float */ + protected $heightRatio; + + /** + * @param MasonryImage[] $entities + * @param int|null $totalCount + * @param float|null $heightRatio + */ + public function __construct(array $entities = [], int $totalCount = null, float $heightRatio = null) + { + parent::__construct($entities, $totalCount); + + $this->heightRatio = $heightRatio; + } + + /** + * @return Entity\MasonryImage + */ + public function current(): Entity\MasonryImage + { + return parent::current(); + } + + public function getHeightRatio(): ?float + { + return $this->heightRatio; + } +} diff --git a/src/Content/Image/Entity/MasonryImage.php b/src/Content/Image/Entity/MasonryImage.php new file mode 100644 index 0000000000..e85688ea25 --- /dev/null +++ b/src/Content/Image/Entity/MasonryImage.php @@ -0,0 +1,60 @@ +. + * + */ + +namespace Friendica\Content\Image\Entity; + +use Friendica\BaseEntity; +use Psr\Http\Message\UriInterface; + +/** + * @property-read int $uriId + * @property-read UriInterface $url + * @property-read ?UriInterface $preview + * @property-read string $description + * @property-read float $heightRatio + * @property-read float $widthRatio + * @see \Friendica\Content\Image::getHorizontalMasonryHtml() + */ +class MasonryImage extends BaseEntity +{ + /** @var int */ + protected $uriId; + /** @var UriInterface */ + protected $url; + /** @var ?UriInterface */ + protected $preview; + /** @var string */ + protected $description; + /** @var float Ratio of the width of the image relative to the total width of the images on the row */ + protected $widthRatio; + /** @var float Ratio of the height of the image relative to its width for height allocation */ + protected $heightRatio; + + public function __construct(int $uriId, UriInterface $url, ?UriInterface $preview, string $description, float $widthRatio, float $heightRatio) + { + $this->url = $url; + $this->uriId = $uriId; + $this->preview = $preview; + $this->description = $description; + $this->widthRatio = $widthRatio; + $this->heightRatio = $heightRatio; + } +} diff --git a/src/Content/Item.php b/src/Content/Item.php index 163db89aa4..c604f26215 100644 --- a/src/Content/Item.php +++ b/src/Content/Item.php @@ -297,7 +297,7 @@ class Item if ($this->activity->match($item['verb'], Activity::TAG)) { $fields = [ - 'author-id', 'author-link', 'author-name', 'author-network', + 'author-id', 'author-link', 'author-name', 'author-network', 'author-link', 'author-alias', 'verb', 'object-type', 'resource-id', 'body', 'plink' ]; $obj = Post::selectFirst($fields, ['uri' => $item['parent-uri']]); @@ -638,7 +638,7 @@ class Item $body = $item['body']; } - if (empty($item['quote-uri-id'])) { + if (empty($item['quote-uri-id']) || ($item['quote-uri-id'] == $item['uri-id'])) { return $body; } @@ -729,7 +729,7 @@ class Item */ public function getSharedPost(array $item, array $fields = []): array { - if (!empty($item['quote-uri-id'])) { + if (!empty($item['quote-uri-id']) && ($item['quote-uri-id'] != $item['uri-id'])) { $shared = Post::selectFirst($fields, ['uri-id' => $item['quote-uri-id'], 'uid' => [0, $item['uid'] ?? 0]]); if (is_array($shared)) { return [ @@ -770,7 +770,7 @@ class Item return $attributes; } - if (!empty($item['quote-uri-id'])) { + if (!empty($item['quote-uri-id']) && ($item['quote-uri-id'] != $item['uri-id'])) { $shared = Post::selectFirst(['author-name', 'author-link', 'author-avatar', 'plink', 'created', 'guid', 'uri', 'body'], ['uri-id' => $item['quote-uri-id']]); if (!empty($shared)) { return [ diff --git a/src/Content/Nav.php b/src/Content/Nav.php index c6634a95c4..cab5f7a425 100644 --- a/src/Content/Nav.php +++ b/src/Content/Nav.php @@ -40,20 +40,21 @@ use Friendica\Network\HTTPException; class Nav { private static $selected = [ - 'global' => null, - 'community' => null, - 'network' => null, - 'home' => null, - 'profiles' => null, + 'global' => null, + 'community' => null, + 'channel' => null, + 'network' => null, + 'home' => null, + 'profiles' => null, 'introductions' => null, 'notifications' => null, - 'messages' => null, - 'directory' => null, - 'settings' => null, - 'contacts' => null, - 'delegation'=> null, - 'calendar' => null, - 'register' => null + 'messages' => null, + 'directory' => null, + 'settings' => null, + 'contacts' => null, + 'delegation' => null, + 'calendar' => null, + 'register' => null ]; /** @@ -199,6 +200,7 @@ class Nav 'moderation' => null, 'apps' => null, 'community' => null, + 'channel' => null, 'home' => null, 'calendar' => null, 'login' => null, diff --git a/src/Content/Post/Collection/PostMedias.php b/src/Content/Post/Collection/PostMedias.php new file mode 100644 index 0000000000..9f7d10d0ce --- /dev/null +++ b/src/Content/Post/Collection/PostMedias.php @@ -0,0 +1,57 @@ +. + * + */ + +namespace Friendica\Content\Post\Collection; + +use Friendica\BaseCollection; +use Friendica\Content\Post\Entity; + +class PostMedias extends BaseCollection +{ + /** + * @param Entity\PostMedia[] $entities + * @param int|null $totalCount + */ + public function __construct(array $entities = [], int $totalCount = null) + { + parent::__construct($entities, $totalCount); + } + + /** + * @return Entity\PostMedia + */ + public function current(): Entity\PostMedia + { + return parent::current(); + } + + /** + * Determine whether all the collection's item have at least one set of dimensions provided + * + * @return bool + */ + public function haveDimensions(): bool + { + return array_reduce($this->getArrayCopy(), function (bool $carry, Entity\PostMedia $item) { + return $carry && $item->hasDimensions(); + }, true); + } +} diff --git a/src/Content/Post/Entity/PostMedia.php b/src/Content/Post/Entity/PostMedia.php new file mode 100644 index 0000000000..8220624198 --- /dev/null +++ b/src/Content/Post/Entity/PostMedia.php @@ -0,0 +1,300 @@ +. + * + */ + +namespace Friendica\Content\Post\Entity; + +use Friendica\BaseEntity; +use Friendica\Network\Entity\MimeType; +use Friendica\Util\Images; +use Friendica\Util\Proxy; +use Psr\Http\Message\UriInterface; + + +/** + * @property-read int $id + * @property-read int $uriId + * @property-read ?int $activityUriId + * @property-read UriInterface $url + * @property-read int $type + * @property-read MimeType $mimetype + * @property-read ?int $width + * @property-read ?int $height + * @property-read ?int $size + * @property-read ?UriInterface $preview + * @property-read ?int $previewWidth + * @property-read ?int $previewHeight + * @property-read ?string $description + * @property-read ?string $name + * @property-read ?UriInterface $authorUrl + * @property-read ?string $authorName + * @property-read ?UriInterface $authorImage + * @property-read ?UriInterface $publisherUrl + * @property-read ?string $publisherName + * @property-read ?UriInterface $publisherImage + * @property-read ?string $blurhash + */ +class PostMedia extends BaseEntity +{ + const TYPE_UNKNOWN = 0; + const TYPE_IMAGE = 1; + const TYPE_VIDEO = 2; + const TYPE_AUDIO = 3; + const TYPE_TEXT = 4; + const TYPE_APPLICATION = 5; + const TYPE_TORRENT = 16; + const TYPE_HTML = 17; + const TYPE_XML = 18; + const TYPE_PLAIN = 19; + const TYPE_ACTIVITY = 20; + const TYPE_ACCOUNT = 21; + const TYPE_DOCUMENT = 128; + + /** @var int */ + protected $id; + /** @var int */ + protected $uriId; + /** @var UriInterface */ + protected $url; + /** @var int One of TYPE_* */ + protected $type; + /** @var MimeType */ + protected $mimetype; + /** @var ?int */ + protected $activityUriId; + /** @var ?int In pixels */ + protected $width; + /** @var ?int In pixels */ + protected $height; + /** @var ?int In bytes */ + protected $size; + /** @var ?UriInterface Preview URL */ + protected $preview; + /** @var ?int In pixels */ + protected $previewWidth; + /** @var ?int In pixels */ + protected $previewHeight; + /** @var ?string Alternative text like for images */ + protected $description; + /** @var ?string */ + protected $name; + /** @var ?UriInterface */ + protected $authorUrl; + /** @var ?string */ + protected $authorName; + /** @var ?UriInterface Image URL */ + protected $authorImage; + /** @var ?UriInterface */ + protected $publisherUrl; + /** @var ?string */ + protected $publisherName; + /** @var ?UriInterface Image URL */ + protected $publisherImage; + /** @var ?string Blurhash string representation for images + * @see https://github.com/woltapp/blurhash + * @see https://blurha.sh/ + */ + protected $blurhash; + + public function __construct( + int $uriId, + UriInterface $url, + int $type, + MimeType $mimetype, + ?int $activityUriId, + ?int $width = null, + ?int $height = null, + ?int $size = null, + ?UriInterface $preview = null, + ?int $previewWidth = null, + ?int $previewHeight = null, + ?string $description = null, + ?string $name = null, + ?UriInterface $authorUrl = null, + ?string $authorName = null, + ?UriInterface $authorImage = null, + ?UriInterface $publisherUrl = null, + ?string $publisherName = null, + ?UriInterface $publisherImage = null, + ?string $blurhash = null, + int $id = null + ) + { + $this->uriId = $uriId; + $this->url = $url; + $this->type = $type; + $this->mimetype = $mimetype; + $this->activityUriId = $activityUriId; + $this->width = $width; + $this->height = $height; + $this->size = $size; + $this->preview = $preview; + $this->previewWidth = $previewWidth; + $this->previewHeight = $previewHeight; + $this->description = $description; + $this->name = $name; + $this->authorUrl = $authorUrl; + $this->authorName = $authorName; + $this->authorImage = $authorImage; + $this->publisherUrl = $publisherUrl; + $this->publisherName = $publisherName; + $this->publisherImage = $publisherImage; + $this->blurhash = $blurhash; + $this->id = $id; + } + + + /** + * Get media link for given media id + * + * @param string $size One of the Proxy::SIZE_* constants + * @return string media link + */ + public function getPhotoPath(string $size = ''): string + { + return '/photo/media/' . + (Proxy::getPixelsFromSize($size) ? Proxy::getPixelsFromSize($size) . '/' : '') . + $this->id; + } + + /** + * Get preview path for given media id relative to the base URL + * + * @param string $size One of the Proxy::SIZE_* constants + * @return string preview link + */ + public function getPreviewPath(string $size = ''): string + { + return '/photo/preview/' . + (Proxy::getPixelsFromSize($size) ? Proxy::getPixelsFromSize($size) . '/' : '') . + $this->id; + + } + + /** + * Computes the allocated height value used in the content/image/single_with_height_allocation.tpl template + * + * Either base or preview dimensions need to be set at runtime. + * + * @return string + */ + public function getAllocatedHeight(): string + { + if (!$this->hasDimensions()) { + throw new \RangeException('Either width and height or previewWidth and previewHeight must be defined to use this method.'); + } + + if ($this->width && $this->height) { + $width = $this->width; + $height = $this->height; + } else { + $width = $this->previewWidth; + $height = $this->previewHeight; + } + + return (100 * $height / $width) . '%'; + } + + /** + * Return a new PostMedia entity with a different preview URI and an optional proxy size name. + * The new entity preview's width and height are rescaled according to the provided size. + * + * @param \GuzzleHttp\Psr7\Uri $preview + * @param string $size + * @return $this + */ + public function withPreview(\GuzzleHttp\Psr7\Uri $preview, string $size = ''): self + { + if ($this->width || $this->height) { + $newWidth = $this->width; + $newHeight = $this->height; + } else { + $newWidth = $this->previewWidth; + $newHeight = $this->previewHeight; + } + + if ($newWidth && $newHeight && $size) { + $dimensionts = Images::getScalingDimensions($newWidth, $newHeight, Proxy::getPixelsFromSize($size)); + $newWidth = $dimensionts['width']; + $newHeight = $dimensionts['height']; + } + + return new static( + $this->uriId, + $this->url, + $this->type, + $this->mimetype, + $this->activityUriId, + $this->width, + $this->height, + $this->size, + $preview, + $newWidth, + $newHeight, + $this->description, + $this->name, + $this->authorUrl, + $this->authorName, + $this->authorImage, + $this->publisherUrl, + $this->publisherName, + $this->publisherImage, + $this->blurhash, + $this->id, + ); + } + + public function withUrl(\GuzzleHttp\Psr7\Uri $url): self + { + return new static( + $this->uriId, + $url, + $this->type, + $this->mimetype, + $this->activityUriId, + $this->width, + $this->height, + $this->size, + $this->preview, + $this->previewWidth, + $this->previewHeight, + $this->description, + $this->name, + $this->authorUrl, + $this->authorName, + $this->authorImage, + $this->publisherUrl, + $this->publisherName, + $this->publisherImage, + $this->blurhash, + $this->id, + ); + } + + /** + * Checks the media has at least one full set of dimensions, needed for the height allocation feature + * + * @return bool + */ + public function hasDimensions(): bool + { + return $this->width && $this->height || $this->previewWidth && $this->previewHeight; + } +} diff --git a/src/Content/Post/Factory/PostMedia.php b/src/Content/Post/Factory/PostMedia.php new file mode 100644 index 0000000000..fe71b21973 --- /dev/null +++ b/src/Content/Post/Factory/PostMedia.php @@ -0,0 +1,117 @@ +. + * + */ + +namespace Friendica\Content\Post\Factory; + +use Friendica\BaseFactory; +use Friendica\Capabilities\ICanCreateFromTableRow; +use Friendica\Content\Post\Entity; +use Friendica\Network; +use GuzzleHttp\Psr7\Uri; +use Psr\Log\LoggerInterface; +use stdClass; + +class PostMedia extends BaseFactory implements ICanCreateFromTableRow +{ + /** @var Network\Factory\MimeType */ + private $mimeTypeFactory; + + public function __construct(Network\Factory\MimeType $mimeTypeFactory, LoggerInterface $logger) + { + parent::__construct($logger); + + $this->mimeTypeFactory = $mimeTypeFactory; + } + + /** + * @inheritDoc + */ + public function createFromTableRow(array $row) + { + return new Entity\PostMedia( + $row['uri-id'], + $row['url'] ? new Uri($row['url']) : null, + $row['type'], + $this->mimeTypeFactory->createFromContentType($row['mimetype']), + $row['media-uri-id'], + $row['width'], + $row['height'], + $row['size'], + $row['preview'] ? new Uri($row['preview']) : null, + $row['preview-width'], + $row['preview-height'], + $row['description'], + $row['name'], + $row['author-url'] ? new Uri($row['author-url']) : null, + $row['author-name'], + $row['author-image'] ? new Uri($row['author-image']) : null, + $row['publisher-url'] ? new Uri($row['publisher-url']) : null, + $row['publisher-name'], + $row['publisher-image'] ? new Uri($row['publisher-image']) : null, + $row['blurhash'], + $row['id'] + ); + } + + public function createFromBlueskyImageEmbed(int $uriId, stdClass $image): Entity\PostMedia + { + return new Entity\PostMedia( + $uriId, + new Uri($image->fullsize), + Entity\PostMedia::TYPE_IMAGE, + new Network\Entity\MimeType('unkn', 'unkn'), + null, + null, + null, + null, + new Uri($image->thumb), + null, + null, + $image->alt, + ); + } + + + public function createFromBlueskyExternalEmbed(int $uriId, stdClass $external): Entity\PostMedia + { + return new Entity\PostMedia( + $uriId, + new Uri($external->uri), + Entity\PostMedia::TYPE_HTML, + new Network\Entity\MimeType('text', 'html'), + null, + null, + null, + null, + null, + null, + null, + $external->description, + $external->title + ); + } + + public function createFromAttachment(int $uriId, array $attachment) + { + $attachment['uri-id'] = $uriId; + return $this->createFromTableRow($attachment); + } +} diff --git a/src/Content/Post/Repository/PostMedia.php b/src/Content/Post/Repository/PostMedia.php new file mode 100644 index 0000000000..405d9eb86b --- /dev/null +++ b/src/Content/Post/Repository/PostMedia.php @@ -0,0 +1,204 @@ +. + * + */ + +namespace Friendica\Content\Post\Repository; + +use Friendica\BaseCollection; +use Friendica\BaseRepository; +use Friendica\Content\Post\Collection; +use Friendica\Content\Post\Entity; +use Friendica\Content\Post\Factory; +use Friendica\Database\Database; +use Friendica\Util\Strings; +use Psr\Log\LoggerInterface; + +class PostMedia extends BaseRepository +{ + protected static $table_name = 'post-media'; + + public function __construct(Database $database, LoggerInterface $logger, Factory\PostMedia $factory) + { + parent::__construct($database, $logger, $factory); + } + + protected function _select(array $condition, array $params = []): BaseCollection + { + $rows = $this->db->selectToArray(static::$table_name, [], $condition, $params); + + $Entities = new Collection\PostMedias(); + foreach ($rows as $fields) { + $Entities[] = $this->factory->createFromTableRow($fields); + } + + return $Entities; + } + + public function selectOneById(int $postMediaId): Entity\PostMedia + { + return $this->_selectOne(['id' => $postMediaId]); + } + + public function selectByUriId(int $uriId): Collection\PostMedias + { + return $this->_select(['uri-id' => $uriId]); + } + + public function save(Entity\PostMedia $PostMedia): Entity\PostMedia + { + $fields = [ + 'uri-id' => $PostMedia->uriId, + 'url' => $PostMedia->url->__toString(), + 'type' => $PostMedia->type, + 'mimetype' => $PostMedia->mimetype->__toString(), + 'height' => $PostMedia->height, + 'width' => $PostMedia->width, + 'size' => $PostMedia->size, + 'preview' => $PostMedia->preview ? $PostMedia->preview->__toString() : null, + 'preview-height' => $PostMedia->previewHeight, + 'preview-width' => $PostMedia->previewWidth, + 'description' => $PostMedia->description, + 'name' => $PostMedia->name, + 'author-url' => $PostMedia->authorUrl ? $PostMedia->authorUrl->__toString() : null, + 'author-name' => $PostMedia->authorName, + 'author-image' => $PostMedia->authorImage ? $PostMedia->authorImage->__toString() : null, + 'publisher-url' => $PostMedia->publisherUrl ? $PostMedia->publisherUrl->__toString() : null, + 'publisher-name' => $PostMedia->publisherName, + 'publisher-image' => $PostMedia->publisherImage ? $PostMedia->publisherImage->__toString() : null, + 'media-uri-id' => $PostMedia->activityUriId, + 'blurhash' => $PostMedia->blurhash, + ]; + + if ($PostMedia->id) { + $this->db->update(self::$table_name, $fields, ['id' => $PostMedia->id]); + } else { + $this->db->insert(self::$table_name, $fields, Database::INSERT_IGNORE); + + $newPostMediaId = $this->db->lastInsertId(); + + $PostMedia = $this->selectOneById($newPostMediaId); + } + + return $PostMedia; + } + + + /** + * Split the attachment media in the three segments "visual", "link" and "additional" + * + * @param int $uri_id URI id + * @param array $links list of links that shouldn't be added + * @param bool $has_media + * @return Collection\PostMedias[] Three collections in "visual", "link" and "additional" keys + */ + public function splitAttachments(int $uri_id, array $links = [], bool $has_media = true): array + { + $attachments = [ + 'visual' => new Collection\PostMedias(), + 'link' => new Collection\PostMedias(), + 'additional' => new Collection\PostMedias(), + ]; + + if (!$has_media) { + return $attachments; + } + + $PostMedias = $this->selectByUriId($uri_id); + if (!count($PostMedias)) { + return $attachments; + } + + $heights = []; + $selected = ''; + $previews = []; + + foreach ($PostMedias as $PostMedia) { + foreach ($links as $link) { + if (Strings::compareLink($link, $PostMedia->url)) { + continue 2; + } + } + + // Avoid adding separate media entries for previews + foreach ($previews as $preview) { + if (Strings::compareLink($preview, $PostMedia->url)) { + continue 2; + } + } + + // Currently these two types are ignored here. + // Posts are added differently and contacts are not displayed as attachments. + if (in_array($PostMedia->type, [Entity\PostMedia::TYPE_ACCOUNT, Entity\PostMedia::TYPE_ACTIVITY])) { + continue; + } + + if (!empty($PostMedia->preview)) { + $previews[] = $PostMedia->preview; + } + + //$PostMedia->filetype = $filetype; + //$PostMedia->subtype = $subtype; + + if ($PostMedia->type == Entity\PostMedia::TYPE_HTML || ($PostMedia->mimetype->type == 'text' && $PostMedia->mimetype->subtype == 'html')) { + $attachments['link'][] = $PostMedia; + continue; + } + + if ( + in_array($PostMedia->type, [Entity\PostMedia::TYPE_AUDIO, Entity\PostMedia::TYPE_IMAGE]) || + in_array($PostMedia->mimetype->type, ['audio', 'image']) + ) { + $attachments['visual'][] = $PostMedia; + } elseif (($PostMedia->type == Entity\PostMedia::TYPE_VIDEO) || ($PostMedia->mimetype->type == 'video')) { + if (!empty($PostMedia->height)) { + // Peertube videos are delivered in many different resolutions. We pick a moderate one. + // Since only Peertube provides a "height" parameter, this wouldn't be executed + // when someone for example on Mastodon was sharing multiple videos in a single post. + $heights[$PostMedia->height] = (string)$PostMedia->url; + $video[(string) $PostMedia->url] = $PostMedia; + } else { + $attachments['visual'][] = $PostMedia; + } + } else { + $attachments['additional'][] = $PostMedia; + } + } + + if (!empty($heights)) { + ksort($heights); + foreach ($heights as $height => $url) { + if (empty($selected) || $height <= 480) { + $selected = $url; + } + } + + if (!empty($selected)) { + $attachments['visual'][] = $video[$selected]; + unset($video[$selected]); + foreach ($video as $element) { + $attachments['additional'][] = $element; + } + } + } + + return $attachments; + } + +} diff --git a/src/Content/Text/BBCode.php b/src/Content/Text/BBCode.php index 239e6dfa09..88df9511d4 100644 --- a/src/Content/Text/BBCode.php +++ b/src/Content/Text/BBCode.php @@ -230,18 +230,73 @@ class BBCode { DI::profiler()->startRecording('rendering'); // Remove pictures in advance to avoid unneeded proxy calls + $text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", ' ', $text); $text = preg_replace("/\[img\=(.*?)\](.*?)\[\/img\]/ism", ' $2 ', $text); $text = preg_replace("/\[img.*?\[\/img\]/ism", ' ', $text); // Remove attachment $text = self::replaceAttachment($text); - $naked_text = HTML::toPlaintext(self::convert($text, false, BBCode::EXTERNAL, true), 0, !$keep_urls); + $naked_text = HTML::toPlaintext(self::convert($text, false, self::EXTERNAL, true), 0, !$keep_urls); DI::profiler()->stopRecording(); return $naked_text; } + /** + * Converts text into a format that can be used for the channel search and the language detection. + * + * @param string $text + * @param integer $uri_id + * @return string + */ + public static function toSearchText(string $text, int $uri_id): string + { + // Removes attachments + $text = self::removeAttachment($text); + + // Add images because of possible alt texts + if (!empty($uri_id)) { + $text = Post\Media::addAttachmentsToBody($uri_id, $text, [Post\Media::IMAGE]); + } + + if (empty($text)) { + return ''; + } + + // Remove links without a link description + $text = preg_replace("~\[url\=.*\]https?:.*\[\/url\]~", ' ', $text); + + // Remove pictures + $text = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", ' ', $text); + + // Replace picture with the alt description + $text = preg_replace("/\[img\=.*?\](.*?)\[\/img\]/ism", ' $1 ', $text); + + // Remove the other pictures + $text = preg_replace("/\[img.*?\[\/img\]/ism", ' ', $text); + + // Removes mentions, remove links from hashtags + $text = preg_replace('/[@!]\[url\=.*?\].*?\[\/url\]/ism', ' ', $text); + $text = preg_replace('/[#]\[url\=.*?\](.*?)\[\/url\]/ism', ' #$1 ', $text); + $text = preg_replace('/[@!#]?\[url.*?\[\/url\]/ism', ' ', $text); + $text = preg_replace("/\[url=[^\[\]]*\](.*)\[\/url\]/Usi", ' $1 ', $text); + + // Convert it to plain text + $text = self::toPlaintext($text, false); + + // Remove possibly remaining links + $text = preg_replace(Strings::autoLinkRegEx(), '', $text); + + // Remove all unneeded white space + do { + $oldtext = $text; + $text = str_replace([' ', "\n", "\r", '"', '_'], ' ', $text); + } while ($oldtext != $text); + + return trim($text); + } + private static function proxyUrl(string $image, int $simplehtml = self::INTERNAL, int $uriid = 0, string $size = ''): string { // Only send proxied pictures to API and for internal display @@ -931,7 +986,7 @@ class BBCode $network = $contact['network'] ?? Protocol::PHANTOM; $tpl = Renderer::getMarkupTemplate('shared_content.tpl'); - $text .= BBCode::SHARED_ANCHOR . Renderer::replaceMacros($tpl, [ + $text .= self::SHARED_ANCHOR . Renderer::replaceMacros($tpl, [ '$profile' => $attributes['profile'], '$avatar' => $attributes['avatar'], '$author' => $attributes['author'], @@ -1112,6 +1167,7 @@ class BBCode public static function removeLinks(string $bbcode): string { DI::profiler()->startRecording('rendering'); + $bbcode = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", ' ', $bbcode); $bbcode = preg_replace("/\[img\=(.*?)\](.*?)\[\/img\]/ism", ' $1 ', $bbcode); $bbcode = preg_replace("/\[img.*?\[\/img\]/ism", ' ', $bbcode); @@ -1992,7 +2048,7 @@ class BBCode { DI::profiler()->startRecording('rendering'); - $text = BBCode::performWithEscapedTags($text, ['code', 'noparse', 'nobb', 'pre'], function ($text) { + $text = self::performWithEscapedTags($text, ['code', 'noparse', 'nobb', 'pre'], function ($text) { $text = preg_replace("/[\s|\n]*\[abstract\].*?\[\/abstract\][\s|\n]*/ism", ' ', $text); $text = preg_replace("/[\s|\n]*\[abstract=.*?\].*?\[\/abstract][\s|\n]*/ism", ' ', $text); return $text; @@ -2014,7 +2070,7 @@ class BBCode DI::profiler()->startRecording('rendering'); $addon = strtolower($addon); - $abstract = BBCode::performWithEscapedTags($text, ['code', 'noparse', 'nobb', 'pre'], function ($text) use ($addon) { + $abstract = self::performWithEscapedTags($text, ['code', 'noparse', 'nobb', 'pre'], function ($text) use ($addon) { if ($addon && preg_match('#\[abstract=' . preg_quote($addon, '#') . '](.*?)\[/abstract]#ism', $text, $matches)) { return $matches[1]; } diff --git a/src/Content/Text/Plaintext.php b/src/Content/Text/Plaintext.php index 86d720a02a..3b531f01bc 100644 --- a/src/Content/Text/Plaintext.php +++ b/src/Content/Text/Plaintext.php @@ -324,7 +324,7 @@ class Plaintext $post['text'] = Post\Media::removeFromBody($post['text']); $images = Post\Media::getByURIId($item['uri-id'], [Post\Media::IMAGE]); - if (!empty($item['quote-uri-id'])) { + if (!empty($item['quote-uri-id']) && ($item['quote-uri-id'] != $item['uri-id'])) { $images = array_merge($images, Post\Media::getByURIId($item['quote-uri-id'], [Post\Media::IMAGE])); } foreach ($images as $image) { @@ -355,7 +355,7 @@ class Plaintext // Look for audio or video links $media = Post\Media::getByURIId($item['uri-id'], [Post\Media::AUDIO, Post\Media::VIDEO]); - if (!empty($item['quote-uri-id'])) { + if (!empty($item['quote-uri-id']) && ($item['quote-uri-id'] != $item['uri-id'])) { $media = array_merge($media, Post\Media::getByURIId($item['quote-uri-id'], [Post\Media::AUDIO, Post\Media::VIDEO])); } diff --git a/src/Content/Widget.php b/src/Content/Widget.php index ce4548d1ad..3147e99a56 100644 --- a/src/Content/Widget.php +++ b/src/Content/Widget.php @@ -547,4 +547,53 @@ class Widget $accounttype ); } + + /** + * Get a list of all channels + * + * @param string $base + * @param string $channelname + * @param integer $uid + * @return string + */ + public static function channels(string $base, string $channelname, int $uid): string + { + $channels = []; + + $enabled = DI::pConfig()->get($uid, 'system', 'enabled_timelines', []); + + foreach (DI::NetworkFactory()->getTimelines('') as $channel) { + if (empty($enabled) || in_array($channel->code, $enabled)) { + $channels[] = ['ref' => $channel->code, 'name' => $channel->label]; + } + } + + foreach (DI::ChannelFactory()->getTimelines($uid) as $channel) { + if (empty($enabled) || in_array($channel->code, $enabled)) { + $channels[] = ['ref' => $channel->code, 'name' => $channel->label]; + } + } + + foreach (DI::userDefinedChannel()->selectByUid($uid) as $channel) { + if (empty($enabled) || in_array($channel->code, $enabled)) { + $channels[] = ['ref' => $channel->code, 'name' => $channel->label]; + } + } + + foreach (DI::CommunityFactory()->getTimelines(true) as $community) { + if (empty($enabled) || in_array($community->code, $enabled)) { + $channels[] = ['ref' => $community->code, 'name' => $community->label]; + } + } + + return self::filter( + 'channel', + DI::l10n()->t('Channels'), + '', + '', + $base, + $channels, + $channelname + ); + } } diff --git a/src/Content/Widget/VCard.php b/src/Content/Widget/VCard.php index 62a8e90853..1d5cde87b4 100644 --- a/src/Content/Widget/VCard.php +++ b/src/Content/Widget/VCard.php @@ -68,6 +68,9 @@ class VCard $follow_link = ''; $unfollow_link = ''; $wallmessage_link = ''; + $mention_label = ''; + $mention_link = ''; + $showgroup_link = ''; $photo = Contact::getPhoto($contact); @@ -99,6 +102,15 @@ class VCard if (in_array($rel, [Contact::FOLLOWER, Contact::FRIEND]) && Contact::canReceivePrivateMessages($contact)) { $wallmessage_link = 'message/new/' . $id; } + + if ($contact['contact-type'] == Contact::TYPE_COMMUNITY) { + $mention_label = DI::l10n()->t('Post to group'); + $mention_link = 'compose/0?body=!' . $contact['addr']; + $showgroup_link = 'network/group/' . $id; + } else { + $mention_label = DI::l10n()->t('Mention'); + $mention_link = 'compose/0?body=@' . $contact['addr']; + } } return Renderer::replaceMacros(Renderer::getMarkupTemplate('widget/vcard.tpl'), [ @@ -119,6 +131,10 @@ class VCard '$unfollow_link' => $unfollow_link, '$wallmessage' => DI::l10n()->t('Message'), '$wallmessage_link' => $wallmessage_link, + '$mention' => $mention_label, + '$mention_link' => $mention_link, + '$showgroup' => DI::l10n()->t('View group'), + '$showgroup_link' => $showgroup_link, ]); } } diff --git a/src/Core/Installer.php b/src/Core/Installer.php index 583ad5fe28..f9a5eda8d6 100644 --- a/src/Core/Installer.php +++ b/src/Core/Installer.php @@ -384,12 +384,10 @@ class Installer $help = ''; $status = true; - if (function_exists('apache_get_modules')) { - if (!in_array('mod_rewrite', apache_get_modules())) { - $help = DI::l10n()->t('Error: Apache webserver mod-rewrite module is required but not installed.'); - $status = false; - $returnVal = false; - } + if (function_exists('apache_get_modules') && !in_array('mod_rewrite', apache_get_modules())) { + $help = DI::l10n()->t('Error: Apache webserver mod-rewrite module is required but not installed.'); + $status = false; + $returnVal = false; } $this->addCheck(DI::l10n()->t('Apache mod_rewrite module'), $status, true, $help); @@ -399,15 +397,25 @@ class Installer $status = false; $help = DI::l10n()->t('Error: PDO or MySQLi PHP module required but not installed.'); $returnVal = false; - } else { - if (!function_exists('mysqli_connect') && class_exists('pdo') && !in_array('mysql', \PDO::getAvailableDrivers())) { - $status = false; - $help = DI::l10n()->t('Error: The MySQL driver for PDO is not installed.'); - $returnVal = false; - } + } elseif (!function_exists('mysqli_connect') && class_exists('pdo') && !in_array('mysql', \PDO::getAvailableDrivers())) { + $status = false; + $help = DI::l10n()->t('Error: The MySQL driver for PDO is not installed.'); + $returnVal = false; } $this->addCheck(DI::l10n()->t('PDO or MySQLi PHP module'), $status, true, $help); + // Uncomment when IntlChar is installed in the check pipeline. + /* + $help = ''; + $status = true; + if (!class_exists('IntlChar')) { + $status = false; + $help = DI::l10n()->t('Error: The IntlChar module is not installed.'); + $returnVal = false; + } + $this->addCheck(DI::l10n()->t('IntlChar PHP module'), $status, true, $help); + */ + // check for XML DOM Documents being able to be generated $help = ''; $status = true; diff --git a/src/Core/L10n.php b/src/Core/L10n.php index 1d8cfa705b..548aea1ace 100644 --- a/src/Core/L10n.php +++ b/src/Core/L10n.php @@ -378,7 +378,7 @@ class L10n * * @return array */ - public static function getAvailableLanguages(): array + public function getAvailableLanguages(bool $additional = false): array { $langs = []; $strings_file_paths = glob('view/lang/*/strings.php'); @@ -392,10 +392,109 @@ class L10n $path_array = explode('/', $strings_file_path); $langs[$path_array[2]] = self::LANG_NAMES[$path_array[2]] ?? $path_array[2]; } + + if ($additional) { + // See https://github.com/friendica/friendica/issues/10511 + // Persian is manually added to language detection until a persian translation is provided for the interface, at + // which point it will be automatically available through `getAvailableLanguages()` and this should be removed. + // Additionally some more languages are added to that list that are used in the Fediverse. + $additional_langs = [ + 'af' => 'Afrikaans', + 'az-Latn' => 'azərbaycan dili', + 'bs-Latn' => 'bosanski jezik', + 'be' => 'беларуская мова', + 'bn' => 'বাংলা', + 'cy' => 'Cymraeg', + 'el-monoton' => 'ελληνικά', + 'eu' => 'euskara, euskera', + 'fa' => 'فارسی', + 'ga' => 'Gaeilge', + 'gl' => 'galego', + 'he' => 'עברית', + 'hi' => 'हिन्दी, हिंदी', + 'hr' => 'hrvatski jezik', + 'hy' => 'Հայերեն', + 'id' => 'Bahasa Indonesia', + 'jv' => 'basa Jawa', + 'ka' => 'ქართული', + 'ko' => '한국어, 조선어', + 'lt' => 'lietuvių kalba', + 'lv' => 'latviešu valoda', + 'ms-Latn' => 'bahasa Melayu, بهاس ملايو', + 'sr-Cyrl' => 'српски језик', + 'sk' => 'slovenčina, slovenský jazyk', + 'sl' => 'slovenski jezik, slovenščina', + 'sq' => 'Shqip', + 'sw' => 'Kiswahili', + 'ta' => 'தமிழ்', + 'th' => 'ไทย', + 'tl' => 'Wikang Tagalog, ᜏᜒᜃᜅ᜔ ᜆᜄᜎᜓᜄ᜔', + 'tr' => 'Türkçe', + 'pt-PT' => 'português', + 'uk' => 'українська мова', + 'uz' => 'Oʻzbek, Ўзбек, أۇزبېك', + 'vi' => 'Việt Nam', + 'zh-hant' => '繁體', + ]; + $langs = array_merge($additional_langs, $langs); + ksort($langs); + } } return $langs; } + /** + * The language detection routine uses some slightly different language codes. + * This function changes the language array accordingly. + * + * @param array $languages + * @return array + */ + public function convertForLanguageDetection(array $languages): array + { + foreach ($languages as $key => $language) { + $newkey = $this->convertCodeForLanguageDetection($key); + if ($newkey != $key) { + if (!isset($languages[$newkey])) { + $languages[$newkey] = $language; + } + unset($languages[$key]); + } + } + + ksort($languages); + + return $languages; + } + + /** + * The language detection routine uses some slightly different language codes. + * This function changes the language codes accordingly. + * + * @param string $language + * @return string + */ + public function convertCodeForLanguageDetection(string $language): string + { + switch ($language) { + case 'da-dk': + return 'da'; + case 'en-us': + case 'en-gb': + return 'en'; + case 'fi-fi': + return 'fi'; + case 'nb-no': + return 'nb'; + case 'pt-br': + return 'pt-BR'; + case 'zh-cn': + return 'zh-Hans'; + default: + return $language; + } + } + /** * Translate days and months names. * diff --git a/src/Core/Logger/Util/Introspection.php b/src/Core/Logger/Util/Introspection.php index 0b703da825..c154eec9f5 100644 --- a/src/Core/Logger/Util/Introspection.php +++ b/src/Core/Logger/Util/Introspection.php @@ -23,6 +23,7 @@ namespace Friendica\Core\Logger\Util; use Friendica\App\Request; use Friendica\Core\Logger\Capability\IHaveCallIntrospections; +use Friendica\Core\System; /** * Get Introspection information about the current call @@ -86,6 +87,7 @@ class Introspection implements IHaveCallIntrospections 'line' => $trace[$i - 1]['line'] ?? null, 'function' => $trace[$i]['function'] ?? null, 'request-id' => $this->requestId, + 'stack' => System::callstack(10, 4), ]; } diff --git a/src/Core/System.php b/src/Core/System.php index f155483463..197e7b2ae6 100644 --- a/src/Core/System.php +++ b/src/Core/System.php @@ -28,10 +28,12 @@ use Friendica\DI; use Friendica\Model\User; use Friendica\Module\Response; use Friendica\Network\HTTPException\FoundException; +use Friendica\Network\HTTPException\InternalServerErrorException; use Friendica\Network\HTTPException\MovedPermanentlyException; use Friendica\Network\HTTPException\TemporaryRedirectException; use Friendica\Util\BasePath; use Friendica\Util\XML; +use Psr\Http\Message\ResponseInterface; use Psr\Log\LoggerInterface; /** @@ -274,32 +276,59 @@ class System return implode(', ', $callstack2); } + /** + * Display current response, including setting all headers + * + * @param ResponseInterface $response + */ + public static function echoResponse(ResponseInterface $response) + { + header(sprintf("HTTP/%s %s %s", + $response->getProtocolVersion(), + $response->getStatusCode(), + $response->getReasonPhrase()) + ); + + foreach ($response->getHeaders() as $key => $header) { + if (is_array($header)) { + $header_str = implode(',', $header); + } else { + $header_str = $header; + } + + if (is_int($key)) { + header($header_str); + } else { + header("$key: $header_str"); + } + } + + echo $response->getBody(); + } + /** * Generic XML return * Outputs a basic dfrn XML status structure to STDOUT, with aCustom fields appear on your profile page.
\n" "\t\t\t\tYou can use BBCodes in the field values.
\n" "\t\t\t\tReorder by dragging the field title.
\n" "\t\t\t\tEmpty the label field to remove a custom field.
\n" -"\t\t\t\tNon-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\tNon-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 "عنوان الشارع:" + +#: 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 @@ -10350,6 +10833,42 @@ msgstr "سيزال حسابك نهائيًا. لا مجال لتراجع عند 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 @@ -10671,20 +11190,41 @@ msgid "" " e.g. Mastodon." msgstr "صدّر قائمة الحسابات المتابَعة إلى ملف csv. هذا الملف متوافق مع ماستدون." +#: 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 "Not Found" +msgid "" +"This node has blocked the top-level author or the author of the shared post." msgstr "" #: src/Module/Special/DisplayNotFound.php:38 msgid "" -"Unfortunately, the requested conversation isn't available to you.
\n" -"Possible reasons include:
\n" -"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'] = 'تعذرت معالجة الصورة'; @@ -2148,6 +2092,7 @@ $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.'] = 'يمكنك استيراد حساب من خادم فرَندِكا آخر.'; @@ -2188,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'] = 'الحصول على مساعدة'; @@ -2420,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 178bdd6ccf..4ddf097f28 100644 --- a/view/lang/bg/messages.po +++ b/view/lang/bg/messages.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: friendica\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-02-18 20:49+0000\n" +"POT-Creation-Date: 2023-09-18 05:30+0000\n" "PO-Revision-Date: 2011-05-05 10:19+0000\n" "Last-Translator: Rafael Kalachevupload_max_filesize
is set to %s (%s byte)"
msgstr ""
-#: src/Module/Admin/Site.php:431
+#: src/Module/Admin/Site.php:439
msgid "Maximum image length"
msgstr ""
-#: src/Module/Admin/Site.php:431
+#: 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:432
+#: src/Module/Admin/Site.php:440
msgid "JPEG image quality"
msgstr ""
-#: src/Module/Admin/Site.php:432
+#: 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:434
+#: src/Module/Admin/Site.php:442
msgid "Register policy"
msgstr "Регистрирайте политика"
-#: src/Module/Admin/Site.php:435
+#: 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:435
+#: 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:436
+#: src/Module/Admin/Site.php:445
msgid "Register text"
msgstr "Регистрирайте се текст"
-#: src/Module/Admin/Site.php:436
+#: 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:437
+#: src/Module/Admin/Site.php:446
msgid "Forbidden Nicknames"
msgstr ""
-#: src/Module/Admin/Site.php:437
+#: 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:438
+#: src/Module/Admin/Site.php:447
msgid "Accounts abandoned after x days"
msgstr "Сметките изоставени след дни х"
-#: src/Module/Admin/Site.php:438
+#: 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:439
+#: src/Module/Admin/Site.php:448
msgid "Allowed friend domains"
msgstr "Позволи на домейни приятел"
-#: src/Module/Admin/Site.php:439
+#: 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:440
+#: src/Module/Admin/Site.php:449
msgid "Allowed email domains"
msgstr "Позволи на домейни имейл"
-#: src/Module/Admin/Site.php:440
+#: 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:441
+#: src/Module/Admin/Site.php:450
msgid "No OEmbed rich content"
msgstr ""
-#: src/Module/Admin/Site.php:441
+#: 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:442
+#: src/Module/Admin/Site.php:451
msgid "Trusted third-party domains"
msgstr ""
-#: src/Module/Admin/Site.php:442
+#: 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:443
+#: src/Module/Admin/Site.php:452
msgid "Block public"
msgstr "Блокиране на обществения"
-#: src/Module/Admin/Site.php:443
+#: 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:444
+#: src/Module/Admin/Site.php:453
msgid "Force publish"
msgstr "Принудително публикува"
-#: src/Module/Admin/Site.php:444
+#: 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:444
+#: src/Module/Admin/Site.php:453
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr ""
-#: src/Module/Admin/Site.php:445
+#: src/Module/Admin/Site.php:454
msgid "Global directory URL"
msgstr ""
-#: src/Module/Admin/Site.php:445
+#: 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:446
+#: src/Module/Admin/Site.php:455
msgid "Private posts by default for new users"
msgstr ""
-#: src/Module/Admin/Site.php:446
+#: 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:447
+#: src/Module/Admin/Site.php:456
msgid "Don't include post content in email notifications"
msgstr ""
-#: src/Module/Admin/Site.php:447
+#: 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:448
+#: src/Module/Admin/Site.php:457
msgid "Disallow public access to addons listed in the apps menu."
msgstr ""
-#: src/Module/Admin/Site.php:448
+#: 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:449
+#: src/Module/Admin/Site.php:458
msgid "Don't embed private images in posts"
msgstr ""
-#: src/Module/Admin/Site.php:449
+#: 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 "
@@ -4454,11 +4739,11 @@ msgid ""
"while."
msgstr ""
-#: src/Module/Admin/Site.php:450
+#: src/Module/Admin/Site.php:459
msgid "Explicit Content"
msgstr ""
-#: src/Module/Admin/Site.php:450
+#: 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 "
@@ -4467,267 +4752,267 @@ msgid ""
"will be shown at the user registration page."
msgstr ""
-#: src/Module/Admin/Site.php:451
+#: src/Module/Admin/Site.php:460
msgid "Proxify external content"
msgstr ""
-#: src/Module/Admin/Site.php:451
+#: 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:452
+#: src/Module/Admin/Site.php:461
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:452
+#: 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:453
+#: src/Module/Admin/Site.php:462
msgid "Allow Users to set remote_self"
msgstr ""
-#: src/Module/Admin/Site.php:453
+#: 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:454
+#: src/Module/Admin/Site.php:463
msgid "Enable multiple registrations"
msgstr ""
-#: src/Module/Admin/Site.php:454
+#: src/Module/Admin/Site.php:463
msgid "Enable users to register additional accounts for use as pages."
msgstr ""
-#: src/Module/Admin/Site.php:455
+#: src/Module/Admin/Site.php:464
msgid "Enable OpenID"
msgstr ""
-#: src/Module/Admin/Site.php:455
+#: src/Module/Admin/Site.php:464
msgid "Enable OpenID support for registration and logins."
msgstr ""
-#: src/Module/Admin/Site.php:456
+#: src/Module/Admin/Site.php:465
msgid "Enable Fullname check"
msgstr ""
-#: src/Module/Admin/Site.php:456
+#: 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:457
+#: src/Module/Admin/Site.php:466
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:457
+#: 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:458
+#: src/Module/Admin/Site.php:467
msgid "Community pages for visitors"
msgstr ""
-#: src/Module/Admin/Site.php:458
+#: 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:459
+#: src/Module/Admin/Site.php:468
msgid "Posts per user on community page"
msgstr ""
-#: src/Module/Admin/Site.php:459
+#: 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:461
+#: src/Module/Admin/Site.php:470
msgid "Enable Mail support"
msgstr ""
-#: src/Module/Admin/Site.php:461
+#: 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:462
+#: 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:463
+#: src/Module/Admin/Site.php:472
msgid "Enable OStatus support"
msgstr ""
-#: src/Module/Admin/Site.php:463
+#: 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:465
+#: 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:466
+#: src/Module/Admin/Site.php:475
msgid "Enable Diaspora support"
msgstr "Активирайте диаспора подкрепа"
-#: src/Module/Admin/Site.php:466
+#: src/Module/Admin/Site.php:475
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:467
+#: src/Module/Admin/Site.php:476
msgid "Verify SSL"
msgstr "Провери SSL"
-#: src/Module/Admin/Site.php:467
+#: 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:468
+#: src/Module/Admin/Site.php:477
msgid "Proxy user"
msgstr "Proxy потребител"
-#: src/Module/Admin/Site.php:468
+#: src/Module/Admin/Site.php:477
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:469
+#: src/Module/Admin/Site.php:478
msgid "Proxy URL"
msgstr "Proxy URL"
-#: src/Module/Admin/Site.php:469
+#: 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:470
+#: src/Module/Admin/Site.php:479
msgid "Network timeout"
msgstr "Мрежа изчакване"
-#: src/Module/Admin/Site.php:470
+#: 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:471
+#: src/Module/Admin/Site.php:480
msgid "Maximum Load Average"
msgstr "Максимално натоварване"
-#: src/Module/Admin/Site.php:471
+#: 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:472
+#: src/Module/Admin/Site.php:481
msgid "Minimal Memory"
msgstr ""
-#: src/Module/Admin/Site.php:472
+#: 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:473
+#: src/Module/Admin/Site.php:482
msgid "Periodically optimize tables"
msgstr ""
-#: src/Module/Admin/Site.php:473
+#: src/Module/Admin/Site.php:482
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr ""
-#: src/Module/Admin/Site.php:475
+#: src/Module/Admin/Site.php:484
msgid "Discover followers/followings from contacts"
msgstr ""
-#: src/Module/Admin/Site.php:475
+#: src/Module/Admin/Site.php:484
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr ""
-#: src/Module/Admin/Site.php:476
+#: src/Module/Admin/Site.php:485
msgid "None - deactivated"
msgstr ""
-#: src/Module/Admin/Site.php:477
+#: 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:478
+#: 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:480
+#: src/Module/Admin/Site.php:489
msgid "Synchronize the contacts with the directory server"
msgstr ""
-#: src/Module/Admin/Site.php:480
+#: 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:482
+#: src/Module/Admin/Site.php:491
msgid "Days between requery"
msgstr ""
-#: src/Module/Admin/Site.php:482
+#: 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:483
+#: src/Module/Admin/Site.php:492
msgid "Discover contacts from other servers"
msgstr ""
-#: src/Module/Admin/Site.php:483
+#: 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:484
+#: src/Module/Admin/Site.php:493
msgid "Search the local directory"
msgstr ""
-#: src/Module/Admin/Site.php:484
+#: 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:486
+#: src/Module/Admin/Site.php:495
msgid "Publish server information"
msgstr ""
-#: src/Module/Admin/Site.php:486
+#: 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 "
@@ -4735,50 +5020,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr ""
-#: src/Module/Admin/Site.php:488
+#: src/Module/Admin/Site.php:497
msgid "Check upstream version"
msgstr ""
-#: src/Module/Admin/Site.php:488
+#: 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:489
+#: src/Module/Admin/Site.php:498
msgid "Suppress Tags"
msgstr ""
-#: src/Module/Admin/Site.php:489
+#: 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:490
+#: src/Module/Admin/Site.php:499
msgid "Clean database"
msgstr ""
-#: src/Module/Admin/Site.php:490
+#: 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:491
+#: src/Module/Admin/Site.php:500
msgid "Lifespan of remote items"
msgstr ""
-#: src/Module/Admin/Site.php:491
+#: 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:492
+#: src/Module/Admin/Site.php:501
msgid "Lifespan of unclaimed items"
msgstr ""
-#: src/Module/Admin/Site.php:492
+#: 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. "
@@ -4786,144 +5071,144 @@ msgid ""
"items if set to 0."
msgstr ""
-#: src/Module/Admin/Site.php:493
+#: src/Module/Admin/Site.php:502
msgid "Lifespan of raw conversation data"
msgstr ""
-#: src/Module/Admin/Site.php:493
+#: 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:494
+#: src/Module/Admin/Site.php:503
msgid "Maximum numbers of comments per post"
msgstr ""
-#: src/Module/Admin/Site.php:494
+#: 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:495
+#: src/Module/Admin/Site.php:504
msgid "Maximum numbers of comments per post on the display page"
msgstr ""
-#: src/Module/Admin/Site.php:495
+#: 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:496
+#: src/Module/Admin/Site.php:505
msgid "Temp path"
msgstr ""
-#: src/Module/Admin/Site.php:496
+#: 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:497
+#: src/Module/Admin/Site.php:506
msgid "Only search in tags"
msgstr ""
-#: src/Module/Admin/Site.php:497
+#: 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:498
-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:498
+#: src/Module/Admin/Site.php:507
msgid ""
-"On systems with users that heavily use contact groups the query can be very "
-"expensive."
+"On systems with users that heavily use contact circles the query can be very"
+" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:509
msgid "Maximum number of parallel workers"
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: 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:501
+#: src/Module/Admin/Site.php:510
msgid "Enable fastlane"
msgstr ""
-#: src/Module/Admin/Site.php:501
+#: 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:503
+#: src/Module/Admin/Site.php:512
msgid "Direct relay transfer"
msgstr ""
-#: src/Module/Admin/Site.php:503
+#: 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:504
+#: src/Module/Admin/Site.php:513
msgid "Relay scope"
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: 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:504 src/Module/Contact/Profile.php:287
+#: 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:504
+#: src/Module/Admin/Site.php:513
msgid "all"
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:513
msgid "tags"
msgstr ""
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:514
msgid "Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:514
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:515
msgid "Deny Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:515
msgid "Comma separated list of tags that are rejected."
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:516
msgid "Allow user tags"
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: 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:510
+#: src/Module/Admin/Site.php:519
msgid "Start Relocation"
msgstr ""
@@ -4969,7 +5254,13 @@ 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 ""
@@ -5073,51 +5364,40 @@ msgid ""
"href=\"%s\">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
+#: 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:180
+#: 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:188
+#: 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:199
+#: src/Module/Admin/Summary.php:175
msgid "Message queues"
msgstr "Съобщение опашки"
-#: src/Module/Admin/Summary.php:205
+#: src/Module/Admin/Summary.php:181
msgid "Server Settings"
msgstr ""
-#: src/Module/Admin/Summary.php:223
+#: src/Module/Admin/Summary.php:199
msgid "Version"
msgstr "Версия "
-#: src/Module/Admin/Summary.php:227
+#: src/Module/Admin/Summary.php:203
msgid "Active addons"
msgstr ""
@@ -5157,16 +5437,16 @@ 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 "Неподдържан]"
@@ -5270,11 +5550,11 @@ msgstr "Елемент не е намерен."
msgid "Please login to continue."
msgstr "Моля, влезте, за да продължите."
-#: src/Module/BaseAdmin.php:63 src/Module/BaseModeration.php:86
+#: src/Module/BaseAdmin.php:63
msgid "You don't have access to administration pages."
msgstr ""
-#: src/Module/BaseAdmin.php:67 src/Module/BaseModeration.php:90
+#: src/Module/BaseAdmin.php:67
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
@@ -5284,11 +5564,11 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:111
+#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
msgid "Configuration"
msgstr ""
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:112
+#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
msgid "Additional features"
msgstr "Допълнителни възможности"
@@ -5308,7 +5588,7 @@ msgstr ""
msgid "Inspect worker Queue"
msgstr ""
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:119
+#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
msgid "Diagnostics"
msgstr ""
@@ -5336,23 +5616,23 @@ msgstr ""
msgid "Addon Features"
msgstr ""
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:128
+#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
msgid "User registrations waiting for confirmation"
msgstr "Потребителски регистрации, чакащи за потвърждение"
-#: src/Module/BaseApi.php:266 src/Module/BaseApi.php:282
-#: src/Module/BaseApi.php:298
+#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467
+#: src/Module/BaseApi.php:483
msgid "Too Many Requests"
msgstr ""
-#: src/Module/BaseApi.php:267
+#: 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:283
+#: src/Module/BaseApi.php:468
#, php-format
msgid "Weekly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -5360,7 +5640,7 @@ msgid_plural ""
msgstr[0] "Седмичният лимит от %d пост е достигнат. Постът беше отказан."
msgstr[1] "Седмичният лимит от %d поста е достигнат. Постът беше отказан."
-#: src/Module/BaseApi.php:299
+#: src/Module/BaseApi.php:484
#, php-format
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -5368,32 +5648,46 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: src/Module/BaseModeration.php:112 src/Module/Moderation/Users/Index.php:148
+#: 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:114
+#: src/Module/BaseModeration.php:115
msgid "Tools"
msgstr ""
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:116
msgid "Contact Blocklist"
msgstr ""
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:117
msgid "Server Blocklist"
msgstr ""
-#: src/Module/BaseModeration.php:117 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
msgid "Delete Item"
msgstr ""
-#: src/Module/BaseModeration.php:120 src/Module/Moderation/Item/Source.php:76
+#: 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:479
+#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507
msgid "Profile Details"
msgstr "Детайли от профила"
@@ -5405,7 +5699,7 @@ msgstr ""
msgid "Only You Can See This"
msgstr "Можете да видите това"
-#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:82
+#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81
msgid "Scheduled Posts"
msgstr ""
@@ -5417,50 +5711,67 @@ msgstr ""
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/BaseSearch.php:119 src/Module/Contact/MatchInterests.php:139
+#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139
msgid "No matches"
msgstr "Няма съответствия"
-#: src/Module/BaseSettings.php:80
+#: 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:87 src/Module/Security/TwoFactor/Verify.php:96
+#: 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:120
+#: src/Module/BaseSettings.php:118
msgid "Display"
msgstr ""
-#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:202
+#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204
msgid "Social Networks"
msgstr ""
-#: src/Module/BaseSettings.php:141 src/Module/Settings/Delegation.php:170
+#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172
msgid "Manage Accounts"
msgstr ""
-#: src/Module/BaseSettings.php:148
+#: src/Module/BaseSettings.php:146
msgid "Connected apps"
msgstr "Свързани приложения"
-#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:98
+#: 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:162
+#: src/Module/BaseSettings.php:167
msgid "Remove account"
msgstr "Премахване сметка"
@@ -5580,10 +5891,113 @@ msgstr ""
msgid "Create New Event"
msgstr "Създаване на нов събитие"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:235
+#: 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."
@@ -5591,159 +6005,146 @@ msgid_plural "%d contacts edited."
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Contact.php:342
+#: src/Module/Contact.php:348
msgid "Show all contacts"
msgstr "Покажи на всички контакти"
-#: src/Module/Contact.php:347 src/Module/Contact.php:415
+#: src/Module/Contact.php:353 src/Module/Contact.php:432
#: src/Module/Moderation/BaseUsers.php:85
msgid "Pending"
msgstr ""
-#: src/Module/Contact.php:350
+#: src/Module/Contact.php:356
msgid "Only show pending contacts"
msgstr ""
-#: src/Module/Contact.php:355 src/Module/Contact.php:416
+#: src/Module/Contact.php:361 src/Module/Contact.php:435
#: src/Module/Moderation/BaseUsers.php:93
msgid "Blocked"
msgstr "Блокиран"
-#: src/Module/Contact.php:358
+#: src/Module/Contact.php:364
msgid "Only show blocked contacts"
msgstr "Покажи само Блокираните контакти"
-#: src/Module/Contact.php:363 src/Module/Contact.php:418
-#: src/Object/Post.php:344
+#: 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:366
+#: src/Module/Contact.php:372
msgid "Only show ignored contacts"
msgstr "Покажи само игнорирани контакти"
-#: src/Module/Contact.php:371 src/Module/Contact.php:419
+#: src/Module/Contact.php:377 src/Module/Contact.php:444
msgid "Collapsed"
msgstr ""
-#: src/Module/Contact.php:374
+#: src/Module/Contact.php:380
msgid "Only show collapsed contacts"
msgstr ""
-#: src/Module/Contact.php:379 src/Module/Contact.php:420
+#: src/Module/Contact.php:385 src/Module/Contact.php:447
msgid "Archived"
msgstr "Архивиран:"
-#: src/Module/Contact.php:382
+#: src/Module/Contact.php:388
msgid "Only show archived contacts"
msgstr "Покажи само архивирани контакти"
-#: src/Module/Contact.php:387 src/Module/Contact.php:417
+#: src/Module/Contact.php:393 src/Module/Contact.php:438
msgid "Hidden"
msgstr "Скрит"
-#: src/Module/Contact.php:390
+#: src/Module/Contact.php:396
msgid "Only show hidden contacts"
msgstr "Само показва скрити контакти"
-#: src/Module/Contact.php:398
-msgid "Organize your contact groups"
+#: src/Module/Contact.php:404
+msgid "Organize your contact circles"
msgstr ""
-#: src/Module/Contact.php:431
+#: src/Module/Contact.php:459
msgid "Search your contacts"
msgstr "Търсене на вашите контакти"
-#: src/Module/Contact.php:432 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:439
+#: src/Module/Contact.php:467
msgid "Update"
msgstr "Актуализиране"
-#: src/Module/Contact.php:440 src/Module/Contact/Profile.php:478
+#: 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:441 src/Module/Contact/Profile.php:486
+#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519
msgid "Unignore"
msgstr "Извади от пренебрегнатите"
-#: src/Module/Contact.php:442 src/Module/Contact/Profile.php:494
+#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527
msgid "Uncollapse"
msgstr ""
-#: src/Module/Contact.php:444
+#: src/Module/Contact.php:472
msgid "Batch Actions"
msgstr ""
-#: src/Module/Contact.php:487
+#: src/Module/Contact.php:515
msgid "Conversations started by this contact"
msgstr ""
-#: src/Module/Contact.php:492
+#: src/Module/Contact.php:520
msgid "Posts and Comments"
msgstr ""
-#: src/Module/Contact.php:495
+#: src/Module/Contact.php:523
msgid "Individual Posts and Replies"
msgstr ""
-#: src/Module/Contact.php:503
+#: src/Module/Contact.php:531
msgid "Posts containing media objects"
msgstr ""
-#: src/Module/Contact.php:510
+#: src/Module/Contact.php:539
msgid "View all known contacts"
msgstr ""
-#: src/Module/Contact.php:520
+#: src/Module/Contact.php:550
msgid "Advanced Contact Settings"
msgstr "Разширени настройки за контакт"
-#: src/Module/Contact.php:556
+#: src/Module/Contact.php:586
msgid "Mutual Friendship"
msgstr "Взаимното приятелство"
-#: src/Module/Contact.php:560
+#: src/Module/Contact.php:590
msgid "is a fan of yours"
msgstr "е фенка"
-#: src/Module/Contact.php:564
+#: src/Module/Contact.php:594
msgid "you are a fan of"
msgstr "Вие сте фен на"
-#: src/Module/Contact.php:582
+#: src/Module/Contact.php:612
msgid "Pending outgoing contact request"
msgstr ""
-#: src/Module/Contact.php:584
+#: src/Module/Contact.php:614
msgid "Pending incoming contact request"
msgstr ""
-#: src/Module/Contact.php:597 src/Module/Contact/Profile.php:347
+#: 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: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
-#: src/Module/Group.php:97 src/Module/Group.php:106
-msgid "Contact not found."
-msgstr "Контактът не е намерен."
-
#: src/Module/Contact/Advanced.php:99
msgid "Contact update failed."
msgstr "Свържете се актуализира провали."
@@ -5754,13 +6155,14 @@ 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:71
+#: 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:73
+#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72
msgid "Name"
msgstr "Име"
@@ -5780,11 +6182,6 @@ msgstr "Анкета / URL Feed"
msgid "New photo from this URL"
msgstr "Нова снимка от този адрес"
-#: src/Module/Contact/Contacts.php:66 src/Module/Conversation/Network.php:189
-#: src/Module/Group.php:101
-msgid "Invalid contact."
-msgstr "Невалиден свържете."
-
#: src/Module/Contact/Contacts.php:89
msgid "No known contacts."
msgstr ""
@@ -5793,28 +6190,28 @@ msgstr ""
msgid "No common contacts."
msgstr ""
-#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:132
+#: 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:135
+#: 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:138
+#: 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:140
+#: 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 ""
@@ -5833,15 +6230,15 @@ msgid ""
"contacts (follow, comment or likes on public posts)."
msgstr ""
-#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:146
+#: 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:69 src/Module/Contact/Redir.php:62
-#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:194
+#: 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
@@ -5850,71 +6247,72 @@ msgstr[1] ""
msgid "Access denied."
msgstr "Отказан достъп."
-#: src/Module/Contact/Follow.php:104 src/Module/Contact/Unfollow.php:125
+#: 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:114
+#: src/Module/Contact/Follow.php:115
msgid "You already added this contact."
msgstr ""
-#: src/Module/Contact/Follow.php:129
+#: 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:137
+#: src/Module/Contact/Follow.php:138
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr ""
-#: src/Module/Contact/Follow.php:142
+#: src/Module/Contact/Follow.php:143
msgid "OStatus support is disabled. Contact can't be added."
msgstr ""
-#: src/Module/Contact/Follow.php:167 src/Module/Profile/RemoteFollow.php:132
+#: src/Module/Contact/Follow.php:168 src/Module/Profile/RemoteFollow.php:132
msgid "Please answer the following:"
msgstr "Моля отговорете на следните:"
-#: src/Module/Contact/Follow.php:168 src/Module/Contact/Unfollow.php:123
+#: src/Module/Contact/Follow.php:169 src/Module/Contact/Unfollow.php:123
msgid "Your Identity Address:"
msgstr "Адрес на вашата самоличност:"
-#: src/Module/Contact/Follow.php:169 src/Module/Contact/Profile.php:376
+#: 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:170 src/Module/Contact/Profile.php:388
+#: 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:181
+#: src/Module/Contact/Follow.php:182
#, php-format
msgid "%s knows you"
msgstr ""
-#: src/Module/Contact/Follow.php:182
+#: src/Module/Contact/Follow.php:183
msgid "Add a personal note:"
msgstr "Добавяне на лична бележка:"
-#: src/Module/Contact/Follow.php:191 src/Module/Contact/Unfollow.php:138
+#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138
msgid "Posts and Replies"
msgstr ""
-#: src/Module/Contact/Follow.php:220
+#: 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:79
-#: src/Module/Media/Attachment/Upload.php:84
-#: src/Module/Media/Photo/Upload.php:83 src/Module/Media/Photo/Upload.php:88
-#: src/Module/Media/Photo/Upload.php:137
+#: 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 ""
@@ -5926,248 +6324,312 @@ msgstr ""
msgid "Profile Match"
msgstr "Профил мач"
-#: src/Module/Contact/Profile.php:128
+#: 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 "За контакти е бил unignored"
-#: src/Module/Contact/Profile.php:198
+#: src/Module/Contact/Profile.php:210
msgid "Contact has been ignored"
msgstr "Лицето е било игнорирано"
-#: src/Module/Contact/Profile.php:210
+#: src/Module/Contact/Profile.php:222
msgid "Contact has been uncollapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:214
+#: src/Module/Contact/Profile.php:226
msgid "Contact has been collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:243
+#: src/Module/Contact/Profile.php:254
#, php-format
msgid "You are mutual friends with %s"
msgstr "Вие сте общи приятели с %s"
-#: src/Module/Contact/Profile.php:244
+#: src/Module/Contact/Profile.php:255
#, php-format
msgid "You are sharing with %s"
msgstr "Вие споделяте с %s"
-#: src/Module/Contact/Profile.php:245
+#: src/Module/Contact/Profile.php:256
#, php-format
msgid "%s is sharing with you"
msgstr "%s се споделя с вас"
-#: src/Module/Contact/Profile.php:261
+#: src/Module/Contact/Profile.php:272
msgid "Private communications are not available for this contact."
msgstr "Частни съобщения не са на разположение за този контакт."
-#: src/Module/Contact/Profile.php:263
+#: 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:266
+#: src/Module/Contact/Profile.php:288
msgid "(Update was not successful)"
msgstr "(Актуализация не е била успешна)"
-#: src/Module/Contact/Profile.php:266
+#: src/Module/Contact/Profile.php:288
msgid "(Update was successful)"
msgstr "(Update е била успешна)"
-#: src/Module/Contact/Profile.php:268 src/Module/Contact/Profile.php:449
+#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482
msgid "Suggest friends"
msgstr "Предложете приятели"
-#: src/Module/Contact/Profile.php:272
+#: src/Module/Contact/Profile.php:294
#, php-format
msgid "Network type: %s"
msgstr "Тип мрежа: %s"
-#: src/Module/Contact/Profile.php:277
+#: src/Module/Contact/Profile.php:299
msgid "Communications lost with this contact!"
msgstr "Communications загубиха с този контакт!"
-#: src/Module/Contact/Profile.php:283
+#: src/Module/Contact/Profile.php:305
msgid "Fetch further information for feeds"
msgstr ""
-#: src/Module/Contact/Profile.php:285
+#: 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:288
+#: src/Module/Contact/Profile.php:310
msgid "Fetch information"
msgstr ""
-#: src/Module/Contact/Profile.php:289
+#: src/Module/Contact/Profile.php:311
msgid "Fetch keywords"
msgstr ""
-#: src/Module/Contact/Profile.php:290
+#: src/Module/Contact/Profile.php:312
msgid "Fetch information and keywords"
msgstr ""
-#: src/Module/Contact/Profile.php:300 src/Module/Contact/Profile.php:305
-#: src/Module/Contact/Profile.php:310 src/Module/Contact/Profile.php:316
+#: 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:301 src/Module/Contact/Profile.php:311
-#: src/Module/Contact/Profile.php:317
+#: 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:306 src/Module/Contact/Profile.php:312
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334
msgid "Native reshare"
msgstr ""
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:353
msgid "Contact Information / Notes"
msgstr "Информация за контакти / Забележки"
-#: src/Module/Contact/Profile.php:330
+#: src/Module/Contact/Profile.php:354
msgid "Contact Settings"
msgstr ""
-#: src/Module/Contact/Profile.php:338
+#: src/Module/Contact/Profile.php:362
msgid "Contact"
msgstr ""
-#: src/Module/Contact/Profile.php:342
+#: src/Module/Contact/Profile.php:366
msgid "Their personal note"
msgstr ""
-#: src/Module/Contact/Profile.php:344
+#: src/Module/Contact/Profile.php:368
msgid "Edit contact notes"
msgstr "Редактиране на контакт с бележка"
-#: src/Module/Contact/Profile.php:348
+#: src/Module/Contact/Profile.php:372
msgid "Block/Unblock contact"
msgstr "Блокиране / Деблокиране на контакт"
-#: src/Module/Contact/Profile.php:349
+#: src/Module/Contact/Profile.php:373
+#: src/Module/Moderation/Report/Create.php:293
msgid "Ignore contact"
msgstr "Игнорирай се свържете с"
-#: src/Module/Contact/Profile.php:350
+#: src/Module/Contact/Profile.php:374
msgid "View conversations"
msgstr "Вижте разговори"
-#: src/Module/Contact/Profile.php:355
+#: src/Module/Contact/Profile.php:379
msgid "Last update:"
msgstr "Последна актуализация:"
-#: src/Module/Contact/Profile.php:357
+#: src/Module/Contact/Profile.php:381
msgid "Update public posts"
msgstr "Актуализиране на държавни длъжности"
-#: src/Module/Contact/Profile.php:359 src/Module/Contact/Profile.php:459
+#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492
msgid "Update now"
msgstr "Актуализирай сега"
-#: src/Module/Contact/Profile.php:361
+#: src/Module/Contact/Profile.php:385
msgid "Awaiting connection acknowledge"
msgstr ""
-#: src/Module/Contact/Profile.php:362
+#: src/Module/Contact/Profile.php:386
msgid "Currently blocked"
msgstr "Които понастоящем са блокирани"
-#: src/Module/Contact/Profile.php:363
+#: src/Module/Contact/Profile.php:387
msgid "Currently ignored"
msgstr "В момента игнорирани"
-#: src/Module/Contact/Profile.php:364
+#: src/Module/Contact/Profile.php:388
msgid "Currently collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:365
+#: src/Module/Contact/Profile.php:389
msgid "Currently archived"
msgstr "В момента архивират"
-#: src/Module/Contact/Profile.php:368
+#: 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:368
+#: src/Module/Contact/Profile.php:394
msgid ""
"Replies/likes to your public posts may still be visible"
msgstr "Отговори / обича да си публични длъжности май STRONG> все още да се вижда"
-#: src/Module/Contact/Profile.php:369
+#: src/Module/Contact/Profile.php:395
msgid "Notification for new posts"
msgstr ""
-#: src/Module/Contact/Profile.php:369
+#: src/Module/Contact/Profile.php:395
msgid "Send a notification of every new post of this contact"
msgstr ""
-#: src/Module/Contact/Profile.php:371
+#: src/Module/Contact/Profile.php:397
msgid "Keyword Deny List"
msgstr ""
-#: src/Module/Contact/Profile.php:371
+#: 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:389
+#: src/Module/Contact/Profile.php:415
#: src/Module/Settings/TwoFactor/Index.php:139
msgid "Actions"
msgstr ""
-#: src/Module/Contact/Profile.php:391
+#: 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:397
+#: src/Module/Contact/Profile.php:423
msgid "Mirror postings from this contact"
msgstr ""
-#: src/Module/Contact/Profile.php:399
+#: 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:469
+#: 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:480
+#: src/Module/Contact/Profile.php:513
msgid "Toggle Blocked status"
msgstr "Превключване Блокирани статус"
-#: src/Module/Contact/Profile.php:488
+#: src/Module/Contact/Profile.php:521
msgid "Toggle Ignored status"
msgstr "Превключване игнорирани статус"
-#: src/Module/Contact/Profile.php:496
+#: src/Module/Contact/Profile.php:529
msgid "Toggle Collapsed status"
msgstr ""
-#: src/Module/Contact/Profile.php:503 src/Module/Contact/Revoke.php:106
+#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106
msgid "Revoke Follow"
msgstr ""
-#: src/Module/Contact/Profile.php:505
+#: src/Module/Contact/Profile.php:538
msgid "Revoke the follow from this contact"
msgstr ""
@@ -6179,10 +6641,6 @@ msgstr ""
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 ""
@@ -6230,103 +6688,55 @@ msgstr ""
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr ""
-#: src/Module/Conversation/Community.php:74
+#: 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/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:87
-msgid "Local Community"
-msgstr ""
-
-#: src/Module/Conversation/Community.php:90
-msgid "Posts from local users on this server"
-msgstr ""
-
-#: src/Module/Conversation/Community.php:98
-msgid "Global Community"
-msgstr ""
-
-#: src/Module/Conversation/Community.php:101
-msgid "Posts from users of the whole federated network"
-msgstr ""
-
-#: 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 "Няма резултати."
-
-#: 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:175
-msgid "No such group"
-msgstr "Няма такава група"
+#: src/Module/Conversation/Network.php:218
+msgid "No such circle"
+msgstr ""
-#: src/Module/Conversation/Network.php:179
+#: src/Module/Conversation/Network.php:222
#, php-format
-msgid "Group: %s"
+msgid "Circle: %s"
msgstr ""
-#: src/Module/Conversation/Network.php:257
-msgid "Latest Activity"
+#: src/Module/Conversation/Network.php:317
+msgid "Network feed not available."
msgstr ""
-#: src/Module/Conversation/Network.php:260
-msgid "Sort by latest activity"
+#: src/Module/Conversation/Timeline.php:158
+msgid "Own Contacts"
msgstr ""
-#: src/Module/Conversation/Network.php:265
-msgid "Latest Posts"
+#: src/Module/Conversation/Timeline.php:162
+msgid "Include"
msgstr ""
-#: src/Module/Conversation/Network.php:268
-msgid "Sort by post received date"
+#: src/Module/Conversation/Timeline.php:163
+msgid "Hide"
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:236
-msgid "Personal"
-msgstr "Лично"
-
-#: src/Module/Conversation/Network.php:284
-msgid "Posts that mention or involve you"
-msgstr "Мнения, които споменават или включват"
-
-#: src/Module/Conversation/Network.php:289 src/Object/Post.php:356
-msgid "Starred"
-msgstr "Със звезда"
-
-#: src/Module/Conversation/Network.php:292
-msgid "Favourite Posts"
-msgstr "Любими Мнения"
-
#: src/Module/Credits.php:44
msgid "Credits"
msgstr ""
@@ -6543,7 +6953,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:144
+#: src/Module/Settings/Profile/Index.php:177
msgid "You must be logged in to use this module"
msgstr ""
@@ -6672,138 +7082,58 @@ msgstr "Предлагане на приятели"
msgid "Suggest a friend for %s"
msgstr "Предлагане на приятел за %s"
-#: src/Module/Friendica.php:64
+#: src/Module/Friendica.php:82
msgid "Installed addons/apps:"
msgstr ""
-#: src/Module/Friendica.php:69
+#: src/Module/Friendica.php:87
msgid "No installed addons/apps"
msgstr ""
-#: src/Module/Friendica.php:74
+#: src/Module/Friendica.php:92
#, php-format
msgid "Read about the Terms of Service of this node."
msgstr ""
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:99
msgid "On this server the following remote servers are blocked."
msgstr ""
-#: 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 ""
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:104
msgid "Download this list in CSV format"
msgstr ""
-#: src/Module/Friendica.php:100
+#: 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:105
+#: src/Module/Friendica.php:123
msgid ""
"Please visit Friendi.ca to learn more "
"about the Friendica project."
msgstr ""
-#: src/Module/Friendica.php:106
+#: src/Module/Friendica.php:124
msgid "Bug reports and issues: please visit"
msgstr "Доклади за грешки и проблеми: моля посетете"
-#: src/Module/Friendica.php:106
+#: src/Module/Friendica.php:124
msgid "the bugtracker at github"
msgstr ""
-#: src/Module/Friendica.php:107
+#: 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 "Няма профил"
@@ -7095,30 +7425,26 @@ 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/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 ""
@@ -7157,37 +7483,30 @@ msgstr "Файлове"
msgid "Upload"
msgstr "Качете в Мрежата "
-#: src/Module/Media/Attachment/Upload.php:99
+#: 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:99
+#: src/Module/Media/Attachment/Upload.php:97
msgid "Or - did you try to upload an empty file?"
msgstr ""
-#: src/Module/Media/Attachment/Upload.php:106
+#: src/Module/Media/Attachment/Upload.php:104
#, php-format
msgid "File exceeds size limit of %s"
msgstr ""
-#: src/Module/Media/Attachment/Upload.php:116
+#: src/Module/Media/Attachment/Upload.php:114
msgid "File upload failed."
msgstr "Файл за качване не успя."
-#: src/Module/Media/Photo/Upload.php:154 src/Module/Media/Photo/Upload.php:155
+#: 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:188 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/Media/Photo/Upload.php:206 src/Module/Profile/Photos.php:243
+#: 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 неуспешно."
@@ -7220,40 +7539,40 @@ msgstr ""
msgid "List of pending user deletions"
msgstr ""
-#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:491
+#: 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:498
+#: 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:505
-msgid "Public Forum"
+#: 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:512
+#: 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 Forum"
+msgid "Private Group"
msgstr ""
-#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:463
+#: 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:470
+#: 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:477
+#: 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:484
-msgid "Community Forum"
+#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485
+msgid "Community Group"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:130
@@ -7310,6 +7629,7 @@ msgid "Block New Remote Contact"
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:122
+#: src/Module/Moderation/Reports.php:95
msgid "Photo"
msgstr ""
@@ -7383,6 +7703,8 @@ 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 ""
@@ -7665,6 +7987,237 @@ msgstr ""
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 "Нормално профил"
@@ -7674,7 +8227,7 @@ msgid "Automatic Follower Account"
msgstr ""
#: src/Module/Moderation/Summary.php:55
-msgid "Public Forum Account"
+msgid "Public Group Account"
msgstr ""
#: src/Module/Moderation/Summary.php:56
@@ -7686,7 +8239,7 @@ msgid "Blog Account"
msgstr ""
#: src/Module/Moderation/Summary.php:58
-msgid "Private Forum Account"
+msgid "Private Group Account"
msgstr ""
#: src/Module/Moderation/Summary.php:78
@@ -7829,19 +8382,19 @@ msgstr ""
msgid "Add User"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:70
msgid "Name of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:71
msgid "Nickname"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:71
msgid "Nickname of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:73
+#: src/Module/Moderation/Users/Create.php:72
msgid "Email address of the new user."
msgstr ""
@@ -7987,11 +8540,11 @@ msgstr "Начало Известия"
msgid "Show unread"
msgstr ""
-#: src/Module/Notifications/Ping.php:245
+#: src/Module/Notifications/Ping.php:246
msgid "{0} requested registration"
msgstr "{0} исканата регистрация"
-#: src/Module/Notifications/Ping.php:254
+#: src/Module/Notifications/Ping.php:255
#, php-format
msgid "{0} and %d others requested registration"
msgstr ""
@@ -8010,7 +8563,7 @@ msgstr "Искате ли да се разреши това приложение
msgid "Unsupported or missing response type"
msgstr ""
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:77
+#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78
msgid "Incomplete request data"
msgstr ""
@@ -8021,11 +8574,11 @@ 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:104
+#: src/Module/OAuth/Token.php:108
msgid "Unsupported or missing grant type"
msgstr ""
@@ -8094,67 +8647,77 @@ msgstr ""
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: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 ""
-#: 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: %sCustom fields appear on your profile page.
\n" "\t\t\t\tYou can use BBCodes in the field values.
\n" "\t\t\t\tReorder by dragging the field title.
\n" "\t\t\t\tEmpty the label field to remove a custom field.
\n" -"\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.
" +"\t\t\t\tNon-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 "Адрес:" + +#: 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 @@ -9984,6 +10599,42 @@ msgstr "Това ще премахне изцяло сметката си. Сл 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 @@ -10305,20 +10956,41 @@ msgid "" " 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 "Not Found" +msgid "" +"This node has blocked the top-level author or the author of the shared post." msgstr "" #: src/Module/Special/DisplayNotFound.php:38 msgid "" -"Unfortunately, the requested conversation isn't available to you.
\n" -"Possible reasons include:
\n" -"Custom fields appear on your profile page.
\n" "\t\t\t\tYou can use BBCodes in the field values.
\n" "\t\t\t\tReorder by dragging the field title.
\n" "\t\t\t\tEmpty the label field to remove a custom field.
\n" -"\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.
" +"\t\t\t\tNon-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 @@ -10121,6 +10600,42 @@ msgstr "Això eliminarà per complet el seu compte. Quan s'hagi fet això, no se 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 @@ -10442,20 +10957,41 @@ msgid "" " 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 "Not Found" +msgid "" +"This node has blocked the top-level author or the author of the shared post." msgstr "" #: src/Module/Special/DisplayNotFound.php:38 msgid "" -"Unfortunately, the requested conversation isn't available to you.
\n" -"Possible reasons include:
\n" -"Custom fields appear on your profile page.
\n" "\t\t\t\tYou can use BBCodes in the field values.
\n" "\t\t\t\tReorder by dragging the field title.
\n" "\t\t\t\tEmpty the label field to remove a custom field.
\n" -"\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.
" +"\t\t\t\tNon-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 @@ -10235,6 +10716,42 @@ msgstr "Tímto bude kompletně odstraněn váš účet. Jakmile bude účet odst 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 @@ -10556,20 +11073,41 @@ msgid "" " 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 "Not Found" +msgid "" +"This node has blocked the top-level author or the author of the shared post." msgstr "" #: src/Module/Special/DisplayNotFound.php:38 msgid "" -"Unfortunately, the requested conversation isn't available to you.
\n" -"Possible reasons include:
\n" -"debug.store_source
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 melden Sie sich 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 geben Sie unten die Kontaktadresse oder Profil-URL ein, über die Sie 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ählen Sie unten die Kategorie für Ihren 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 Sie 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. Sie können 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 geben Sie im Folgenden an, warum Sie diese Meldung eingereicht haben. Je mehr Details Sie angeben, 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 geben Sie alle zusätzlichen Informationen an, die für diesen Bericht relevant sind. Sie können 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ählen Sie unten die Instanzregeln aus, gegen die dieser Kontakt Ihrer 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ählen Sie optional Beiträge aus, die Sie an Ihren Bericht anhängen möchten."
+
+#: 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 "Sie können 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 Ihrer Netzwerkseite angezeigt, aber ihre Antworten können in Forenbeiträgen erscheinen. Sie können Ihnen 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 Ihrer Netzwerkseite, aber ihre Antworten können in Forumsthemen erscheinen, wobei ihr Inhalt standardmäßig eingeklappt ist. Sie können Ihnen nicht folgen, haben aber auf anderem Wege weiterhin Zugang zu Ihren ö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öchten Sie diesen Bericht an den Remote-Server weiterleiten?"
+
+#: src/Module/Moderation/Report/Create.php:330
+msgid "1. Pick a contact"
+msgstr "1. Wählen Sie einen Kontakt"
+
+#: src/Module/Moderation/Report/Create.php:331
+msgid "2. Pick a category"
+msgstr "2. Wählen Sie 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"
@@ -8158,11 +8594,11 @@ msgstr "Pinnwandbenachrichtigungen"
msgid "Show unread"
msgstr "Ungelesene anzeigen"
-#: src/Module/Notifications/Ping.php:245
+#: src/Module/Notifications/Ping.php:246
msgid "{0} requested registration"
msgstr "{0} möchte sich registrieren"
-#: src/Module/Notifications/Ping.php:254
+#: src/Module/Notifications/Ping.php:255
#, php-format
msgid "{0} and %d others requested registration"
msgstr "{0} und %d weitere möchten sich registrieren"
@@ -8181,7 +8617,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:77
+#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78
msgid "Incomplete request data"
msgstr "Daten der Anfrage sind nicht vollständig"
@@ -8192,11 +8628,11 @@ 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:82
+#: src/Module/OAuth/Token.php:83
msgid "Invalid data or unknown client"
msgstr "Ungültige Daten oder unbekannter Client"
-#: src/Module/OAuth/Token.php:104
+#: src/Module/OAuth/Token.php:108
msgid "Unsupported or missing grant type"
msgstr "Der Grant-Typ fehlt oder wird nicht unterstützt"
@@ -8321,21 +8757,21 @@ msgstr "Addressaten: %s
"
msgid "Attributed To: %s
"
msgstr "Zurückzuführen auf: %s
"
-#: src/Module/Photo.php:129
+#: src/Module/Photo.php:130
msgid "The Photo is not available."
msgstr "Das Foto ist nicht verfügbar."
-#: src/Module/Photo.php:154
+#: 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:191
+#: 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:193
+#: src/Module/Photo.php:194
#, php-format
msgid "Invalid photo with id %s."
msgstr "Fehlerhaftes Foto mit der ID %s."
@@ -8387,20 +8823,20 @@ msgstr "Keine Kontakte."
#: 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
+#: 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:1094 src/Protocol/OStatus.php:1012
+#: 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:1097 src/Protocol/OStatus.php:1016
+#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018
#, php-format
msgid "%s's comments"
msgstr "Kommentare von %s"
@@ -8445,7 +8881,7 @@ msgid ""
"class=\"btn btn-sm pull-right\">Cancel"
msgstr "Du betrachtest dein Profil gerade als %s Abbrechen"
-#: src/Module/Profile/Profile.php:167 src/Module/Settings/Account.php:575
+#: src/Module/Profile/Profile.php:167
msgid "Full Name:"
msgstr "Kompletter Name:"
@@ -8466,12 +8902,12 @@ msgid "Birthday:"
msgstr "Geburtstag:"
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
msgid "Age: "
msgstr "Alter: "
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -8479,7 +8915,7 @@ msgstr[0] "%d Jahr alt"
msgstr[1] "%d Jahre alt"
#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:246
+#: src/Module/Settings/Profile/Index.php:284
msgid "Description:"
msgstr "Beschreibung"
@@ -8655,7 +9091,7 @@ msgid "Please repeat your e-mail address:"
msgstr "Bitte wiederhole deine E-Mail Adresse"
#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:566
+#: src/Module/Settings/Account.php:567
msgid "New Password:"
msgstr "Neues Passwort:"
@@ -8664,7 +9100,7 @@ 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:101
-#: src/Module/Settings/Account.php:567
+#: src/Module/Settings/Account.php:568
msgid "Confirm:"
msgstr "Bestätigen:"
@@ -8882,24 +9318,24 @@ msgid "Update Password"
msgstr "Passwort aktualisieren"
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: src/Module/Settings/Account.php:569
msgid "Current Password:"
msgstr "Aktuelles Passwort:"
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: 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:100
-#: src/Module/Settings/Account.php:552
+#: 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 "Erlaube Zeichen sind a-z, A-Z, 0-9 und Sonderzeichen, abgesehen von Leerzeichen und akzentuierten Buchstaben."
#: src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:553
+#: 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."
@@ -9023,99 +9459,99 @@ msgstr "Ungültige E-Mail-Adresse."
msgid "Cannot change to that email."
msgstr "Ändern der E-Mail nicht möglich. "
-#: 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
+#: 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:363
+#: 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:382
+#: src/Module/Settings/Account.php:383
msgid "Importing Contacts done"
msgstr "Kontakte wurden importiert."
-#: src/Module/Settings/Account.php:395
+#: 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:412
+#: 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:454
+#: src/Module/Settings/Account.php:455
msgid "Personal Page Subtypes"
msgstr "Unterarten der persönlichen Seite"
-#: src/Module/Settings/Account.php:455
+#: src/Module/Settings/Account.php:456
msgid "Community Group Subtypes"
msgstr "Unterarten der Gemeinschaftsgruppen"
-#: src/Module/Settings/Account.php:465
+#: 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:472
+#: 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:479
+#: 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:486
+#: src/Module/Settings/Account.php:487
msgid "Account for community discussions."
msgstr "Konto für Diskussionsforen. "
-#: src/Module/Settings/Account.php:493
+#: 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:500
+#: 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:507
+#: src/Module/Settings/Account.php:508
msgid "Automatically approves all contact requests."
msgstr "Bestätigt alle Kontaktanfragen automatisch."
-#: src/Module/Settings/Account.php:514
+#: 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:519
+#: src/Module/Settings/Account.php:520
msgid "Private Group [Experimental]"
msgstr "Private Gruppe [experimentell]"
-#: src/Module/Settings/Account.php:521
+#: 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:530
+#: src/Module/Settings/Account.php:531
msgid "OpenID:"
msgstr "OpenID:"
-#: src/Module/Settings/Account.php:530
+#: 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:538
+#: 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:538
+#: src/Module/Settings/Account.php:539
#, php-format
msgid ""
"Your profile will be published in this node's local "
@@ -9123,133 +9559,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:544
+#: 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:557
+#: src/Module/Settings/Account.php:558
msgid "Account Settings"
msgstr "Kontoeinstellungen"
-#: src/Module/Settings/Account.php:558
+#: 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:565
+#: src/Module/Settings/Account.php:566
msgid "Password Settings"
msgstr "Passwort-Einstellungen"
-#: src/Module/Settings/Account.php:567
+#: 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:569
+#: src/Module/Settings/Account.php:570
msgid "Password:"
msgstr "Passwort:"
-#: 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 "Dein aktuelles Passwort um die Änderungen deiner E-Mail Adresse zu bestätigen"
-#: src/Module/Settings/Account.php:572
+#: src/Module/Settings/Account.php:573
msgid "Delete OpenID URL"
msgstr "OpenID URL löschen"
-#: src/Module/Settings/Account.php:574
+#: src/Module/Settings/Account.php:575
msgid "Basic Settings"
msgstr "Grundeinstellungen"
#: 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:577
+#: src/Module/Settings/Account.php:578
msgid "Your Timezone:"
msgstr "Deine Zeitzone:"
-#: src/Module/Settings/Account.php:578
+#: src/Module/Settings/Account.php:579
msgid "Your Language:"
msgstr "Deine Sprache:"
-#: 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 "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:579
+#: src/Module/Settings/Account.php:580
msgid "Default Post Location:"
msgstr "Standardstandort:"
-#: src/Module/Settings/Account.php:580
+#: src/Module/Settings/Account.php:581
msgid "Use Browser Location:"
msgstr "Standort des Browsers verwenden:"
-#: src/Module/Settings/Account.php:582
+#: src/Module/Settings/Account.php:583
msgid "Security and Privacy Settings"
msgstr "Sicherheits- und Privatsphäre-Einstellungen"
-#: src/Module/Settings/Account.php:584
+#: src/Module/Settings/Account.php:585
msgid "Maximum Friend Requests/Day:"
msgstr "Maximale Anzahl von Kontaktanfragen/Tag:"
-#: 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 "(um SPAM zu vermeiden)"
-#: src/Module/Settings/Account.php:586
+#: 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: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 "
"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:587
+#: 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: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 "Auf deiner Profilseite wird eine Liste deiner Kontakte angezeigt. Aktiviere diese Option wenn du das nicht möchtest."
-#: src/Module/Settings/Account.php:588
+#: 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:588
+#: 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 "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:589
+#: src/Module/Settings/Account.php:590
msgid "Make public posts unlisted"
msgstr "Öffentliche Beiträge nicht listen"
-#: 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 "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:590
+#: src/Module/Settings/Account.php:591
msgid "Make all posted pictures accessible"
msgstr "Alle geposteten Bilder zugreifbar machen"
-#: 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 "
@@ -9257,233 +9698,241 @@ 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:591
+#: 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: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 "Deine Kontakte können Beiträge auf deiner Pinnwand hinterlassen. Diese werden an deine Kontakte verteilt."
-#: src/Module/Settings/Account.php:592
+#: 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:592
+#: 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:593
+#: 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: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 "Nutzer des Friendica Netzwerks können dir private Nachrichten senden, selbst wenn sie nicht in deine Kontaktliste sind."
-#: src/Module/Settings/Account.php:594
+#: 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: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:600
+#: src/Module/Settings/Account.php:602
msgid "Expiration settings"
msgstr "Verfalls-Einstellungen"
-#: src/Module/Settings/Account.php:601
+#: 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:601
+#: 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:602
+#: src/Module/Settings/Account.php:604
msgid "Expire posts"
msgstr "Beiträge verfallen lassen"
-#: src/Module/Settings/Account.php:602
+#: 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:603
+#: src/Module/Settings/Account.php:605
msgid "Expire personal notes"
msgstr "Persönliche Notizen verfallen lassen"
-#: 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 "Ist dies aktiviert, werden persönliche Notizen auf deiner Pinnwand verfallen."
-#: src/Module/Settings/Account.php:604
+#: src/Module/Settings/Account.php:606
msgid "Expire starred posts"
msgstr "Markierte Beiträge verfallen lassen"
-#: 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 "Markierte Beiträge verfallen eigentlich nicht. Mit dieser Option kannst du sie verfallen lassen."
-#: src/Module/Settings/Account.php:605
+#: src/Module/Settings/Account.php:607
msgid "Only expire posts by others"
msgstr "Nur Beiträge anderer verfallen lassen."
-#: 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 "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:608
+#: src/Module/Settings/Account.php:610
msgid "Notification Settings"
msgstr "Benachrichtigungseinstellungen"
-#: src/Module/Settings/Account.php:609
+#: src/Module/Settings/Account.php:611
msgid "Send a notification email when:"
msgstr "Benachrichtigungs-E-Mail senden, wenn:"
-#: src/Module/Settings/Account.php:610
+#: src/Module/Settings/Account.php:612
msgid "You receive an introduction"
msgstr "– du eine Kontaktanfrage erhältst"
-#: src/Module/Settings/Account.php:611
+#: src/Module/Settings/Account.php:613
msgid "Your introductions are confirmed"
msgstr "– eine Deiner Kontaktanfragen akzeptiert wurde"
-#: src/Module/Settings/Account.php:612
+#: 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:613
+#: src/Module/Settings/Account.php:615
msgid "Someone writes a followup comment"
msgstr "– jemand auch einen Kommentar verfasst"
-#: src/Module/Settings/Account.php:614
+#: src/Module/Settings/Account.php:616
msgid "You receive a private message"
msgstr "– du eine private Nachricht erhältst"
-#: src/Module/Settings/Account.php:615
+#: src/Module/Settings/Account.php:617
msgid "You receive a friend suggestion"
msgstr "– du eine Empfehlung erhältst"
-#: src/Module/Settings/Account.php:616
+#: 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:618
+#: src/Module/Settings/Account.php:620
msgid "Create a desktop notification when:"
msgstr "Benachrichtigungen anzeigen wenn:"
-#: src/Module/Settings/Account.php:619
+#: src/Module/Settings/Account.php:621
msgid "Someone tagged you"
msgstr "Dich jemand erwähnt"
-#: src/Module/Settings/Account.php:620
+#: 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:621
+#: src/Module/Settings/Account.php:623
msgid "Someone liked your content"
msgstr "Einer deiner Beiträge gemocht wurde"
-#: src/Module/Settings/Account.php:621 src/Module/Settings/Account.php:622
+#: 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:622
+#: src/Module/Settings/Account.php:624
msgid "Someone shared your content"
msgstr "Einer deiner Beiträge geteilt wurde"
-#: src/Module/Settings/Account.php:623
+#: src/Module/Settings/Account.php:625
msgid "Someone commented in your thread"
msgstr "Jemand hat in deiner Unterhaltung kommentiert"
-#: src/Module/Settings/Account.php:624
+#: 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:625
+#: 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:627
+#: src/Module/Settings/Account.php:629
msgid "Activate desktop notifications"
msgstr "Desktop-Benachrichtigungen einschalten"
-#: src/Module/Settings/Account.php:627
+#: src/Module/Settings/Account.php:629
msgid "Show desktop popup on new notifications"
msgstr "Desktop-Benachrichtigungen einschalten"
-#: src/Module/Settings/Account.php:631
+#: src/Module/Settings/Account.php:633
msgid "Text-only notification emails"
msgstr "Benachrichtigungs-E-Mail als Rein-Text."
-#: src/Module/Settings/Account.php:633
+#: 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:637
+#: src/Module/Settings/Account.php:639
msgid "Show detailled notifications"
msgstr "Detaillierte Benachrichtigungen anzeigen"
-#: src/Module/Settings/Account.php:639
+#: 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:643
+#: src/Module/Settings/Account.php:645
msgid "Show notifications of ignored contacts"
msgstr "Zeige Benachrichtigungen von ignorierten Kontakten"
-#: src/Module/Settings/Account.php:645
+#: 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:648
+#: src/Module/Settings/Account.php:650
msgid "Advanced Account/Page Type Settings"
msgstr "Erweiterte Konto-/Seitentyp-Einstellungen"
-#: src/Module/Settings/Account.php:649
+#: 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:652
+#: src/Module/Settings/Account.php:654
msgid "Import Contacts"
msgstr "Kontakte Importieren"
-#: src/Module/Settings/Account.php:653
+#: 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:654
+#: src/Module/Settings/Account.php:656
msgid "Upload File"
msgstr "Datei hochladen"
-#: src/Module/Settings/Account.php:657
+#: src/Module/Settings/Account.php:659
msgid "Relocate"
msgstr "Umziehen"
-#: src/Module/Settings/Account.php:658
+#: 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:659
+#: src/Module/Settings/Account.php:661
msgid "Resend relocate message to contacts"
msgstr "Umzugsbenachrichtigung erneut an Kontakte senden"
@@ -9770,146 +10219,172 @@ msgstr "Hinzufügen"
msgid "No entries."
msgstr "Keine Einträge."
-#: src/Module/Settings/Display.php:137
+#: src/Module/Settings/Display.php:146
msgid "The theme you chose isn't available."
msgstr "Das gewählte Theme ist nicht verfügbar"
-#: src/Module/Settings/Display.php:177
+#: src/Module/Settings/Display.php:186
#, php-format
msgid "%s - (Unsupported)"
msgstr "%s - (Nicht unterstützt)"
-#: src/Module/Settings/Display.php:212
+#: src/Module/Settings/Display.php:221
msgid "No preview"
msgstr "Keine Vorschau"
-#: src/Module/Settings/Display.php:213
+#: src/Module/Settings/Display.php:222
msgid "No image"
msgstr "Kein Bild"
-#: src/Module/Settings/Display.php:214
+#: src/Module/Settings/Display.php:223
msgid "Small Image"
msgstr "Kleines Bild"
-#: src/Module/Settings/Display.php:215
+#: src/Module/Settings/Display.php:224
msgid "Large Image"
msgstr "Große Bilder"
-#: src/Module/Settings/Display.php:246
+#: src/Module/Settings/Display.php:259
msgid "Display Settings"
msgstr "Anzeige-Einstellungen"
-#: src/Module/Settings/Display.php:248
+#: src/Module/Settings/Display.php:261
msgid "General Theme Settings"
msgstr "Allgemeine Theme-Einstellungen"
-#: src/Module/Settings/Display.php:249
+#: src/Module/Settings/Display.php:262
msgid "Custom Theme Settings"
msgstr "Benutzerdefinierte Theme-Einstellungen"
-#: src/Module/Settings/Display.php:250
+#: src/Module/Settings/Display.php:263
msgid "Content Settings"
msgstr "Einstellungen zum Inhalt"
-#: src/Module/Settings/Display.php:251 view/theme/duepuntozero/config.php:86
+#: 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 "Theme-Einstellungen"
-#: src/Module/Settings/Display.php:257
+#: src/Module/Settings/Display.php:265
+msgid "Timelines"
+msgstr "Timelines"
+
+#: src/Module/Settings/Display.php:272
msgid "Display Theme:"
msgstr "Theme:"
-#: src/Module/Settings/Display.php:258
+#: src/Module/Settings/Display.php:273
msgid "Mobile Theme:"
msgstr "Mobiles Theme"
-#: src/Module/Settings/Display.php:261
+#: src/Module/Settings/Display.php:276
msgid "Number of items to display per page:"
msgstr "Zahl der Beiträge, die pro Netzwerkseite angezeigt werden sollen: "
-#: src/Module/Settings/Display.php:261 src/Module/Settings/Display.php:262
+#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277
msgid "Maximum of 100 items"
msgstr "Maximal 100 Beiträge"
-#: src/Module/Settings/Display.php:262
+#: src/Module/Settings/Display.php:277
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:263
+#: src/Module/Settings/Display.php:278
msgid "Update browser every xx seconds"
msgstr "Browser alle xx Sekunden aktualisieren"
-#: src/Module/Settings/Display.php:263
+#: src/Module/Settings/Display.php:278
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:264
+#: src/Module/Settings/Display.php:279
msgid "Display emoticons"
msgstr "Zeige Emoticons"
-#: src/Module/Settings/Display.php:264
+#: src/Module/Settings/Display.php:279
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:265
+#: src/Module/Settings/Display.php:280
msgid "Infinite scroll"
msgstr "Endloses Scrollen"
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:280
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:266
+#: src/Module/Settings/Display.php:281
msgid "Enable Smart Threading"
msgstr "Intelligentes Threading aktivieren"
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:281
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:267
+#: src/Module/Settings/Display.php:282
msgid "Display the Dislike feature"
msgstr "Das \"Nicht-mögen\" Feature anzeigen"
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:282
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:268
+#: src/Module/Settings/Display.php:283
msgid "Display the resharer"
msgstr "Teilenden anzeigen"
-#: src/Module/Settings/Display.php:268
+#: src/Module/Settings/Display.php:283
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:269
+#: src/Module/Settings/Display.php:284
msgid "Stay local"
msgstr "Bleib lokal"
-#: src/Module/Settings/Display.php:269
+#: src/Module/Settings/Display.php:284
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:270
+#: src/Module/Settings/Display.php:285
msgid "Link preview mode"
msgstr "Vorschau Modus für Links"
-#: src/Module/Settings/Display.php:270
+#: src/Module/Settings/Display.php:285
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:272
+#: src/Module/Settings/Display.php:287
+msgid "Timelines for the network page:"
+msgstr "Timelines für die Netzwerkseite:"
+
+#: src/Module/Settings/Display.php:287
+msgid "Select all the timelines that you want to see on your network page."
+msgstr "Wählen Sie alle Timelines aus, die Sie auf Ihrer Netzwerkseite sehen möchten."
+
+#: src/Module/Settings/Display.php:288
+msgid "Channel languages:"
+msgstr "Channel Spachen:"
+
+#: src/Module/Settings/Display.php:288
+msgid "Select all languages that you want to see in your channels."
+msgstr "Wählen Sie alle Sprachen aus, die Sie in Ihren Kanälen sehen möchten."
+
+#: src/Module/Settings/Display.php:290
msgid "Beginning of week:"
msgstr "Wochenbeginn:"
-#: src/Module/Settings/Display.php:273
+#: src/Module/Settings/Display.php:291
msgid "Default calendar view:"
msgstr "Standard-Kalenderansicht:"
+#: src/Module/Settings/Display.php:300 src/Module/Settings/Display.php:308
+#: src/Module/Settings/Display.php:312
+#, php-format
+msgid "%s: %s"
+msgstr "%s: %s"
+
#: src/Module/Settings/Features.php:74
msgid "Additional Features"
msgstr "Zusätzliche Features"
@@ -9922,147 +10397,85 @@ msgstr "Verbundene Programme"
msgid "Remove authorization"
msgstr "Autorisierung entziehen"
-#: src/Module/Settings/Profile/Index.php:84
-msgid "Profile Name is required."
-msgstr "Profilname ist erforderlich."
+#: src/Module/Settings/Profile/Index.php:116
+msgid "Display Name is required."
+msgstr "Der Anzeigename ist erforderlich."
-#: src/Module/Settings/Profile/Index.php:134
+#: 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:175
-#: src/Module/Settings/Profile/Index.php:195
+#: src/Module/Settings/Profile/Index.php:205
+#: src/Module/Settings/Profile/Index.php:226
msgid "Label:"
msgstr "Bezeichnung:"
-#: src/Module/Settings/Profile/Index.php:176
-#: src/Module/Settings/Profile/Index.php:196
+#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:227
msgid "Value:"
msgstr "Wert:"
-#: src/Module/Settings/Profile/Index.php:186
-#: src/Module/Settings/Profile/Index.php:206
+#: 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:187
-#: src/Module/Settings/Profile/Index.php:207
+#: 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:193
+#: src/Module/Settings/Profile/Index.php:224
msgid "Add a new profile field"
msgstr "Neues Profilfeld hinzufügen"
-#: src/Module/Settings/Profile/Index.php:216
+#: 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:218
+#: 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:228
+#: src/Module/Settings/Profile/Index.php:255
msgid "Profile Actions"
msgstr "Profilaktionen"
-#: src/Module/Settings/Profile/Index.php:229
+#: src/Module/Settings/Profile/Index.php:256
msgid "Edit Profile Details"
msgstr "Profil bearbeiten"
-#: src/Module/Settings/Profile/Index.php:231
+#: src/Module/Settings/Profile/Index.php:258
msgid "Change Profile Photo"
msgstr "Profilbild ändern"
-#: src/Module/Settings/Profile/Index.php:236
+#: src/Module/Settings/Profile/Index.php:261
msgid "Profile picture"
msgstr "Profilbild"
-#: src/Module/Settings/Profile/Index.php:237
+#: src/Module/Settings/Profile/Index.php:262
msgid "Location"
msgstr "Wohnort"
-#: src/Module/Settings/Profile/Index.php:238 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:239
+#: src/Module/Settings/Profile/Index.php:264
msgid "Custom Profile Fields"
msgstr "Benutzerdefinierte Profilfelder"
-#: src/Module/Settings/Profile/Index.php:241 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:245
-msgid "Display name:"
-msgstr "Anzeigename:"
-
-#: src/Module/Settings/Profile/Index.php:248
-msgid "Street Address:"
-msgstr "Adresse:"
-
-#: src/Module/Settings/Profile/Index.php:249
-msgid "Locality/City:"
-msgstr "Wohnort:"
-
-#: src/Module/Settings/Profile/Index.php:250
-msgid "Region/State:"
-msgstr "Region/Bundesstaat:"
-
-#: src/Module/Settings/Profile/Index.php:251
-msgid "Postal/Zip Code:"
-msgstr "Postleitzahl:"
-
-#: src/Module/Settings/Profile/Index.php:252
-msgid "Country:"
-msgstr "Land:"
-
-#: src/Module/Settings/Profile/Index.php:254
-msgid "XMPP (Jabber) address:"
-msgstr "XMPP (Jabber) Adresse"
-
-#: src/Module/Settings/Profile/Index.php:254
-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:255
-msgid "Matrix (Element) address:"
-msgstr "Matrix (Element) Adresse:"
-
-#: src/Module/Settings/Profile/Index.php:255
-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:256
-msgid "Homepage URL:"
-msgstr "Adresse der Homepage:"
-
-#: src/Module/Settings/Profile/Index.php:257
-msgid "Public Keywords:"
-msgstr "Öffentliche Schlüsselwörter:"
-
-#: src/Module/Settings/Profile/Index.php:257
-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:258
-msgid "Private Keywords:"
-msgstr "Private Schlüsselwörter:"
-
-#: src/Module/Settings/Profile/Index.php:258
-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:259
+#: src/Module/Settings/Profile/Index.php:266
#, php-format
msgid ""
"Custom fields appear on your profile page.
\n"
@@ -10072,6 +10485,64 @@ msgid ""
"\t\t\t\tNon-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\nBBCode kann verwendet werden
\nDie Reihenfolge der Felder kann durch Ziehen des Feld-Titels mit der Maus angepasst werden.
\nWird die Bezeichnung des Felds geleert, wird das Feld beim Speichern aus dem Profil entfernt.
\nNicht ö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
@@ -10182,6 +10653,42 @@ msgstr "Dein Konto wird endgültig gelöscht. Es gibt keine Möglichkeit, es wie
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öchten Sie diese Instanz ignorieren?"
+
+#: src/Module/Settings/Server/Action.php:64
+msgid "Do you want to unignore this server?"
+msgstr "Möchten Sie 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 finden Sie alle Remote-Server, gegen die Sie individuelle Moderationsmaßnahmen ergriffen haben. Eine Liste der Server, die Ihre Instanz blockiert hat, finden Sie auf der Informationseite ."
+
+#: src/Module/Settings/Server/Index.php:110
+msgid "Delete all your settings for the remote server"
+msgstr "Löschen Sie alle Ihre Einstellungen für die Remote-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
@@ -10503,21 +11010,42 @@ msgid ""
" 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/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 "Not Found"
-msgstr "Nicht gefunden"
+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 ""
-"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 "Leider ist die gewünschte Konversation für Sie nicht verfügbar.
\nMögliche Gründe sind::
\n\n\t- Der Beitrag der obersten Ebene ist nicht sichtbar,
\n\t- Der Beitrag der obersten Ebene wurde gelöscht.
\n\t- Die Instanz hat den Autor der obersten Ebene oder den Autor des freigegebenen Beitrags blockiert.
\n\t- Sie haben den Autor der obersten Ebene oder den Autor des freigegebenen Beitrags ignoriert oder blockiert.
\n
"
+"You have ignored or blocked the top-level author or the author of the shared"
+" post."
+msgstr "Sie haben 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 "Sie haben 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 Sie 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:"
@@ -10528,7 +11056,7 @@ msgstr "Stack trace:"
msgid "Exception thrown in %s:%d"
msgstr "Exception thrown in %s:%d"
-#: src/Module/Tos.php:57 src/Module/Tos.php:106
+#: 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"
@@ -10541,14 +11069,14 @@ 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:107
+#: 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:108
+#: 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"
@@ -10559,11 +11087,11 @@ msgid ""
"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:105
+#: src/Module/Tos.php:63 src/Module/Tos.php:106
msgid "Privacy Statement"
msgstr "Datenschutzerklärung"
-#: src/Module/Tos.php:102
+#: src/Module/Tos.php:103
msgid "Rules"
msgstr "Regeln"
@@ -10571,6 +11099,10 @@ msgstr "Regeln"
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/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."
@@ -11283,254 +11815,258 @@ 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:181
msgid "This entry was edited"
msgstr "Dieser Beitrag wurde bearbeitet."
-#: src/Object/Post.php:206
+#: src/Object/Post.php:209
msgid "Connector Message"
msgstr "Connector Nachricht"
-#: src/Object/Post.php:222 src/Object/Post.php:224
+#: src/Object/Post.php:225 src/Object/Post.php:227
msgid "Edit"
msgstr "Bearbeiten"
-#: src/Object/Post.php:248
+#: src/Object/Post.php:261
msgid "Delete globally"
msgstr "Global löschen"
-#: src/Object/Post.php:248
+#: src/Object/Post.php:261
msgid "Remove locally"
msgstr "Lokal entfernen"
-#: src/Object/Post.php:266
+#: src/Object/Post.php:268
#, php-format
msgid "Block %s"
msgstr "Blockiere %s"
-#: src/Object/Post.php:271
+#: src/Object/Post.php:273
#, php-format
msgid "Ignore %s"
msgstr "Ignoriere %s"
-#: src/Object/Post.php:276
+#: src/Object/Post.php:278
#, php-format
msgid "Collapse %s"
msgstr "Verberge %s"
-#: src/Object/Post.php:281
+#: src/Object/Post.php:282
+msgid "Report post"
+msgstr "Beitrag melden"
+
+#: src/Object/Post.php:293
msgid "Save to folder"
msgstr "In Ordner speichern"
-#: src/Object/Post.php:316
+#: src/Object/Post.php:333
msgid "I will attend"
msgstr "Ich werde teilnehmen"
-#: src/Object/Post.php:316
+#: src/Object/Post.php:333
msgid "I will not attend"
msgstr "Ich werde nicht teilnehmen"
-#: src/Object/Post.php:316
+#: src/Object/Post.php:333
msgid "I might attend"
msgstr "Ich werde eventuell teilnehmen"
-#: src/Object/Post.php:346
+#: src/Object/Post.php:363
msgid "Ignore thread"
msgstr "Thread ignorieren"
-#: src/Object/Post.php:347
+#: src/Object/Post.php:364
msgid "Unignore thread"
msgstr "Thread nicht mehr ignorieren"
-#: src/Object/Post.php:348
+#: src/Object/Post.php:365
msgid "Toggle ignore status"
msgstr "Ignoriert-Status ein-/ausschalten"
-#: src/Object/Post.php:358
+#: src/Object/Post.php:375
msgid "Add star"
msgstr "Markieren"
-#: src/Object/Post.php:359
+#: src/Object/Post.php:376
msgid "Remove star"
msgstr "Markierung entfernen"
-#: src/Object/Post.php:360
+#: src/Object/Post.php:377
msgid "Toggle star status"
msgstr "Markierung umschalten"
-#: src/Object/Post.php:371
+#: src/Object/Post.php:388
msgid "Pin"
msgstr "Anheften"
-#: src/Object/Post.php:372
+#: src/Object/Post.php:389
msgid "Unpin"
msgstr "Losmachen"
-#: src/Object/Post.php:373
+#: src/Object/Post.php:390
msgid "Toggle pin status"
msgstr "Angeheftet Status ändern"
-#: src/Object/Post.php:376
+#: src/Object/Post.php:393
msgid "Pinned"
msgstr "Angeheftet"
-#: src/Object/Post.php:381
+#: src/Object/Post.php:398
msgid "Add tag"
msgstr "Tag hinzufügen"
-#: src/Object/Post.php:394
+#: src/Object/Post.php:411
msgid "Quote share this"
msgstr "Teile und zitiere dies"
-#: src/Object/Post.php:394
+#: src/Object/Post.php:411
msgid "Quote Share"
msgstr "Zitat teilen"
-#: src/Object/Post.php:397
+#: src/Object/Post.php:414
msgid "Reshare this"
msgstr "Teile dies"
-#: src/Object/Post.php:397
+#: src/Object/Post.php:414
msgid "Reshare"
msgstr "Teilen"
-#: src/Object/Post.php:398
+#: src/Object/Post.php:415
msgid "Cancel your Reshare"
msgstr "Teilen aufheben"
-#: src/Object/Post.php:398
+#: src/Object/Post.php:415
msgid "Unshare"
msgstr "Nicht mehr teilen"
-#: src/Object/Post.php:449
+#: src/Object/Post.php:466
#, php-format
msgid "%s (Received %s)"
msgstr "%s (Empfangen %s)"
-#: src/Object/Post.php:454
+#: src/Object/Post.php:472
msgid "Comment this item on your system"
msgstr "Kommentiere diesen Beitrag von deinem System aus"
-#: src/Object/Post.php:454
+#: src/Object/Post.php:472
msgid "Remote comment"
msgstr "Entfernter Kommentar"
-#: src/Object/Post.php:475
+#: src/Object/Post.php:494
msgid "Share via ..."
msgstr "Teile mit..."
-#: src/Object/Post.php:475
+#: src/Object/Post.php:494
msgid "Share via external services"
msgstr "Teile mit einem externen Dienst"
-#: src/Object/Post.php:504
+#: src/Object/Post.php:523
msgid "to"
msgstr "zu"
-#: src/Object/Post.php:505
+#: src/Object/Post.php:524
msgid "via"
msgstr "via"
-#: src/Object/Post.php:506
+#: src/Object/Post.php:525
msgid "Wall-to-Wall"
msgstr "Wall-to-Wall"
-#: src/Object/Post.php:507
+#: src/Object/Post.php:526
msgid "via Wall-To-Wall:"
msgstr "via Wall-To-Wall:"
-#: src/Object/Post.php:552
+#: src/Object/Post.php:573
#, php-format
msgid "Reply to %s"
msgstr "Antworte %s"
-#: src/Object/Post.php:555
+#: src/Object/Post.php:576
msgid "More"
msgstr "Mehr"
-#: src/Object/Post.php:573
+#: src/Object/Post.php:595
msgid "Notifier task is pending"
msgstr "Die Benachrichtigungsaufgabe ist ausstehend"
-#: src/Object/Post.php:574
+#: src/Object/Post.php:596
msgid "Delivery to remote servers is pending"
msgstr "Die Auslieferung an Remote-Server steht noch aus"
-#: src/Object/Post.php:575
+#: src/Object/Post.php:597
msgid "Delivery to remote servers is underway"
msgstr "Die Auslieferung an Remote-Server ist unterwegs"
-#: src/Object/Post.php:576
+#: src/Object/Post.php:598
msgid "Delivery to remote servers is mostly done"
msgstr "Die Zustellung an Remote-Server ist fast erledigt"
-#: src/Object/Post.php:577
+#: src/Object/Post.php:599
msgid "Delivery to remote servers is done"
msgstr "Die Zustellung an die Remote-Server ist erledigt"
-#: src/Object/Post.php:597
+#: src/Object/Post.php:619
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%d Kommentar"
msgstr[1] "%d Kommentare"
-#: src/Object/Post.php:598
+#: src/Object/Post.php:620
msgid "Show more"
msgstr "Zeige mehr"
-#: src/Object/Post.php:599
+#: src/Object/Post.php:621
msgid "Show fewer"
msgstr "Zeige weniger"
-#: src/Object/Post.php:635
+#: src/Object/Post.php:657
#, php-format
msgid "Reshared by: %s"
msgstr "Geteilt von: %s"
-#: src/Object/Post.php:640
+#: src/Object/Post.php:662
#, php-format
msgid "Viewed by: %s"
msgstr "Gesehen von: %s"
-#: src/Object/Post.php:645
+#: src/Object/Post.php:667
#, php-format
msgid "Liked by: %s"
msgstr "Diese Menschen mögen das: %s"
-#: src/Object/Post.php:650
+#: src/Object/Post.php:672
#, php-format
msgid "Disliked by: %s"
msgstr "Unbeliebt bei: %s"
-#: src/Object/Post.php:655
+#: src/Object/Post.php:677
#, php-format
msgid "Attended by: %s"
msgstr "Besucht von: %s"
-#: src/Object/Post.php:660
+#: src/Object/Post.php:682
#, php-format
msgid "Maybe attended by: %s"
msgstr "Vielleicht besucht von: %s"
-#: src/Object/Post.php:665
+#: src/Object/Post.php:687
#, php-format
msgid "Not attended by: %s"
msgstr "Nicht besucht von: %s"
-#: src/Object/Post.php:670
+#: src/Object/Post.php:692
#, php-format
msgid "Reacted with %s by: %s"
msgstr "Reagierte mit %s von: %s"
@@ -11539,21 +12075,21 @@ msgstr "Reagierte mit %s von: %s"
msgid "(no subject)"
msgstr "(kein Betreff)"
-#: src/Protocol/OStatus.php:1388
+#: src/Protocol/OStatus.php:1390
#, php-format
msgid "%s is now following %s."
msgstr "%s folgt nun %s"
-#: src/Protocol/OStatus.php:1389
+#: src/Protocol/OStatus.php:1391
msgid "following"
msgstr "folgen"
-#: src/Protocol/OStatus.php:1392
+#: src/Protocol/OStatus.php:1394
#, php-format
msgid "%s stopped following %s."
msgstr "%s hat aufgehört %s, zu folgen"
-#: src/Protocol/OStatus.php:1393
+#: src/Protocol/OStatus.php:1395
msgid "stopped following"
msgstr "wird nicht mehr gefolgt"
diff --git a/view/lang/de/strings.php b/view/lang/de/strings.php
index f20617d0b2..57578a449a 100644
--- a/view/lang/de/strings.php
+++ b/view/lang/de/strings.php
@@ -199,6 +199,8 @@ $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.'] = 'Sie werden 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';
@@ -367,6 +369,7 @@ $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';
@@ -384,16 +387,11 @@ $a->strings['Public post'] = 'Öffentlicher Beitrag';
$a->strings['Message'] = 'Nachricht';
$a->strings['Browser'] = 'Browser';
$a->strings['Open Compose page'] = 'Composer Seite öffnen';
-$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['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.'] = 'Sie haben %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';
@@ -410,6 +408,40 @@ $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 Sie interagieren und die mit Ihnen 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 Ihren Followern, denen Sie nicht folgen';
+$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 Sie folgen ';
+$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.';
@@ -439,6 +471,7 @@ $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';
@@ -453,6 +486,7 @@ $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.';
@@ -570,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';
@@ -596,6 +632,9 @@ $a->strings['Matrix:'] = 'Matrix:';
$a->strings['Location:'] = 'Ort:';
$a->strings['Network:'] = 'Netzwerk:';
$a->strings['Unfollow'] = 'Entfolgen';
+$a->strings['Mention'] = 'Mention';
+$a->strings['Post to group'] = 'Beitrag an Gruppe';
+$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';
@@ -714,6 +753,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!';
@@ -761,13 +802,12 @@ $a->strings['Token is not authorized with a valid user or is missing a required
$a->strings['Internal Server Error'] = 'Interner Serverfehler';
$a->strings['Legacy module file not found: %s'] = 'Legacy-Moduldatei nicht gefunden: %s';
$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 Sie beabsichtigen, erstellen Sie bitte einen neuen Circle mit einem anderen Namen.';
-$a->strings['Default privacy circle for new contacts'] = 'Voreingestellter Circle für neue Kontakte';
$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 Cricle';
+$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';
@@ -1368,8 +1408,6 @@ $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.'] = '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.';
@@ -1440,6 +1478,9 @@ $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.'] = 'Sie haben keinen Zugriff zu den Moderationsseiten.';
+$a->strings['Submanaged account can\'t access the moderation pages. Please log back in as the main account.'] = 'Das unterverwaltete Konto kann nicht auf die Moderationsseiten zugreifen. Bitte melden Sie sich wieder mit dem Hauptkonto an.';
+$a->strings['Reports'] = 'Reports';
$a->strings['Users'] = 'Nutzer';
$a->strings['Tools'] = 'Werkzeuge';
$a->strings['Contact Blocklist'] = 'Kontakt Blockliste';
@@ -1465,6 +1506,7 @@ $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.';
@@ -1610,6 +1652,7 @@ $a->strings['You are mutual friends with %s'] = 'Du hast mit %s eine beidseitige
$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 Sie ignoriert haben.';
$a->strings['Never'] = 'Niemals';
$a->strings['(Update was not successful)'] = '(Aktualisierung war nicht erfolgreich)';
$a->strings['(Update was successful)'] = '(Aktualisierung war erfolgreich)';
@@ -1640,6 +1683,7 @@ $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';
@@ -1650,6 +1694,17 @@ $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 Sie vielleicht nur einige ihrer Beiträge sehen möchten. Oder Sie möchten deren Inhalte überhaupt nicht sehen, aber Sie möchten 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 Sie 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';
@@ -1668,29 +1723,17 @@ $a->strings['Unfollowing is currently not supported by your network.'] = 'Bei di
$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['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['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['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['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';
@@ -1854,7 +1897,6 @@ $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 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['Unable to follow this item.'] = 'Konnte dem Beitrag nicht folgen.';
$a->strings['System down for maintenance'] = 'System zur Wartung abgeschaltet';
@@ -1992,12 +2034,61 @@ $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['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 melden Sie sich 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 geben Sie unten die Kontaktadresse oder Profil-URL ein, über die Sie 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ählen Sie unten die Kategorie für Ihren 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 Sie 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. Sie können 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 geben Sie im Folgenden an, warum Sie diese Meldung eingereicht haben. Je mehr Details Sie angeben, 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 geben Sie alle zusätzlichen Informationen an, die für diesen Bericht relevant sind. Sie können 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ählen Sie unten die Instanzregeln aus, gegen die dieser Kontakt Ihrer 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ählen Sie optional Beiträge aus, die Sie an Ihren Bericht anhängen möchten.';
+$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:'] = 'Sie können 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 Ihrer Netzwerkseite angezeigt, aber ihre Antworten können in Forenbeiträgen erscheinen. Sie können Ihnen 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 Ihrer Netzwerkseite, aber ihre Antworten können in Forumsthemen erscheinen, wobei ihr Inhalt standardmäßig eingeklappt ist. Sie können Ihnen nicht folgen, haben aber auf anderem Wege weiterhin Zugang zu Ihren öffentlichen Beiträgen.';
+$a->strings['Forward report'] = 'Bericht weiterleiten';
+$a->strings['Would you ike to forward this report to the remote server?'] = 'Möchten Sie diesen Bericht an den Remote-Server weiterleiten?';
+$a->strings['1. Pick a contact'] = '1. Wählen Sie einen Kontakt';
+$a->strings['2. Pick a category'] = '2. Wählen Sie 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 Group Account'] = 'Öffentliches Gruppen-Konto';
@@ -2302,6 +2393,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:';
@@ -2312,7 +2404,7 @@ $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 public content from anonymous viewers'] = 'Verbirg die öffentliche Inhalte vor anonymen Besuchern';
@@ -2328,6 +2420,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:';
@@ -2445,6 +2539,7 @@ $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['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: ';
@@ -2466,12 +2561,17 @@ $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['Timelines for the network page:'] = 'Timelines für die Netzwerkseite:';
+$a->strings['Select all the timelines that you want to see on your network page.'] = 'Wählen Sie alle Timelines aus, die Sie auf Ihrer Netzwerkseite sehen möchten.';
+$a->strings['Channel languages:'] = 'Channel Spachen:';
+$a->strings['Select all languages that you want to see in your channels.'] = 'Wählen Sie alle Sprachen aus, die Sie in Ihren Kanälen sehen möchten.';
$a->strings['Beginning of week:'] = 'Wochenbeginn:';
$a->strings['Default calendar view:'] = 'Standard-Kalenderansicht:';
+$a->strings['%s: %s'] = '%s: %s';
$a->strings['Additional Features'] = 'Zusätzliche Features';
$a->strings['Connected Apps'] = 'Verbundene Programme';
$a->strings['Remove authorization'] = 'Autorisierung entziehen';
-$a->strings['Profile Name is required.'] = 'Profilname ist erforderlich.';
+$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:';
@@ -2488,7 +2588,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:';
@@ -2503,16 +2612,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 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['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';
@@ -2537,6 +2636,14 @@ $a->strings['Your user account has been successfully removed. Bye bye!'] = 'Dein
$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öchten Sie diese Instanz ignorieren?';
+$a->strings['Do you want to unignore this server?'] = 'Möchten Sie 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 finden Sie alle Remote-Server, gegen die Sie individuelle Moderationsmaßnahmen ergriffen haben. Eine Liste der Server, die Ihre Instanz blockiert hat, finden Sie auf der Informationseite .';
+$a->strings['Delete all your settings for the remote server'] = 'Löschen Sie alle Ihre Einstellungen für die Remote-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.';
@@ -2631,22 +2738,14 @@ $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['Not Found'] = 'Nicht gefunden';
-$a->strings['Unfortunately, the requested conversation isn\'t available to you.
-Possible reasons include:
-
- - The top-level post isn\'t visible.
- - The top-level post was deleted.
- - The node has blocked the top-level author or the author of the shared post.
- - You have ignored or blocked the top-level author or the author of the shared post.
-
'] = 'Leider ist die gewünschte Konversation für Sie nicht verfügbar.
-Mögliche Gründe sind::
-
- - Der Beitrag der obersten Ebene ist nicht sichtbar,
- - Der Beitrag der obersten Ebene wurde gelöscht.
- - Die Instanz hat den Autor der obersten Ebene oder den Autor des freigegebenen Beitrags blockiert.
- - Sie haben den Autor der obersten Ebene oder den Autor des freigegebenen Beitrags ignoriert oder blockiert.
-
';
+$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.'] = 'Sie haben 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.'] = 'Sie haben 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 Sie 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.
@@ -2656,6 +2755,7 @@ $a->strings['At any point in time a logged in user can export their account data
$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['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.';
@@ -2811,6 +2911,7 @@ $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';
diff --git a/view/lang/eo/messages.po b/view/lang/eo/messages.po
index 2d90954fa4..04b2f06ccf 100644
--- a/view/lang/eo/messages.po
+++ b/view/lang/eo/messages.po
@@ -11,7 +11,7 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-18 20:49+0000\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"
@@ -21,46 +21,46 @@ msgstr ""
"Language: eo\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: mod/item.php:102 mod/item.php:105 mod/item.php:171 mod/item.php:174
+#: 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:139
+#: mod/item.php:138
msgid "Post updated."
msgstr ""
-#: mod/item.php:204 mod/item.php:208
+#: mod/item.php:203 mod/item.php:207
msgid "Item wasn't stored."
msgstr ""
-#: mod/item.php:218
+#: mod/item.php:217
msgid "Item couldn't be fetched."
msgstr ""
-#: mod/item.php:256 mod/item.php:260
+#: mod/item.php:255 mod/item.php:259
msgid "Empty post discarded."
msgstr "Forviŝis malplenan afiŝon."
-#: mod/item.php:412 src/Module/Admin/Themes/Details.php:39
+#: 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:436 mod/message.php:69 mod/message.php:114 mod/notes.php:45
-#: mod/photos.php:152 mod/photos.php:669 src/Model/Event.php:522
-#: src/Module/Attach.php:55 src/Module/BaseApi.php:95
-#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:52
+#: 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/Contact/Advanced.php:60 src/Module/Contact/Follow.php:86
-#: src/Module/Contact/Follow.php:159 src/Module/Contact/MatchInterests.php:86
+#: 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/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/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
@@ -70,9 +70,9 @@ msgstr "Elemento ne estas trovita."
#: 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:69
-#: src/Module/Settings/Display.php:69 src/Module/Settings/Display.php:151
+#: 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
@@ -150,7 +150,7 @@ msgid ""
"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:161
+#: mod/lostpass.php:130 src/Module/Security/Login.php:160
msgid "Nickname or Email: "
msgstr "Salutnomo aŭ retpoŝtadreso: "
@@ -158,7 +158,7 @@ msgstr "Salutnomo aŭ retpoŝtadreso: "
msgid "Reset"
msgstr "Repari"
-#: mod/lostpass.php:146 src/Module/Security/Login.php:173
+#: mod/lostpass.php:146 src/Module/Security/Login.php:172
msgid "Password Reset"
msgstr "Pasvorta riparado"
@@ -218,90 +218,90 @@ msgstr ""
msgid "Your password has been changed at %s"
msgstr ""
-#: mod/message.php:46 mod/message.php:129 src/Content/Nav.php:321
+#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321
msgid "New Message"
msgstr "Nova Mesaĝo"
-#: 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 "Neniom da ricevontoj."
-#: mod/message.php:88
+#: mod/message.php:87
msgid "Unable to locate contact information."
msgstr "Ne eblas trovi kontaktajn informojn."
-#: 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 "Ne povas sendi la mesaĝon."
-#: 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 "Malsukcese provis kolekti mesaĝojn."
-#: 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 "Forviŝi"
-#: mod/message.php:136 src/Content/Nav.php:318 view/theme/frio/theme.php:241
+#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Messages"
msgstr "Mesaĝoj"
-#: 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 "Bonvolu entajpu adreson de ligilo:"
-#: 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 "Sendi Privatan Mesaĝon"
-#: mod/message.php:193 mod/message.php:349
+#: mod/message.php:191 mod/message.php:346
msgid "To:"
msgstr "Al:"
-#: mod/message.php:194 mod/message.php:350
+#: mod/message.php:192 mod/message.php:347
msgid "Subject:"
msgstr "Temo:"
-#: 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 "Via mesaĝo:"
-#: mod/message.php:201 mod/message.php:357 src/Content/Conversation.php:352
-#: src/Module/Post/Edit.php:128
+#: 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:202 mod/message.php:358 src/Module/Post/Edit.php:132
-#: src/Module/Profile/UnkMail.php:154
+#: 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:203 mod/message.php:360 mod/photos.php:1291
-#: src/Content/Conversation.php:381 src/Content/Conversation.php:727
-#: src/Module/Item/Compose.php:204 src/Module/Post/Edit.php:142
-#: src/Module/Profile/UnkMail.php:155 src/Object/Post.php:545
+#: 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:204 mod/message.php:359 mod/photos.php:702
-#: mod/photos.php:819 mod/photos.php:1097 mod/photos.php:1138
-#: mod/photos.php:1194 mod/photos.php:1268
+#: 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:340
+#: 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
@@ -309,59 +309,64 @@ msgstr "Bonvolu atendi"
#: 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:156
-#: src/Module/Settings/Profile/Index.php:231 src/Object/Post.php:1058
+#: 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:225
+#: mod/message.php:223
msgid "No messages."
msgstr "Neniom da mesaĝoj."
-#: mod/message.php:281
+#: mod/message.php:279
msgid "Message not available."
msgstr "Mesaĝo nedisponebla."
-#: mod/message.php:326
+#: mod/message.php:323
msgid "Delete message"
msgstr "Forviŝu mesaĝon"
-#: 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 "Forviŝi dialogon"
-#: 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 "Sekura komunikado ne disponeblas. Vi eble povus respondi sur la profilpaĝo de la sendanto."
-#: mod/message.php:348
+#: mod/message.php:345
msgid "Send Reply"
msgstr "Respondi"
-#: mod/message.php:430
+#: mod/message.php:427
#, php-format
msgid "Unknown sender - %s"
msgstr "Nekonata sendanto - %s"
-#: mod/message.php:432
+#: mod/message.php:429
#, php-format
msgid "You and %s"
msgstr "Vi kaj %s"
-#: mod/message.php:434
+#: mod/message.php:431
#, php-format
msgid "%s and You"
msgstr "%s kaj vi"
-#: mod/message.php:462
+#: mod/message.php:459
#, php-format
msgid "%d message"
msgid_plural "%d messages"
@@ -376,14 +381,14 @@ msgstr "Personaj Notoj"
msgid "Personal notes are visible only by yourself."
msgstr ""
-#: mod/notes.php:57 src/Content/Text/HTML.php:884
+#: 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:126
+#: src/Module/Post/Edit.php:129
msgid "Save"
msgstr "Konservi"
-#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:577
-#: src/Model/Event.php:514 src/Model/Profile.php:234
+#: 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
@@ -395,22 +400,22 @@ msgid "User not found."
msgstr ""
#: mod/photos.php:106 src/Module/BaseProfile.php:68
-#: src/Module/Profile/Photos.php:399
+#: src/Module/Profile/Photos.php:379
msgid "Photo Albums"
msgstr "Bildalbumoj"
-#: mod/photos.php:107 src/Module/Profile/Photos.php:400
-#: src/Module/Profile/Photos.php:420
+#: 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:867 src/Module/Profile/Photos.php:402
-#: src/Module/Profile/Photos.php:422
+#: 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:74
-#: src/Module/Profile/Photos.php:383
+#: mod/photos.php:121 src/Module/BaseSettings.php:72
+#: src/Module/Profile/Photos.php:363
msgid "everybody"
msgstr "ĉiuj"
@@ -422,239 +427,241 @@ msgstr "Kontaktoj informoj ne disponeblas"
msgid "Album not found."
msgstr "Albumo ne trovita."
-#: mod/photos.php:242
+#: mod/photos.php:244
msgid "Album successfully deleted"
msgstr ""
-#: mod/photos.php:244
+#: mod/photos.php:246
msgid "Album was empty."
msgstr ""
-#: mod/photos.php:276
+#: mod/photos.php:277
msgid "Failed to delete the photo."
msgstr ""
-#: mod/photos.php:544
+#: mod/photos.php:545
msgid "a photo"
msgstr ""
-#: mod/photos.php:544
+#: mod/photos.php:545
#, php-format
msgid "%1$s was tagged in %2$s by %3$s"
msgstr ""
-#: mod/photos.php:581 src/Module/Conversation/Community.php:188
-#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:315
+#: 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:586
+#: mod/photos.php:587
msgid "No photos selected"
msgstr "Neniu bildoj elektita"
-#: mod/photos.php:718
+#: mod/photos.php:721
#, php-format
msgid "The maximum accepted image size is %s"
msgstr ""
-#: mod/photos.php:725
+#: mod/photos.php:728
msgid "Upload Photos"
msgstr "Alŝuti bildojn"
-#: mod/photos.php:729 mod/photos.php:815
+#: mod/photos.php:732 mod/photos.php:820
msgid "New album name: "
msgstr "Nomo por nova albumo:"
-#: mod/photos.php:730
+#: mod/photos.php:733
msgid "or select existing album:"
msgstr ""
-#: mod/photos.php:731
+#: 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:733 mod/photos.php:1093 src/Content/Conversation.php:383
-#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:179
+#: 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:796
+#: mod/photos.php:801
msgid "Do you really want to delete this photo album and all its photos?"
msgstr ""
-#: mod/photos.php:797 mod/photos.php:820
+#: mod/photos.php:802 mod/photos.php:825
msgid "Delete Album"
msgstr "Forviŝi albumon"
-#: mod/photos.php:798 mod/photos.php:899 src/Content/Conversation.php:399
-#: src/Module/Contact/Follow.php:172 src/Module/Contact/Revoke.php:109
+#: 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:164
+#: 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:824
+#: mod/photos.php:829
msgid "Edit Album"
msgstr "Redakti albumon"
-#: mod/photos.php:825
+#: mod/photos.php:830
msgid "Drop Album"
msgstr ""
-#: mod/photos.php:829
+#: mod/photos.php:834
msgid "Show Newest First"
msgstr ""
-#: mod/photos.php:831
+#: mod/photos.php:836
msgid "Show Oldest First"
msgstr ""
-#: mod/photos.php:852 src/Module/Profile/Photos.php:370
+#: mod/photos.php:857 src/Module/Profile/Photos.php:350
msgid "View Photo"
msgstr "Vidi bildon"
-#: mod/photos.php:885
+#: 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:887
+#: mod/photos.php:891
msgid "Photo not available"
msgstr "La bildo ne disponeblas"
-#: mod/photos.php:897
+#: mod/photos.php:901
msgid "Do you really want to delete this photo?"
msgstr ""
-#: mod/photos.php:898 mod/photos.php:1098
+#: mod/photos.php:902 mod/photos.php:1102
msgid "Delete Photo"
msgstr "Forviŝi bildon"
-#: mod/photos.php:996
+#: mod/photos.php:1000
msgid "View photo"
msgstr "Vidi bildon"
-#: mod/photos.php:998
+#: mod/photos.php:1002
msgid "Edit photo"
msgstr "Redakti bildon"
-#: mod/photos.php:999
+#: mod/photos.php:1003
msgid "Delete photo"
msgstr ""
-#: mod/photos.php:1000
+#: mod/photos.php:1004
msgid "Use as profile photo"
msgstr "Uzi kiel profilbildo"
-#: mod/photos.php:1007
+#: mod/photos.php:1011
msgid "Private Photo"
msgstr ""
-#: mod/photos.php:1013
+#: mod/photos.php:1017
msgid "View Full Size"
msgstr "Vidi plengrande "
-#: mod/photos.php:1066
+#: mod/photos.php:1070
msgid "Tags: "
msgstr "Markoj:"
-#: mod/photos.php:1069
+#: mod/photos.php:1073
msgid "[Select tags to remove]"
msgstr ""
-#: mod/photos.php:1084
+#: mod/photos.php:1088
msgid "New album name"
msgstr "Nova nomo de albumo"
-#: mod/photos.php:1085
+#: mod/photos.php:1089
msgid "Caption"
msgstr "Apudskribo"
-#: mod/photos.php:1086
+#: mod/photos.php:1090
msgid "Add a Tag"
msgstr "Aldoni markon"
-#: mod/photos.php:1086
+#: 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:1087
+#: mod/photos.php:1091
msgid "Do not rotate"
msgstr ""
-#: mod/photos.php:1088
+#: mod/photos.php:1092
msgid "Rotate CW (right)"
msgstr "Turni horloĝdirekte (dekstren)"
-#: mod/photos.php:1089
+#: mod/photos.php:1093
msgid "Rotate CCW (left)"
msgstr "Turni kontraŭhorloĝdirekte (maldekstren)"
-#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1265
-#: src/Module/Contact.php:589 src/Module/Item/Compose.php:188
-#: src/Object/Post.php:1055
+#: 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:1137 mod/photos.php:1193 mod/photos.php:1267
-#: src/Object/Post.php:539 src/Object/Post.php:1057
+#: 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:1139 mod/photos.php:1195 mod/photos.php:1269
-#: src/Content/Conversation.php:396 src/Module/Calendar/Event/Form.php:248
-#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:162
-#: src/Object/Post.php:1069
+#: 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:1140 src/Content/Conversation.php:351
-#: src/Module/Post/Edit.php:127 src/Object/Post.php:1059
+#: 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:1226 src/Content/Conversation.php:643
-#: src/Object/Post.php:256
+#: mod/photos.php:1236 src/Content/Conversation.php:1464
+#: src/Object/Post.php:260
msgid "Select"
msgstr "Elekti"
-#: mod/photos.php:1227 src/Content/Conversation.php:644
+#: 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:241
+#: src/Module/Settings/Connectors.php:244
+#: src/Module/Settings/Server/Index.php:109
msgid "Delete"
msgstr "Forviŝi"
-#: mod/photos.php:1288 src/Object/Post.php:384
+#: mod/photos.php:1298 src/Object/Post.php:408
msgid "Like"
msgstr ""
-#: mod/photos.php:1289 src/Object/Post.php:384
+#: mod/photos.php:1299 src/Object/Post.php:408
msgid "I like this (toggle)"
msgstr "Mi ŝatas tion (ŝalti)"
-#: mod/photos.php:1290 src/Object/Post.php:385
+#: mod/photos.php:1300 src/Object/Post.php:409
msgid "Dislike"
msgstr ""
-#: mod/photos.php:1292 src/Object/Post.php:385
+#: 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:1314
+#: mod/photos.php:1324
msgid "Map"
msgstr ""
-#: src/App.php:470
+#: src/App.php:473
msgid "No system theme config value set."
msgstr ""
-#: src/App.php:574
+#: src/App.php:580
msgid "Apologies but the website is unavailable at the moment."
msgstr ""
@@ -674,7 +681,92 @@ msgid ""
"notifications."
msgstr ""
-#: src/App/Page.php:320
+#: 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 ""
@@ -691,33 +783,33 @@ msgstr "Paĝo ne trovita"
msgid "You must be logged in to use addons. "
msgstr ""
-#: src/BaseModule.php:400
+#: 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:427
+#: src/BaseModule.php:428
msgid "All contacts"
msgstr ""
-#: src/BaseModule.php:432 src/Content/Widget.php:235 src/Core/ACL.php:194
-#: src/Module/Contact.php:408 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:437 src/Content/Widget.php:236
-#: src/Module/Contact.php:409
+#: src/BaseModule.php:438 src/Content/Widget.php:240
+#: src/Module/Contact.php:418
msgid "Following"
msgstr ""
-#: src/BaseModule.php:442 src/Content/Widget.php:237
-#: src/Module/Contact.php:410
+#: src/BaseModule.php:443 src/Content/Widget.php:241
+#: src/Module/Contact.php:421
msgid "Mutual friends"
msgstr ""
-#: src/BaseModule.php:450
+#: src/BaseModule.php:451
msgid "Common"
msgstr ""
@@ -867,7 +959,7 @@ msgstr ""
msgid "Enter user nickname: "
msgstr ""
-#: src/Console/User.php:182 src/Model/User.php:662
+#: 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
@@ -978,7 +1070,7 @@ 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:73
+#: 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
@@ -1038,363 +1130,504 @@ 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:220
-#, php-format
-msgid "%s likes this."
-msgstr "%s ŝatas tiun."
-
-#: src/Content/Conversation.php:223
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s malŝatas tiun."
-
#: src/Content/Conversation.php:226
-#, php-format
-msgid "%s attends."
-msgstr ""
-
-#: src/Content/Conversation.php:229
-#, php-format
-msgid "%s doesn't attend."
-msgstr ""
-
-#: src/Content/Conversation.php:232
-#, php-format
-msgid "%s attends maybe."
-msgstr ""
-
-#: src/Content/Conversation.php:235 src/Content/Conversation.php:273
-#: src/Content/Conversation.php:887
-#, php-format
-msgid "%s reshared this."
-msgstr ""
-
-#: src/Content/Conversation.php:241
msgid "and"
msgstr "kaj"
-#: src/Content/Conversation.php:244
+#: src/Content/Conversation.php:229
#, php-format
msgid "and %d other people"
msgstr ""
-#: src/Content/Conversation.php:252
+#: src/Content/Conversation.php:235
#, php-format
-msgid " like this"
-msgstr ""
+msgid "%2$s likes this."
+msgid_plural "%2$s like this."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:253
+#: src/Content/Conversation.php:237
#, php-format
-msgid "%s like this."
-msgstr ""
+msgid "%2$s doesn't like this."
+msgid_plural "%2$s don't like this."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:256
+#: src/Content/Conversation.php:239
#, php-format
-msgid " don't like this"
-msgstr ""
+msgid "%2$s attends."
+msgid_plural "%2$s attend."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:257
+#: src/Content/Conversation.php:241
#, php-format
-msgid "%s don't like this."
-msgstr ""
+msgid "%2$s doesn't attend."
+msgid_plural "%2$s don't attend."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:260
+#: src/Content/Conversation.php:243
#, php-format
-msgid " attend"
-msgstr ""
+msgid "%2$s attends maybe."
+msgid_plural "%2$s attend maybe."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:261
+#: src/Content/Conversation.php:245
#, php-format
-msgid "%s attend."
-msgstr ""
+msgid "%2$s reshared this."
+msgid_plural "%2$s reshared this."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:264
+#: src/Content/Conversation.php:274
#, php-format
-msgid " don't attend"
-msgstr ""
+msgid " likes this"
+msgid_plural " like this"
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:265
+#: src/Content/Conversation.php:277
#, php-format
-msgid "%s don't attend."
-msgstr ""
+msgid " doesn't like this"
+msgid_plural " don't like this"
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:268
+#: src/Content/Conversation.php:280
#, php-format
-msgid " attend maybe"
-msgstr ""
+msgid " attends"
+msgid_plural " attend"
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:269
+#: src/Content/Conversation.php:283
#, php-format
-msgid "%s attend maybe."
-msgstr ""
+msgid " doesn't attend"
+msgid_plural " don't attend"
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:272
+#: src/Content/Conversation.php:286
#, php-format
-msgid " reshared this"
-msgstr ""
+msgid " attends maybe"
+msgid_plural " attend maybe"
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:320
+#: 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:321 src/Module/Item/Compose.php:198
-#: src/Object/Post.php:1068
+#: 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:322
+#: src/Content/Conversation.php:338
msgid "Tag term:"
msgstr "Markfrazo:"
-#: src/Content/Conversation.php:323 src/Module/Filer/SaveTag.php:73
+#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73
msgid "Save to Folder:"
msgstr "Konservi en Dosierujo:"
-#: src/Content/Conversation.php:324
+#: src/Content/Conversation.php:340
msgid "Where are you right now?"
msgstr "Kie vi estas nun?"
-#: src/Content/Conversation.php:325
+#: src/Content/Conversation.php:341
msgid "Delete item(s)?"
msgstr ""
-#: src/Content/Conversation.php:337 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:347
+#: src/Content/Conversation.php:363
msgid "New Post"
msgstr ""
-#: src/Content/Conversation.php:350
+#: src/Content/Conversation.php:366
msgid "Share"
msgstr "Kunhavigi"
-#: src/Content/Conversation.php:353 src/Module/Post/Edit.php:129
+#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132
msgid "upload photo"
msgstr "alŝuti bildon"
-#: src/Content/Conversation.php:354 src/Module/Post/Edit.php:130
+#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133
msgid "Attach file"
msgstr "Kunligi dosieron"
-#: src/Content/Conversation.php:355 src/Module/Post/Edit.php:131
+#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134
msgid "attach file"
msgstr "kunsendi dosieron"
-#: src/Content/Conversation.php:356 src/Module/Item/Compose.php:190
-#: src/Module/Post/Edit.php:168 src/Object/Post.php:1060
+#: 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:357 src/Module/Item/Compose.php:191
-#: src/Module/Post/Edit.php:169 src/Object/Post.php:1061
+#: 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:358 src/Module/Item/Compose.php:192
-#: src/Module/Post/Edit.php:170 src/Object/Post.php:1062
+#: 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:359 src/Module/Item/Compose.php:193
-#: src/Module/Post/Edit.php:171 src/Object/Post.php:1063
+#: 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:360 src/Module/Item/Compose.php:194
-#: src/Module/Post/Edit.php:172 src/Object/Post.php:1064
+#: 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:361 src/Module/Item/Compose.php:195
-#: src/Object/Post.php:1065
+#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197
+#: src/Object/Post.php:1104
msgid "Image"
msgstr "Bildo"
-#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:196
-#: src/Module/Post/Edit.php:173 src/Object/Post.php:1066
+#: 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:363 src/Module/Item/Compose.php:197
-#: src/Module/Post/Edit.php:174 src/Object/Post.php:1067
+#: 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:364
+#: src/Content/Conversation.php:382
msgid "Video"
msgstr ""
-#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:200
-#: src/Module/Post/Edit.php:138
+#: 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:366 src/Module/Post/Edit.php:139
+#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142
msgid "set location"
msgstr "agordi lokon"
-#: src/Content/Conversation.php:367 src/Module/Post/Edit.php:140
+#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143
msgid "Clear browser location"
msgstr "Forviŝu retesplorilan lokon"
-#: src/Content/Conversation.php:368 src/Module/Post/Edit.php:141
+#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144
msgid "clear location"
msgstr "forviŝi lokon"
-#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:205
-#: src/Module/Post/Edit.php:154
+#: 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:372 src/Module/Item/Compose.php:206
-#: src/Module/Post/Edit.php:156
+#: 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:377 src/Module/Item/Compose.php:222
+#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224
msgid "Scheduled at"
msgstr ""
-#: src/Content/Conversation.php:382 src/Module/Post/Edit.php:143
+#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146
msgid "Permission settings"
msgstr "Permesagordoj"
-#: src/Content/Conversation.php:392 src/Module/Post/Edit.php:152
+#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155
msgid "Public post"
msgstr "Publika afiŝo"
-#: src/Content/Conversation.php:406 src/Content/Widget/VCard.php:113
-#: src/Model/Profile.php:469 src/Module/Admin/Logs/View.php:93
-#: src/Module/Post/Edit.php:177
+#: 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:407 src/Module/Post/Edit.php:178
+#: 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:409 src/Module/Post/Edit.php:181
+#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185
msgid "Open Compose page"
msgstr ""
-#: src/Content/Conversation.php:671 src/Object/Post.php:243
-msgid "Pinned item"
-msgstr ""
-
-#: src/Content/Conversation.php:687 src/Object/Post.php:491
-#: src/Object/Post.php:492
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Vidi la profilon de %s ĉe %s"
-
-#: src/Content/Conversation.php:700 src/Object/Post.php:479
-msgid "Categories:"
-msgstr ""
-
-#: src/Content/Conversation.php:701 src/Object/Post.php:480
-msgid "Filed under:"
-msgstr ""
-
-#: src/Content/Conversation.php:709 src/Object/Post.php:505
-#, php-format
-msgid "%s from %s"
-msgstr "%s de %s"
-
-#: src/Content/Conversation.php:725
-msgid "View in context"
-msgstr "Vidi kun kunteksto"
-
-#: src/Content/Conversation.php:790
+#: src/Content/Conversation.php:595
msgid "remove"
msgstr "forviŝi"
-#: src/Content/Conversation.php:794
+#: src/Content/Conversation.php:599
msgid "Delete Selected Items"
msgstr "Forviŝi Elektitajn Elementojn"
-#: src/Content/Conversation.php:859 src/Content/Conversation.php:862
-#: src/Content/Conversation.php:865 src/Content/Conversation.php:868
+#: 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:871
+#: src/Content/Conversation.php:769
#, php-format
msgid "You are following %s."
msgstr ""
-#: src/Content/Conversation.php:874
+#: 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:889
+#: src/Content/Conversation.php:796
+#, php-format
+msgid "%s reshared this."
+msgstr ""
+
+#: src/Content/Conversation.php:798
msgid "Reshared"
msgstr ""
-#: src/Content/Conversation.php:889
+#: src/Content/Conversation.php:798
#, php-format
msgid "Reshared by %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:892
+#: src/Content/Conversation.php:801
#, php-format
msgid "%s is participating in this thread."
msgstr ""
-#: src/Content/Conversation.php:895
+#: src/Content/Conversation.php:804
msgid "Stored for general reasons"
msgstr ""
-#: src/Content/Conversation.php:898
+#: src/Content/Conversation.php:807
msgid "Global post"
msgstr ""
-#: src/Content/Conversation.php:901
+#: src/Content/Conversation.php:810
msgid "Sent via an relay server"
msgstr ""
-#: src/Content/Conversation.php:901
+#: src/Content/Conversation.php:810
#, php-format
msgid "Sent via the relay server %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:904
+#: src/Content/Conversation.php:813
msgid "Fetched"
msgstr ""
-#: src/Content/Conversation.php:904
+#: src/Content/Conversation.php:813
#, php-format
msgid "Fetched because of %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:907
+#: src/Content/Conversation.php:816
msgid "Stored because of a child post to complete this thread."
msgstr ""
-#: src/Content/Conversation.php:910
+#: src/Content/Conversation.php:819
msgid "Local delivery"
msgstr ""
-#: src/Content/Conversation.php:913
+#: src/Content/Conversation.php:822
msgid "Stored because of your activity (like, comment, star, ...)"
msgstr ""
-#: src/Content/Conversation.php:916
+#: src/Content/Conversation.php:825
msgid "Distributed"
msgstr ""
-#: src/Content/Conversation.php:919
+#: 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 ""
@@ -1424,12 +1657,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
@@ -1470,11 +1703,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
@@ -1507,127 +1740,137 @@ msgid ""
"Contact birthday events are private to you."
msgstr ""
-#: src/Content/ForumManager.php:151 src/Content/Nav.php:278
-#: src/Content/Text/HTML.php:905 src/Content/Widget.php:524
-msgid "Forums"
-msgstr "Forumoj"
+#: 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/ForumManager.php:153
-msgid "External link to forum"
-msgstr "Ekstera ligilo al forumo"
+#: src/Content/GroupManager.php:154
+msgid "External link to group"
+msgstr ""
-#: src/Content/ForumManager.php:156 src/Content/Widget.php:503
+#: 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 "montri pli"
-#: src/Content/Item.php:326 src/Model/Item.php:2900
+#: 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:329 src/Content/Item.php:339
+#: src/Content/Item.php:334 src/Content/Item.php:344
msgid "status"
msgstr "staton"
-#: src/Content/Item.php:335 src/Model/Item.php:2902
+#: 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:349 src/Module/Post/Tag/Add.php:141
+#: 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:419 view/theme/frio/theme.php:262
+#: src/Content/Item.php:428 view/theme/frio/theme.php:262
msgid "Follow Thread"
msgstr ""
-#: src/Content/Item.php:420 src/Model/Contact.php:1204
+#: src/Content/Item.php:429 src/Model/Contact.php:1227
msgid "View Status"
msgstr "Vidi Staton"
-#: src/Content/Item.php:421 src/Content/Item.php:440
-#: src/Model/Contact.php:1148 src/Model/Contact.php:1196
-#: src/Model/Contact.php:1205 src/Module/Directory.php:157
-#: src/Module/Settings/Profile/Index.php:234
+#: 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:422 src/Model/Contact.php:1206
+#: src/Content/Item.php:431 src/Model/Contact.php:1229
msgid "View Photos"
msgstr "Vidi Bildojn"
-#: src/Content/Item.php:423 src/Model/Contact.php:1197
-#: src/Model/Contact.php:1207
+#: 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:424 src/Model/Contact.php:1198
-#: src/Model/Contact.php:1208
+#: src/Content/Item.php:433 src/Model/Contact.php:1221
+#: src/Model/Contact.php:1231
msgid "View Contact"
msgstr ""
-#: src/Content/Item.php:425 src/Model/Contact.php:1209
+#: src/Content/Item.php:434 src/Model/Contact.php:1232
msgid "Send PM"
msgstr "Sendi PM"
-#: src/Content/Item.php:426 src/Module/Contact.php:440
-#: src/Module/Contact/Profile.php:478
+#: 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:427 src/Module/Contact.php:441
-#: src/Module/Contact/Profile.php:486
+#: 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:428 src/Module/Contact.php:442
-#: src/Module/Contact/Profile.php:494
+#: src/Content/Item.php:437 src/Module/Contact.php:470
+#: src/Module/Contact/Profile.php:527
msgid "Collapse"
msgstr ""
-#: src/Content/Item.php:432 src/Object/Post.php:460
+#: 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:437 src/Content/Widget.php:80
-#: src/Model/Contact.php:1199 src/Model/Contact.php:1210
-#: src/Module/Contact/Follow.php:166 view/theme/vier/theme.php:196
+#: 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:862
+#: src/Content/Item.php:882
msgid "Unable to fetch user."
msgstr ""
-#: src/Content/Nav.php:120
+#: src/Content/Nav.php:121
msgid "Nothing new here"
msgstr "Estas neniu nova ĉi tie"
-#: src/Content/Nav.php:124 src/Module/Special/HTTPException.php:77
+#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77
msgid "Go back"
msgstr ""
-#: src/Content/Nav.php:125
+#: src/Content/Nav.php:126
msgid "Clear notifications"
msgstr "Forigi atentigojn"
-#: src/Content/Nav.php:126 src/Content/Text/HTML.php:892
-msgid "@name, !forum, #tags, content"
-msgstr "@nomo, !forumo, #kradvorto, enhavo"
+#: 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:158
+#: src/Content/Nav.php:222 src/Module/Security/Login.php:157
msgid "Logout"
msgstr "Elsaluti"
@@ -1636,7 +1879,7 @@ msgid "End this session"
msgstr "Fini ĉi-tiun seancon"
#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44
-#: src/Module/Security/Login.php:159
+#: src/Module/Security/Login.php:158
msgid "Login"
msgstr "Ensaluti"
@@ -1645,7 +1888,7 @@ msgid "Sign in"
msgstr "Ensaluti"
#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57
-#: src/Module/Contact.php:484
+#: src/Module/Contact.php:512
msgid "Conversations"
msgstr ""
@@ -1654,8 +1897,8 @@ msgid "Conversations you started"
msgstr ""
#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49
-#: src/Module/BaseSettings.php:100 src/Module/Contact.php:476
-#: src/Module/Contact/Profile.php:393 src/Module/Profile/Profile.php:268
+#: 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"
@@ -1674,7 +1917,7 @@ 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:500
+#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528
#: view/theme/frio/theme.php:235
msgid "Media"
msgstr ""
@@ -1686,7 +1929,7 @@ 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:252 view/theme/frio/theme.php:236
+#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236
#: view/theme/frio/theme.php:240
msgid "Calendar"
msgstr ""
@@ -1707,7 +1950,7 @@ msgstr "Viaj propraj notoj"
msgid "Home"
msgstr "Hejmo"
-#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:74
+#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73
msgid "Home Page"
msgstr "Hejmpaĝo"
@@ -1724,7 +1967,7 @@ msgstr "Krei konton"
#: 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:241
+#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240
msgid "Help"
msgstr "Helpo"
@@ -1740,8 +1983,8 @@ msgstr "Programoj"
msgid "Addon applications, utilities, games"
msgstr "Kromprogramoj, utilaĵoj, ludiloj"
-#: src/Content/Nav.php:269 src/Content/Text/HTML.php:890
-#: 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 "Serĉi"
@@ -1749,19 +1992,19 @@ msgstr "Serĉi"
msgid "Search site content"
msgstr "Serĉu la retejon"
-#: src/Content/Nav.php:272 src/Content/Text/HTML.php:899
+#: 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:900
+#: 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:901 src/Module/BaseProfile.php:127
-#: src/Module/BaseProfile.php:130 src/Module/Contact.php:411
-#: src/Module/Contact.php:507 view/theme/frio/theme.php:243
+#: 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"
@@ -1792,7 +2035,7 @@ 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:100
+#: src/Module/Tos.php:101
msgid "Terms of Service"
msgstr ""
@@ -1829,7 +2072,7 @@ msgstr "Atentigoj"
msgid "See all notifications"
msgstr "Vidu ĉiujn atentigojn"
-#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:241
+#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244
msgid "Mark as seen"
msgstr "Marki kiel legita"
@@ -1858,7 +2101,7 @@ 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:170
+#: 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"
@@ -1879,13 +2122,13 @@ msgstr "Administrado"
msgid "Site setup and configuration"
msgstr "Agordoj pri la retejo"
-#: src/Content/Nav.php:335 src/Module/BaseModeration.php:127
+#: 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/Summary.php:76
+#: 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
@@ -1905,11 +2148,11 @@ msgstr ""
msgid "Site map"
msgstr "Reteja mapo"
-#: src/Content/OEmbed.php:317
+#: src/Content/OEmbed.php:316
msgid "Embedding disabled"
msgstr "Malŝaltita enigitado"
-#: src/Content/OEmbed.php:441
+#: src/Content/OEmbed.php:440
msgid "Embedded content"
msgstr "Enigita enhavo"
@@ -1929,51 +2172,51 @@ msgstr "sekvanta"
msgid "last"
msgstr "lasta"
-#: src/Content/Text/BBCode.php:949 src/Content/Text/BBCode.php:1811
-#: src/Content/Text/BBCode.php:1812
+#: 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:1166
+#: src/Content/Text/BBCode.php:914
#, php-format
msgid "%2$s %3$s"
msgstr ""
-#: src/Content/Text/BBCode.php:1191 src/Model/Item.php:3573
-#: src/Model/Item.php:3579 src/Model/Item.php:3580
+#: 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:1729 src/Content/Text/HTML.php:929
+#: 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:1760
+#: src/Content/Text/BBCode.php:1576
msgid "$1 wrote:"
msgstr "$1 skribis:"
-#: src/Content/Text/BBCode.php:1816 src/Content/Text/BBCode.php:1817
+#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642
msgid "Encrypted content"
msgstr ""
-#: src/Content/Text/BBCode.php:2044
+#: src/Content/Text/BBCode.php:1901
msgid "Invalid source protocol"
msgstr ""
-#: src/Content/Text/BBCode.php:2059
+#: src/Content/Text/BBCode.php:1920
msgid "Invalid link protocol"
msgstr ""
-#: src/Content/Text/HTML.php:807
+#: src/Content/Text/HTML.php:782
msgid "Loading more entries..."
msgstr ""
-#: src/Content/Text/HTML.php:808
+#: src/Content/Text/HTML.php:783
msgid "The end"
msgstr ""
-#: src/Content/Text/HTML.php:884 src/Content/Widget/VCard.php:109
-#: src/Model/Profile.php:463 src/Module/Contact/Profile.php:438
+#: 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 ""
@@ -2000,118 +2243,130 @@ msgid_plural "%d invitations available"
msgstr[0] "Disponeblas %d invito"
msgstr[1] "Disponeblas %d invitoj"
-#: src/Content/Widget.php:78 view/theme/vier/theme.php:194
+#: src/Content/Widget.php:78 view/theme/vier/theme.php:193
msgid "Find People"
msgstr "Trovi Homojn"
-#: src/Content/Widget.php:79 view/theme/vier/theme.php:195
+#: src/Content/Widget.php:79 view/theme/vier/theme.php:194
msgid "Enter name or interest"
msgstr "Entajpu nomon aŭ intereson"
-#: src/Content/Widget.php:81 view/theme/vier/theme.php:197
+#: src/Content/Widget.php:81 view/theme/vier/theme.php:196
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Ekzemple: Robert Morgenstein, Fishing"
-#: src/Content/Widget.php:82 src/Module/Contact.php:433
-#: src/Module/Directory.php:96 view/theme/vier/theme.php:198
+#: 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"
#: src/Content/Widget.php:83 src/Module/Contact/Suggestions.php:73
-#: view/theme/vier/theme.php:199
+#: view/theme/vier/theme.php:198
msgid "Friend Suggestions"
msgstr "Amikosugestoj"
-#: src/Content/Widget.php:84 view/theme/vier/theme.php:200
+#: src/Content/Widget.php:84 view/theme/vier/theme.php:199
msgid "Similar Interests"
msgstr "Similaj Interesoj"
-#: src/Content/Widget.php:85 view/theme/vier/theme.php:201
+#: src/Content/Widget.php:85 view/theme/vier/theme.php:200
msgid "Random Profile"
msgstr "Hazarda Profilo"
-#: src/Content/Widget.php:86 view/theme/vier/theme.php:202
+#: src/Content/Widget.php:86 view/theme/vier/theme.php:201
msgid "Invite Friends"
msgstr "Inviti amikojn"
#: src/Content/Widget.php:87 src/Module/Directory.php:88
-#: view/theme/vier/theme.php:203
+#: view/theme/vier/theme.php:202
msgid "Global Directory"
msgstr "Tutmonda Katalogo"
-#: src/Content/Widget.php:89 view/theme/vier/theme.php:205
+#: src/Content/Widget.php:89 view/theme/vier/theme.php:204
msgid "Local Directory"
msgstr "Loka Katalogo"
-#: src/Content/Widget.php:211 src/Model/Group.php:587
-#: src/Module/Contact.php:395 src/Module/Welcome.php:76
-msgid "Groups"
-msgstr "Grupoj"
+#: 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 ""
-#: 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 ""
-#: src/Content/Widget.php:244 src/Module/Contact.php:339
-#: src/Module/Group.php:291
+#: 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: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 "Konservitaj Dosierujoj"
-#: src/Content/Widget.php:315 src/Content/Widget.php:346
+#: src/Content/Widget.php:320 src/Content/Widget.php:351
msgid "Everything"
msgstr "Ĉio"
-#: src/Content/Widget.php:344
+#: src/Content/Widget.php:349
msgid "Categories"
msgstr "Kategorioj"
-#: 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 komuna kontakto"
msgstr[1] "%d komunaj kontaktoj"
-#: src/Content/Widget.php:497
+#: src/Content/Widget.php:506
msgid "Archives"
msgstr "Arkivoj"
-#: 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:1656
+#: src/Content/Widget.php:536 src/Model/Contact.php:1698
msgid "News"
msgstr ""
-#: src/Content/Widget.php:527 src/Module/Settings/Account.php:453
+#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454
msgid "Account Types"
msgstr ""
-#: src/Content/Widget.php:528 src/Module/Moderation/BaseUsers.php:69
+#: 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 ""
@@ -2158,93 +2413,93 @@ msgstr[1] ""
msgid "More Trending Tags"
msgstr ""
-#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:378
-#: src/Module/Contact/Profile.php:382 src/Module/Profile/Profile.php:199
+#: 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:103 src/Model/Profile.php:379
-#: src/Module/Contact/Profile.php:384 src/Module/Profile/Profile.php:203
+#: 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: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:380
+#: 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:107 src/Model/Profile.php:476
+#: 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/Contact.php:1200
-#: src/Model/Contact.php:1211 src/Model/Profile.php:465
-#: src/Module/Contact/Profile.php:430
+#: 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:269
+#: 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 "Sendi per retpoŝto"
-#: 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 "
"anywhere public."
msgstr ""
-#: src/Core/ACL.php:323
-msgid ""
-"Start typing the name of a contact or a group to show a filtered list. You "
-"can also mention the special groups \"Followers\" and \"Mutuals\"."
-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:326 src/Module/Post/Edit.php:151
+#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154
msgid "CC: email addresses"
msgstr "CC: retpoŝtadresojn"
-#: src/Core/ACL.php:327 src/Module/Post/Edit.php:157
+#: 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:328
+#: src/Core/ACL.php:329
msgid "Connectors"
msgstr ""
@@ -2567,161 +2822,172 @@ msgstr ""
msgid "Could not connect to database."
msgstr "Ne eblas konekti la datumbazon."
-#: src/Core/L10n.php:408 src/Model/Event.php:432
-#: src/Module/Settings/Display.php:222
+#: src/Core/L10n.php:476 src/Model/Event.php:430
+#: src/Module/Settings/Display.php:235
msgid "Monday"
msgstr "Lundo"
-#: src/Core/L10n.php:408 src/Model/Event.php:433
-#: src/Module/Settings/Display.php:223
+#: src/Core/L10n.php:476 src/Model/Event.php:431
+#: src/Module/Settings/Display.php:236
msgid "Tuesday"
msgstr "Mardo"
-#: src/Core/L10n.php:408 src/Model/Event.php:434
-#: src/Module/Settings/Display.php:224
+#: src/Core/L10n.php:476 src/Model/Event.php:432
+#: src/Module/Settings/Display.php:237
msgid "Wednesday"
msgstr "Merkredo"
-#: src/Core/L10n.php:408 src/Model/Event.php:435
-#: src/Module/Settings/Display.php:225
+#: 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:408 src/Model/Event.php:436
-#: src/Module/Settings/Display.php:226
+#: src/Core/L10n.php:476 src/Model/Event.php:434
+#: src/Module/Settings/Display.php:239
msgid "Friday"
msgstr "Vendredo"
-#: src/Core/L10n.php:408 src/Model/Event.php:437
-#: src/Module/Settings/Display.php:227
+#: src/Core/L10n.php:476 src/Model/Event.php:435
+#: src/Module/Settings/Display.php:240
msgid "Saturday"
msgstr "Sabato"
-#: src/Core/L10n.php:408 src/Model/Event.php:431
-#: src/Module/Settings/Display.php:221
+#: 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:412 src/Model/Event.php:452
+#: src/Core/L10n.php:480 src/Model/Event.php:450
msgid "January"
msgstr "Januaro"
-#: src/Core/L10n.php:412 src/Model/Event.php:453
+#: src/Core/L10n.php:480 src/Model/Event.php:451
msgid "February"
msgstr "Februaro"
-#: src/Core/L10n.php:412 src/Model/Event.php:454
+#: src/Core/L10n.php:480 src/Model/Event.php:452
msgid "March"
msgstr "Marto"
-#: src/Core/L10n.php:412 src/Model/Event.php:455
+#: src/Core/L10n.php:480 src/Model/Event.php:453
msgid "April"
msgstr "Aprilo"
-#: src/Core/L10n.php:412 src/Core/L10n.php:431 src/Model/Event.php:443
+#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441
msgid "May"
msgstr "Majo"
-#: src/Core/L10n.php:412 src/Model/Event.php:456
+#: src/Core/L10n.php:480 src/Model/Event.php:454
msgid "June"
msgstr "Junio"
-#: src/Core/L10n.php:412 src/Model/Event.php:457
+#: src/Core/L10n.php:480 src/Model/Event.php:455
msgid "July"
msgstr "Julio"
-#: src/Core/L10n.php:412 src/Model/Event.php:458
+#: src/Core/L10n.php:480 src/Model/Event.php:456
msgid "August"
msgstr "Aŭgusto"
-#: src/Core/L10n.php:412 src/Model/Event.php:459
+#: src/Core/L10n.php:480 src/Model/Event.php:457
msgid "September"
msgstr "Septembro"
-#: src/Core/L10n.php:412 src/Model/Event.php:460
+#: src/Core/L10n.php:480 src/Model/Event.php:458
msgid "October"
msgstr "Oktobro"
-#: src/Core/L10n.php:412 src/Model/Event.php:461
+#: src/Core/L10n.php:480 src/Model/Event.php:459
msgid "November"
msgstr "Novembro"
-#: src/Core/L10n.php:412 src/Model/Event.php:462
+#: src/Core/L10n.php:480 src/Model/Event.php:460
msgid "December"
msgstr "Decembro"
-#: src/Core/L10n.php:427 src/Model/Event.php:424
+#: src/Core/L10n.php:495 src/Model/Event.php:422
msgid "Mon"
msgstr ""
-#: src/Core/L10n.php:427 src/Model/Event.php:425
+#: src/Core/L10n.php:495 src/Model/Event.php:423
msgid "Tue"
msgstr ""
-#: src/Core/L10n.php:427 src/Model/Event.php:426
+#: src/Core/L10n.php:495 src/Model/Event.php:424
msgid "Wed"
msgstr ""
-#: src/Core/L10n.php:427 src/Model/Event.php:427
+#: src/Core/L10n.php:495 src/Model/Event.php:425
msgid "Thu"
msgstr ""
-#: src/Core/L10n.php:427 src/Model/Event.php:428
+#: src/Core/L10n.php:495 src/Model/Event.php:426
msgid "Fri"
msgstr ""
-#: src/Core/L10n.php:427 src/Model/Event.php:429
+#: src/Core/L10n.php:495 src/Model/Event.php:427
msgid "Sat"
msgstr ""
-#: src/Core/L10n.php:427 src/Model/Event.php:423
+#: src/Core/L10n.php:495 src/Model/Event.php:421
msgid "Sun"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:439
+#: src/Core/L10n.php:499 src/Model/Event.php:437
msgid "Jan"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:440
+#: src/Core/L10n.php:499 src/Model/Event.php:438
msgid "Feb"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:441
+#: src/Core/L10n.php:499 src/Model/Event.php:439
msgid "Mar"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:442
+#: src/Core/L10n.php:499 src/Model/Event.php:440
msgid "Apr"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:444
+#: src/Core/L10n.php:499 src/Model/Event.php:442
msgid "Jun"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:445
+#: src/Core/L10n.php:499 src/Model/Event.php:443
msgid "Jul"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:446
+#: src/Core/L10n.php:499 src/Model/Event.php:444
msgid "Aug"
msgstr ""
-#: src/Core/L10n.php:431
+#: src/Core/L10n.php:499
msgid "Sep"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:448
+#: src/Core/L10n.php:499 src/Model/Event.php:446
msgid "Oct"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:449
+#: src/Core/L10n.php:499 src/Model/Event.php:447
msgid "Nov"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:450
+#: 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
@@ -2766,22 +3032,22 @@ msgid ""
" to version 2021.01 and wait until the postupdate finished version 1383."
msgstr ""
-#: src/Core/Update.php:197
+#: src/Core/Update.php:183
#, php-format
msgid "%s: executing pre update %d"
msgstr ""
-#: src/Core/Update.php:239
+#: src/Core/Update.php:225
#, php-format
msgid "%s: executing post update %d"
msgstr ""
-#: src/Core/Update.php:313
+#: 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:353
+#: src/Core/Update.php:339
#, php-format
msgid ""
"\n"
@@ -2791,16 +3057,16 @@ msgid ""
"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
msgstr ""
-#: src/Core/Update.php:359
+#: src/Core/Update.php:345
#, php-format
msgid "The error message is\\n[pre]%s[/pre]"
msgstr ""
-#: src/Core/Update.php:363 src/Core/Update.php:391
+#: src/Core/Update.php:349 src/Core/Update.php:377
msgid "[Friendica Notify] Database update"
msgstr ""
-#: src/Core/Update.php:385
+#: src/Core/Update.php:371
#, php-format
msgid ""
"\n"
@@ -2812,28 +3078,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"
@@ -2841,20 +3107,20 @@ 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:221
+#: src/Database/DBStructure.php:232
msgid "Another database update is currently running."
msgstr ""
-#: src/Database/DBStructure.php:225
+#: src/Database/DBStructure.php:236
#, php-format
msgid "%s: Database update"
msgstr ""
-#: src/Database/DBStructure.php:482
+#: src/Database/DBStructure.php:493
#, php-format
msgid "%s: updating %s table."
msgstr ""
@@ -2885,82 +3151,122 @@ msgstr ""
msgid "Legacy module file not found: %s"
msgstr ""
-#: src/Model/Contact.php:1217 src/Module/Moderation/Users/Pending.php:102
+#: 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:1652
+#: src/Model/Contact.php:1694
msgid "Organisation"
msgstr ""
-#: src/Model/Contact.php:1660
-msgid "Forum"
+#: src/Model/Contact.php:1702
+msgid "Group"
msgstr ""
-#: src/Model/Contact.php:2942
+#: src/Model/Contact.php:3005
msgid "Disallowed profile URL."
msgstr "Malpermesita adreso de profilo."
-#: src/Model/Contact.php:2947 src/Module/Friendica.php:83
+#: src/Model/Contact.php:3010 src/Module/Friendica.php:101
msgid "Blocked domain"
msgstr ""
-#: src/Model/Contact.php:2952
+#: src/Model/Contact.php:3015
msgid "Connect URL missing."
msgstr "Ne ekzistas URL adreso por konekti."
-#: src/Model/Contact.php:2961
+#: 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:2979
+#: src/Model/Contact.php:3042
#, php-format
msgid "Expected network %s does not match actual network %s"
msgstr ""
-#: src/Model/Contact.php:2996
+#: 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:2998
+#: 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:3001
+#: src/Model/Contact.php:3064
msgid "An author or name was not found."
msgstr "Ne trovis aŭtoron aŭ nomon."
-#: src/Model/Contact.php:3004
+#: 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:3007
+#: 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:3008
+#: 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:3014
+#: 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:3019
+#: 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:3084
+#: src/Model/Contact.php:3148
msgid "Unable to retrieve contact information."
msgstr "Ne eblas ricevi kontaktinformojn."
@@ -2968,54 +3274,54 @@ msgstr "Ne eblas ricevi kontaktinformojn."
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
+#: 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:472
-#: src/Model/Event.php:944
+#: 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:421
+#: src/Model/Event.php:419
msgid "all-day"
msgstr ""
-#: src/Model/Event.php:447
+#: src/Model/Event.php:445
msgid "Sept"
msgstr ""
-#: src/Model/Event.php:464 src/Module/Calendar/Show.php:128
+#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128
#: src/Util/Temporal.php:343
msgid "today"
msgstr ""
-#: src/Model/Event.php:465 src/Module/Calendar/Show.php:129
-#: src/Module/Settings/Display.php:232 src/Util/Temporal.php:353
+#: 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:466 src/Module/Calendar/Show.php:130
-#: src/Module/Settings/Display.php:233 src/Util/Temporal.php:354
+#: 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:467 src/Module/Calendar/Show.php:131
-#: src/Module/Settings/Display.php:234 src/Util/Temporal.php:355
+#: 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:469
+#: src/Model/Event.php:467
msgid "No events to display"
msgstr ""
-#: src/Model/Event.php:518 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69
+#: 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:559 src/Module/Calendar/Event/Show.php:67
+#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67
msgid "Event not found."
msgstr ""
@@ -3047,210 +3353,166 @@ msgstr ""
msgid "g:i A"
msgstr ""
-#: src/Model/Event.php:959 src/Model/Event.php:961
+#: src/Model/Event.php:964 src/Model/Event.php:966
msgid "Show map"
msgstr ""
-#: src/Model/Event.php:960
+#: 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 "Naskiĝtago de %s"
-#: src/Model/Event.php:1054
+#: src/Model/Event.php:1059
#, php-format
msgid "Happy Birthday %s"
msgstr "Feliĉan Naskiĝtagon al %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 "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."
-
-#: src/Model/Group.php:503
-msgid "Default privacy group for new contacts"
-msgstr "Defaŭlta privateca grupo por novaj kontaktoj"
-
-#: src/Model/Group.php:535
-msgid "Everybody"
-msgstr "Ĉiuj"
-
-#: src/Model/Group.php:554
-msgid "edit"
-msgstr "redakti"
-
-#: src/Model/Group.php:586
-msgid "add"
-msgstr "aldoni"
-
-#: src/Model/Group.php:591
-msgid "Edit group"
-msgstr "Redakti grupon"
-
-#: src/Model/Group.php:592 src/Module/Group.php:192
-msgid "Contacts not in any group"
-msgstr "Kontaktoj en neniu grupo"
-
-#: src/Model/Group.php:594
-msgid "Create a new group"
-msgstr "Krei novan grupon"
-
-#: src/Model/Group.php:595 src/Module/Group.php:177 src/Module/Group.php:200
-#: src/Module/Group.php:275
-msgid "Group Name: "
-msgstr "Nomo de la grupo:"
-
-#: src/Model/Group.php:596
-msgid "Edit groups"
-msgstr ""
-
-#: src/Model/Item.php:2001
+#: src/Model/Item.php:2062
#, php-format
msgid "Detected languages in this post:\\n%s"
msgstr ""
-#: src/Model/Item.php:2904
+#: src/Model/Item.php:3007
msgid "activity"
msgstr "aktiveco"
-#: src/Model/Item.php:2906
+#: src/Model/Item.php:3009
msgid "comment"
msgstr ""
-#: src/Model/Item.php:2909 src/Module/Post/Tag/Add.php:123
+#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123
msgid "post"
msgstr "afiŝo"
-#: src/Model/Item.php:3059
+#: src/Model/Item.php:3182
#, php-format
msgid "%s is blocked"
msgstr ""
-#: src/Model/Item.php:3061
+#: src/Model/Item.php:3184
#, php-format
msgid "%s is ignored"
msgstr ""
-#: src/Model/Item.php:3063
+#: src/Model/Item.php:3186
#, php-format
msgid "Content from %s is collapsed"
msgstr ""
-#: src/Model/Item.php:3067
+#: src/Model/Item.php:3190
#, php-format
msgid "Content warning: %s"
msgstr ""
-#: src/Model/Item.php:3485
+#: src/Model/Item.php:3652
msgid "bytes"
msgstr "bajtoj"
-#: src/Model/Item.php:3516
+#: 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:3518
+#: 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:3523
+#: 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:3525
+#: src/Model/Item.php:3692
#, php-format
msgid "%d voter."
msgid_plural "%d voters."
msgstr[0] ""
msgstr[1] ""
-#: src/Model/Item.php:3527
+#: src/Model/Item.php:3694
#, php-format
msgid "Poll end: %s"
msgstr ""
-#: src/Model/Item.php:3561 src/Model/Item.php:3562
+#: 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:264
+#: src/Model/Mail.php:137 src/Model/Mail.php:266
msgid "[no subject]"
msgstr "[neniu temo]"
-#: src/Model/Photo.php:1189 src/Module/Media/Photo/Upload.php:198
+#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170
msgid "Wall Photos"
msgstr "Muraj Bildoj"
-#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:283
+#: 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:363
+#: src/Model/Profile.php:361
msgid "Change profile photo"
msgstr "Ŝanĝi profilbildon"
-#: src/Model/Profile.php:376 src/Module/Directory.php:152
+#: 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:377 src/Module/Contact/Profile.php:386
+#: 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:467
+#: src/Model/Profile.php:465
msgid "Atom feed"
msgstr ""
-#: src/Model/Profile.php:474
+#: src/Model/Profile.php:472
msgid "This website has been verified to belong to the same person."
msgstr ""
-#: src/Model/Profile.php:511
+#: src/Model/Profile.php:509
msgid "F d"
msgstr "F d"
-#: src/Model/Profile.php:575 src/Model/Profile.php:664
+#: src/Model/Profile.php:573 src/Model/Profile.php:662
msgid "[today]"
msgstr "[hodiaŭ]"
-#: src/Model/Profile.php:584
+#: src/Model/Profile.php:582
msgid "Birthday Reminders"
msgstr "Memorigilo pri naskiĝtagoj"
-#: src/Model/Profile.php:585
+#: src/Model/Profile.php:583
msgid "Birthdays this week:"
msgstr "Naskiĝtagoj ĉi-semajne:"
-#: src/Model/Profile.php:613
+#: 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:651
+#: src/Model/Profile.php:649
msgid "[No description]"
msgstr "[Neniu priskribo]"
-#: src/Model/Profile.php:677
+#: src/Model/Profile.php:675
msgid "Event Reminders"
msgstr "Memorigilo pri Okazoj"
-#: src/Model/Profile.php:678
+#: src/Model/Profile.php:676
msgid "Upcoming events the next 7 days:"
msgstr ""
@@ -3299,7 +3561,8 @@ msgstr "Malŝatoj:"
msgid "Title/Description:"
msgstr "Titolo/Priskribo:"
-#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:221
+#: 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"
@@ -3340,145 +3603,145 @@ msgstr "Lernejo/eduko"
msgid "Contact information and Social Networks"
msgstr "Kontaktaj informoj kaj Interkonaj Retejoj"
-#: src/Model/User.php:213 src/Model/User.php:1119
+#: 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."
-#: 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:753
+#: src/Model/User.php:806
msgid "Password can't be empty"
msgstr ""
-#: src/Model/User.php:795
+#: src/Model/User.php:848
msgid "Empty passwords are not allowed."
msgstr ""
-#: src/Model/User.php:799
+#: 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:803
+#: src/Model/User.php:856
msgid "The password length is limited to 72 characters."
msgstr ""
-#: src/Model/User.php:807
+#: src/Model/User.php:860
msgid "The password can't contain white spaces nor accentuated letters"
msgstr ""
-#: src/Model/User.php:1002
+#: 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:1009
+#: src/Model/User.php:1076
msgid "An invitation is required."
msgstr "Invio bezonata."
-#: src/Model/User.php:1013
+#: src/Model/User.php:1080
msgid "Invitation could not be verified."
msgstr "Ne povis kontroli la inviton."
-#: src/Model/User.php:1021
+#: src/Model/User.php:1088
msgid "Invalid OpenID url"
msgstr "Nevalida OpenID adreso"
-#: src/Model/User.php:1034 src/Security/Authentication.php:241
+#: 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:1034 src/Security/Authentication.php:241
+#: src/Model/User.php:1101 src/Security/Authentication.php:241
msgid "The error message was:"
msgstr "La erarmesaĝo estis:"
-#: src/Model/User.php:1040
+#: src/Model/User.php:1107
msgid "Please enter the required information."
msgstr "Bonvolu entajpi la bezonatajn informojn."
-#: src/Model/User.php:1054
+#: 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:1061
+#: 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:1065
+#: 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:1073
+#: 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:1078
+#: 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:1082
+#: src/Model/User.php:1149
msgid "Not a valid email address."
msgstr "Nevalida retpoŝtadreso."
-#: src/Model/User.php:1085
+#: src/Model/User.php:1152
msgid "The nickname was blocked from registration by the nodes admin."
msgstr ""
-#: src/Model/User.php:1089 src/Model/User.php:1095
+#: src/Model/User.php:1156 src/Model/User.php:1162
msgid "Cannot use that email."
msgstr "Neuzebla retpoŝtadreso."
-#: src/Model/User.php:1101
+#: src/Model/User.php:1168
msgid "Your nickname can only contain a-z, 0-9 and _."
msgstr ""
-#: src/Model/User.php:1109 src/Model/User.php:1166
+#: 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:1153 src/Model/User.php:1157
+#: 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."
-#: src/Model/User.php:1180
+#: 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."
-#: src/Model/User.php:1187
+#: src/Model/User.php:1254
msgid "An error occurred creating your self contact. Please try again."
msgstr ""
-#: src/Model/User.php:1192
+#: src/Model/User.php:1259
msgid "Friends"
msgstr "Amikoj"
-#: src/Model/User.php:1196
+#: 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:1235
+#: src/Model/User.php:1307
msgid "Profile Photos"
msgstr "Profilbildoj"
-#: src/Model/User.php:1428
+#: src/Model/User.php:1487
#, php-format
msgid ""
"\n"
@@ -3486,7 +3749,7 @@ msgid ""
"\t\t\tthe administrator of %2$s has set up an account for you."
msgstr ""
-#: src/Model/User.php:1431
+#: src/Model/User.php:1490
#, php-format
msgid ""
"\n"
@@ -3518,12 +3781,12 @@ msgid ""
"\t\tThank you and welcome to %4$s."
msgstr ""
-#: src/Model/User.php:1464 src/Model/User.php:1571
+#: src/Model/User.php:1523 src/Model/User.php:1630
#, php-format
msgid "Registration details for %s"
msgstr "Detaloj de la registrado por %s"
-#: src/Model/User.php:1484
+#: src/Model/User.php:1543
#, php-format
msgid ""
"\n"
@@ -3538,12 +3801,12 @@ msgid ""
"\t\t"
msgstr ""
-#: src/Model/User.php:1503
+#: src/Model/User.php:1562
#, php-format
msgid "Registration at %s"
msgstr ""
-#: src/Model/User.php:1527
+#: src/Model/User.php:1586
#, php-format
msgid ""
"\n"
@@ -3552,7 +3815,7 @@ msgid ""
"\t\t\t"
msgstr ""
-#: src/Model/User.php:1535
+#: src/Model/User.php:1594
#, php-format
msgid ""
"\n"
@@ -3609,10 +3872,10 @@ msgid "Enable"
msgstr "Ŝalti"
#: src/Module/Admin/Addons/Details.php:111
-#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:207
-#: 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:389
-#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:220
+#: 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
@@ -3622,7 +3885,7 @@ 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:134
+#: src/Module/BaseSettings.php:132
msgid "Addons"
msgstr ""
@@ -3631,13 +3894,13 @@ msgstr ""
msgid "Toggle"
msgstr "Ŝalti/Malŝalti"
-#: 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 "Aŭtoro: "
-#: 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 "Prizorganto: "
@@ -3650,13 +3913,13 @@ msgstr ""
msgid "Addon %s failed to install."
msgstr ""
-#: 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:392
+#: 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:158
-#: src/Module/Settings/Connectors.php:243
-#: src/Module/Settings/Delegation.php:169 src/Module/Settings/Display.php:247
+#: 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 ""
@@ -3665,7 +3928,7 @@ msgstr ""
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 "
@@ -3707,28 +3970,28 @@ msgstr "Ĝisdatigo %s ne liveris elirstaton. "
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 "Neniom da malsukcesaj ĝisdatigoj."
-#: 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 "Malsukcesaj Ĝisdatigoj"
-#: 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 "Ne inkluzivas ĝisdatigojn antaŭ 1139, kiuj ne liveris elirstaton."
-#: src/Module/Admin/DBSync.php:114
+#: 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:115
+#: 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."
@@ -3737,79 +4000,81 @@ msgstr "Provi automate plenumi ĉi tian paŝon de la ĝisdatigo."
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:73
+#: 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:147 src/Module/Admin/Federation.php:396
+#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403
msgid "unknown"
msgstr ""
-#: src/Module/Admin/Federation.php:180
+#: 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:181
+#: 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:182
+#: 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:183
+#: 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:184
+#: 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:187
+#: 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:192
+#: 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:202
+#: 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:208 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:212
+#: src/Module/Admin/Federation.php:219
#, php-format
msgid ""
"Currently this node is aware of %2$s node (%3$s active users last month, "
@@ -3827,46 +4092,53 @@ msgstr[1] ""
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:102
+#: 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:82
+#: src/Module/Admin/Logs/Settings.php:88
msgid "Clear"
msgstr "Forviŝi"
-#: 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 "Protokolo"
-#: 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 "Devas esti skribebla de la retservilo. Relativa al via plej supra Friendica dosierujo."
-#: src/Module/Admin/Logs/Settings.php:88
+#: src/Module/Admin/Logs/Settings.php:93
msgid "Log level"
msgstr "Protokolnivelo"
-#: 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 "
@@ -3889,77 +4161,77 @@ msgid ""
"is readable."
msgstr ""
-#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:104
+#: 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:97 src/Module/Calendar/Event/Form.php:207
+#: 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:98
+#: 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 ""
@@ -3995,7 +4267,8 @@ msgstr ""
msgid "Job Parameters"
msgstr ""
-#: src/Module/Admin/Queue.php:78 src/Module/Settings/OAuth.php:75
+#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95
+#: src/Module/Settings/OAuth.php:74
msgid "Created"
msgstr ""
@@ -4003,269 +4276,269 @@ msgstr ""
msgid "Priority"
msgstr ""
-#: src/Module/Admin/Site.php:207
+#: src/Module/Admin/Site.php:212
#, php-format
msgid "%s is no valid input for maximum image size"
msgstr ""
-#: src/Module/Admin/Site.php:304 src/Module/Settings/Display.php:169
+#: 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:321 src/Module/Settings/Display.php:179
+#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188
#, php-format
msgid "%s - (Experimental)"
msgstr ""
-#: src/Module/Admin/Site.php:333
+#: src/Module/Admin/Site.php:342
msgid "No community page"
msgstr ""
-#: src/Module/Admin/Site.php:334
+#: src/Module/Admin/Site.php:343
msgid "No community page for visitors"
msgstr ""
-#: src/Module/Admin/Site.php:335
+#: src/Module/Admin/Site.php:344
msgid "Public postings from users of this site"
msgstr ""
-#: src/Module/Admin/Site.php:336
+#: src/Module/Admin/Site.php:345
msgid "Public postings from the federated network"
msgstr ""
-#: src/Module/Admin/Site.php:337
+#: src/Module/Admin/Site.php:346
msgid "Public postings from local users and the federated network"
msgstr ""
-#: src/Module/Admin/Site.php:343
+#: src/Module/Admin/Site.php:352
msgid "Multi user instance"
msgstr ""
-#: src/Module/Admin/Site.php:366
+#: src/Module/Admin/Site.php:375
msgid "Closed"
msgstr "Ferma"
-#: src/Module/Admin/Site.php:367
+#: src/Module/Admin/Site.php:376
msgid "Requires approval"
msgstr "Bezonas aprobon"
-#: src/Module/Admin/Site.php:368
+#: src/Module/Admin/Site.php:377
msgid "Open"
msgstr "Malferma"
-#: src/Module/Admin/Site.php:372
+#: src/Module/Admin/Site.php:381
msgid "Don't check"
msgstr ""
-#: src/Module/Admin/Site.php:373
+#: src/Module/Admin/Site.php:382
msgid "check the stable version"
msgstr ""
-#: src/Module/Admin/Site.php:374
+#: src/Module/Admin/Site.php:383
msgid "check the development version"
msgstr ""
-#: src/Module/Admin/Site.php:378
+#: src/Module/Admin/Site.php:387
msgid "none"
msgstr ""
-#: src/Module/Admin/Site.php:379
+#: src/Module/Admin/Site.php:388
msgid "Local contacts"
msgstr ""
-#: src/Module/Admin/Site.php:380
+#: src/Module/Admin/Site.php:389
msgid "Interactors"
msgstr ""
-#: src/Module/Admin/Site.php:390 src/Module/BaseAdmin.php:90
+#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90
msgid "Site"
msgstr "Retejo"
-#: src/Module/Admin/Site.php:391
+#: src/Module/Admin/Site.php:400
msgid "General Information"
msgstr ""
-#: src/Module/Admin/Site.php:393
+#: src/Module/Admin/Site.php:402
msgid "Republish users to directory"
msgstr ""
-#: src/Module/Admin/Site.php:394 src/Module/Register.php:152
+#: src/Module/Admin/Site.php:403 src/Module/Register.php:152
msgid "Registration"
msgstr "Registrado"
-#: src/Module/Admin/Site.php:395
+#: src/Module/Admin/Site.php:404
msgid "File upload"
msgstr "Alŝuto"
-#: src/Module/Admin/Site.php:396
+#: src/Module/Admin/Site.php:405
msgid "Policies"
msgstr "Politiko"
-#: src/Module/Admin/Site.php:397 src/Module/Calendar/Event/Form.php:252
-#: src/Module/Contact.php:517 src/Module/Profile/Profile.php:276
+#: 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:398
+#: src/Module/Admin/Site.php:407
msgid "Auto Discovered Contact Directory"
msgstr ""
-#: src/Module/Admin/Site.php:399
+#: src/Module/Admin/Site.php:408
msgid "Performance"
msgstr ""
-#: src/Module/Admin/Site.php:400
+#: src/Module/Admin/Site.php:409
msgid "Worker"
msgstr ""
-#: src/Module/Admin/Site.php:401
+#: src/Module/Admin/Site.php:410
msgid "Message Relay"
msgstr ""
-#: src/Module/Admin/Site.php:402
+#: 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:403
+#: src/Module/Admin/Site.php:412
msgid "The system is not subscribed to any relays at the moment."
msgstr ""
-#: src/Module/Admin/Site.php:404
+#: src/Module/Admin/Site.php:413
msgid "The system is currently subscribed to the following relays:"
msgstr ""
-#: src/Module/Admin/Site.php:406
+#: src/Module/Admin/Site.php:415
msgid "Relocate Node"
msgstr ""
-#: src/Module/Admin/Site.php:407
+#: 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:408
+#: src/Module/Admin/Site.php:417
msgid "(Friendica directory)# bin/console relocate https://newdomain.com"
msgstr ""
-#: src/Module/Admin/Site.php:412
+#: src/Module/Admin/Site.php:420
msgid "Site name"
msgstr "Nomo de retejo"
-#: src/Module/Admin/Site.php:413
+#: src/Module/Admin/Site.php:421
msgid "Sender Email"
msgstr ""
-#: src/Module/Admin/Site.php:413
+#: 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:414
+#: src/Module/Admin/Site.php:422
msgid "Name of the system actor"
msgstr ""
-#: src/Module/Admin/Site.php:414
+#: 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:415
+#: src/Module/Admin/Site.php:423
msgid "Banner/Logo"
msgstr "Emblemo"
-#: src/Module/Admin/Site.php:416
+#: src/Module/Admin/Site.php:424
msgid "Email Banner/Logo"
msgstr ""
-#: src/Module/Admin/Site.php:417
+#: src/Module/Admin/Site.php:425
msgid "Shortcut icon"
msgstr ""
-#: src/Module/Admin/Site.php:417
+#: src/Module/Admin/Site.php:425
msgid "Link to an icon that will be used for browsers."
msgstr ""
-#: src/Module/Admin/Site.php:418
+#: src/Module/Admin/Site.php:426
msgid "Touch icon"
msgstr ""
-#: src/Module/Admin/Site.php:418
+#: 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:419
+#: src/Module/Admin/Site.php:427
msgid "Additional Info"
msgstr ""
-#: src/Module/Admin/Site.php:419
+#: 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:420
+#: src/Module/Admin/Site.php:428
msgid "System language"
msgstr "Sistema lingvo"
-#: src/Module/Admin/Site.php:421
+#: src/Module/Admin/Site.php:429
msgid "System theme"
msgstr "Sistema etoso"
-#: src/Module/Admin/Site.php:421
+#: 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:422
+#: src/Module/Admin/Site.php:430
msgid "Mobile system theme"
msgstr ""
-#: src/Module/Admin/Site.php:422
+#: src/Module/Admin/Site.php:430
msgid "Theme for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:423
+#: src/Module/Admin/Site.php:431
msgid "Force SSL"
msgstr ""
-#: src/Module/Admin/Site.php:423
+#: 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:424
+#: src/Module/Admin/Site.php:432
msgid "Show help entry from navigation menu"
msgstr ""
-#: src/Module/Admin/Site.php:424
+#: 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:425
+#: src/Module/Admin/Site.php:433
msgid "Single user instance"
msgstr ""
-#: src/Module/Admin/Site.php:425
+#: 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:427
+#: src/Module/Admin/Site.php:435
msgid "Maximum image size"
msgstr "Maksimuma bildgrando"
-#: src/Module/Admin/Site.php:427
+#: 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"
@@ -4273,181 +4546,193 @@ msgid ""
"\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:431
+#: src/Module/Admin/Site.php:439
msgid "Maximum image length"
msgstr ""
-#: src/Module/Admin/Site.php:431
+#: 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:432
+#: src/Module/Admin/Site.php:440
msgid "JPEG image quality"
msgstr ""
-#: src/Module/Admin/Site.php:432
+#: 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:434
+#: src/Module/Admin/Site.php:442
msgid "Register policy"
msgstr "Interkonsento pri registrado"
-#: src/Module/Admin/Site.php:435
+#: 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:435
+#: 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:436
+#: src/Module/Admin/Site.php:445
msgid "Register text"
msgstr "Interkonsento teksto"
-#: src/Module/Admin/Site.php:436
+#: 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:437
+#: src/Module/Admin/Site.php:446
msgid "Forbidden Nicknames"
msgstr ""
-#: src/Module/Admin/Site.php:437
+#: 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:438
+#: src/Module/Admin/Site.php:447
msgid "Accounts abandoned after x days"
msgstr "Kontoj forlasitaj post x tagoj"
-#: src/Module/Admin/Site.php:438
+#: 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:439
+#: src/Module/Admin/Site.php:448
msgid "Allowed friend domains"
msgstr "Permesitaj amikaj domainoj"
-#: src/Module/Admin/Site.php:439
+#: 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:440
+#: src/Module/Admin/Site.php:449
msgid "Allowed email domains"
msgstr "Permesitaj retpoŝtaj domajnoj"
-#: src/Module/Admin/Site.php:440
+#: 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:441
+#: src/Module/Admin/Site.php:450
msgid "No OEmbed rich content"
msgstr ""
-#: src/Module/Admin/Site.php:441
+#: 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:442
+#: src/Module/Admin/Site.php:451
msgid "Trusted third-party domains"
msgstr ""
-#: src/Module/Admin/Site.php:442
+#: 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:443
+#: src/Module/Admin/Site.php:452
msgid "Block public"
msgstr "Bloki publike"
-#: src/Module/Admin/Site.php:443
+#: 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:444
+#: src/Module/Admin/Site.php:453
msgid "Force publish"
msgstr "Devigi publikigon"
-#: src/Module/Admin/Site.php:444
+#: 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:444
+#: src/Module/Admin/Site.php:453
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr ""
-#: src/Module/Admin/Site.php:445
+#: src/Module/Admin/Site.php:454
msgid "Global directory URL"
msgstr ""
-#: src/Module/Admin/Site.php:445
+#: 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:446
+#: src/Module/Admin/Site.php:455
msgid "Private posts by default for new users"
msgstr ""
-#: src/Module/Admin/Site.php:446
+#: 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:447
+#: src/Module/Admin/Site.php:456
msgid "Don't include post content in email notifications"
msgstr ""
-#: src/Module/Admin/Site.php:447
+#: 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:448
+#: src/Module/Admin/Site.php:457
msgid "Disallow public access to addons listed in the apps menu."
msgstr ""
-#: src/Module/Admin/Site.php:448
+#: 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:449
+#: src/Module/Admin/Site.php:458
msgid "Don't embed private images in posts"
msgstr ""
-#: src/Module/Admin/Site.php:449
+#: 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 "
@@ -4455,11 +4740,11 @@ msgid ""
"while."
msgstr ""
-#: src/Module/Admin/Site.php:450
+#: src/Module/Admin/Site.php:459
msgid "Explicit Content"
msgstr ""
-#: src/Module/Admin/Site.php:450
+#: 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 "
@@ -4468,267 +4753,267 @@ msgid ""
"will be shown at the user registration page."
msgstr ""
-#: src/Module/Admin/Site.php:451
+#: src/Module/Admin/Site.php:460
msgid "Proxify external content"
msgstr ""
-#: src/Module/Admin/Site.php:451
+#: 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:452
+#: src/Module/Admin/Site.php:461
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:452
+#: 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:453
+#: src/Module/Admin/Site.php:462
msgid "Allow Users to set remote_self"
msgstr ""
-#: src/Module/Admin/Site.php:453
+#: 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:454
+#: src/Module/Admin/Site.php:463
msgid "Enable multiple registrations"
msgstr ""
-#: src/Module/Admin/Site.php:454
+#: src/Module/Admin/Site.php:463
msgid "Enable users to register additional accounts for use as pages."
msgstr ""
-#: src/Module/Admin/Site.php:455
+#: src/Module/Admin/Site.php:464
msgid "Enable OpenID"
msgstr ""
-#: src/Module/Admin/Site.php:455
+#: src/Module/Admin/Site.php:464
msgid "Enable OpenID support for registration and logins."
msgstr ""
-#: src/Module/Admin/Site.php:456
+#: src/Module/Admin/Site.php:465
msgid "Enable Fullname check"
msgstr ""
-#: src/Module/Admin/Site.php:456
+#: 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:457
+#: src/Module/Admin/Site.php:466
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:457
+#: 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:458
+#: src/Module/Admin/Site.php:467
msgid "Community pages for visitors"
msgstr ""
-#: src/Module/Admin/Site.php:458
+#: 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:459
+#: src/Module/Admin/Site.php:468
msgid "Posts per user on community page"
msgstr ""
-#: src/Module/Admin/Site.php:459
+#: 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:461
+#: src/Module/Admin/Site.php:470
msgid "Enable Mail support"
msgstr ""
-#: src/Module/Admin/Site.php:461
+#: 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:462
+#: 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:463
+#: src/Module/Admin/Site.php:472
msgid "Enable OStatus support"
msgstr ""
-#: src/Module/Admin/Site.php:463
+#: 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:465
+#: 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:466
+#: src/Module/Admin/Site.php:475
msgid "Enable Diaspora support"
msgstr "Ŝalti subtenon por Diaspora"
-#: src/Module/Admin/Site.php:466
+#: src/Module/Admin/Site.php:475
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:467
+#: src/Module/Admin/Site.php:476
msgid "Verify SSL"
msgstr "Kontroli SSL"
-#: src/Module/Admin/Site.php:467
+#: 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:468
+#: src/Module/Admin/Site.php:477
msgid "Proxy user"
msgstr "Uzantnomo por retperanto"
-#: src/Module/Admin/Site.php:468
+#: src/Module/Admin/Site.php:477
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:469
+#: src/Module/Admin/Site.php:478
msgid "Proxy URL"
msgstr "URL adreso de retperanto"
-#: src/Module/Admin/Site.php:469
+#: 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:470
+#: src/Module/Admin/Site.php:479
msgid "Network timeout"
msgstr "Reta tempolimo"
-#: src/Module/Admin/Site.php:470
+#: 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:471
+#: src/Module/Admin/Site.php:480
msgid "Maximum Load Average"
msgstr "Maksimuma Meza Sistemŝargo"
-#: src/Module/Admin/Site.php:471
+#: 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:472
+#: src/Module/Admin/Site.php:481
msgid "Minimal Memory"
msgstr ""
-#: src/Module/Admin/Site.php:472
+#: 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:473
+#: src/Module/Admin/Site.php:482
msgid "Periodically optimize tables"
msgstr ""
-#: src/Module/Admin/Site.php:473
+#: src/Module/Admin/Site.php:482
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr ""
-#: src/Module/Admin/Site.php:475
+#: src/Module/Admin/Site.php:484
msgid "Discover followers/followings from contacts"
msgstr ""
-#: src/Module/Admin/Site.php:475
+#: src/Module/Admin/Site.php:484
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr ""
-#: src/Module/Admin/Site.php:476
+#: src/Module/Admin/Site.php:485
msgid "None - deactivated"
msgstr ""
-#: src/Module/Admin/Site.php:477
+#: 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:478
+#: 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:480
+#: src/Module/Admin/Site.php:489
msgid "Synchronize the contacts with the directory server"
msgstr ""
-#: src/Module/Admin/Site.php:480
+#: 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:482
+#: src/Module/Admin/Site.php:491
msgid "Days between requery"
msgstr ""
-#: src/Module/Admin/Site.php:482
+#: 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:483
+#: src/Module/Admin/Site.php:492
msgid "Discover contacts from other servers"
msgstr ""
-#: src/Module/Admin/Site.php:483
+#: 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:484
+#: src/Module/Admin/Site.php:493
msgid "Search the local directory"
msgstr ""
-#: src/Module/Admin/Site.php:484
+#: 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:486
+#: src/Module/Admin/Site.php:495
msgid "Publish server information"
msgstr ""
-#: src/Module/Admin/Site.php:486
+#: 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 "
@@ -4736,50 +5021,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr ""
-#: src/Module/Admin/Site.php:488
+#: src/Module/Admin/Site.php:497
msgid "Check upstream version"
msgstr ""
-#: src/Module/Admin/Site.php:488
+#: 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:489
+#: src/Module/Admin/Site.php:498
msgid "Suppress Tags"
msgstr ""
-#: src/Module/Admin/Site.php:489
+#: 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:490
+#: src/Module/Admin/Site.php:499
msgid "Clean database"
msgstr ""
-#: src/Module/Admin/Site.php:490
+#: 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:491
+#: src/Module/Admin/Site.php:500
msgid "Lifespan of remote items"
msgstr ""
-#: src/Module/Admin/Site.php:491
+#: 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:492
+#: src/Module/Admin/Site.php:501
msgid "Lifespan of unclaimed items"
msgstr ""
-#: src/Module/Admin/Site.php:492
+#: 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. "
@@ -4787,144 +5072,144 @@ msgid ""
"items if set to 0."
msgstr ""
-#: src/Module/Admin/Site.php:493
+#: src/Module/Admin/Site.php:502
msgid "Lifespan of raw conversation data"
msgstr ""
-#: src/Module/Admin/Site.php:493
+#: 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:494
+#: src/Module/Admin/Site.php:503
msgid "Maximum numbers of comments per post"
msgstr ""
-#: src/Module/Admin/Site.php:494
+#: 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:495
+#: src/Module/Admin/Site.php:504
msgid "Maximum numbers of comments per post on the display page"
msgstr ""
-#: src/Module/Admin/Site.php:495
+#: 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:496
+#: src/Module/Admin/Site.php:505
msgid "Temp path"
msgstr ""
-#: src/Module/Admin/Site.php:496
+#: 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:497
+#: src/Module/Admin/Site.php:506
msgid "Only search in tags"
msgstr ""
-#: src/Module/Admin/Site.php:497
+#: 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:498
-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:498
+#: src/Module/Admin/Site.php:507
msgid ""
-"On systems with users that heavily use contact groups the query can be very "
-"expensive."
+"On systems with users that heavily use contact circles the query can be very"
+" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:509
msgid "Maximum number of parallel workers"
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: 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:501
+#: src/Module/Admin/Site.php:510
msgid "Enable fastlane"
msgstr ""
-#: src/Module/Admin/Site.php:501
+#: 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:503
+#: src/Module/Admin/Site.php:512
msgid "Direct relay transfer"
msgstr ""
-#: src/Module/Admin/Site.php:503
+#: 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:504
+#: src/Module/Admin/Site.php:513
msgid "Relay scope"
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: 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:504 src/Module/Contact/Profile.php:287
+#: 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:504
+#: src/Module/Admin/Site.php:513
msgid "all"
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:513
msgid "tags"
msgstr ""
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:514
msgid "Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:514
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:515
msgid "Deny Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:515
msgid "Comma separated list of tags that are rejected."
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:516
msgid "Allow user tags"
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: 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:510
+#: src/Module/Admin/Site.php:519
msgid "Start Relocation"
msgstr ""
@@ -4970,7 +5255,13 @@ 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 ""
@@ -5074,51 +5365,40 @@ msgid ""
"href=\"%s\">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
+#: 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:180
+#: 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:188
+#: 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:199
+#: src/Module/Admin/Summary.php:175
msgid "Message queues"
msgstr "Mesaĝvicoj"
-#: src/Module/Admin/Summary.php:205
+#: src/Module/Admin/Summary.php:181
msgid "Server Settings"
msgstr ""
-#: src/Module/Admin/Summary.php:223
+#: src/Module/Admin/Summary.php:199
msgid "Version"
msgstr "Versio"
-#: src/Module/Admin/Summary.php:227
+#: src/Module/Admin/Summary.php:203
msgid "Active addons"
msgstr ""
@@ -5158,16 +5438,16 @@ 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 "[Eksperimenta]"
-#: src/Module/Admin/Themes/Index.php:121
+#: src/Module/Admin/Themes/Index.php:120
msgid "[Unsupported]"
msgstr "[Nesubtenata]"
@@ -5271,11 +5551,11 @@ msgstr "Elemento ne trovita."
msgid "Please login to continue."
msgstr "Bonvolu ensaluti por pluigi."
-#: src/Module/BaseAdmin.php:63 src/Module/BaseModeration.php:86
+#: src/Module/BaseAdmin.php:63
msgid "You don't have access to administration pages."
msgstr ""
-#: src/Module/BaseAdmin.php:67 src/Module/BaseModeration.php:90
+#: src/Module/BaseAdmin.php:67
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
@@ -5285,11 +5565,11 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:111
+#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
msgid "Configuration"
msgstr ""
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:112
+#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
msgid "Additional features"
msgstr ""
@@ -5309,7 +5589,7 @@ msgstr ""
msgid "Inspect worker Queue"
msgstr ""
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:119
+#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
msgid "Diagnostics"
msgstr ""
@@ -5337,23 +5617,23 @@ msgstr ""
msgid "Addon Features"
msgstr ""
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:128
+#: 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:266 src/Module/BaseApi.php:282
-#: src/Module/BaseApi.php:298
+#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467
+#: src/Module/BaseApi.php:483
msgid "Too Many Requests"
msgstr ""
-#: src/Module/BaseApi.php:267
+#: 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:283
+#: src/Module/BaseApi.php:468
#, php-format
msgid "Weekly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -5361,7 +5641,7 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: src/Module/BaseApi.php:299
+#: src/Module/BaseApi.php:484
#, php-format
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -5369,32 +5649,46 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: src/Module/BaseModeration.php:112 src/Module/Moderation/Users/Index.php:148
+#: 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:114
+#: src/Module/BaseModeration.php:115
msgid "Tools"
msgstr ""
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:116
msgid "Contact Blocklist"
msgstr ""
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:117
msgid "Server Blocklist"
msgstr ""
-#: src/Module/BaseModeration.php:117 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
msgid "Delete Item"
msgstr ""
-#: src/Module/BaseModeration.php:120 src/Module/Moderation/Item/Source.php:76
+#: 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:479
+#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507
msgid "Profile Details"
msgstr "Profildetaloj"
@@ -5406,7 +5700,7 @@ msgstr ""
msgid "Only You Can See This"
msgstr "Nur Vi Povas Vidi Tiun"
-#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:82
+#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81
msgid "Scheduled Posts"
msgstr ""
@@ -5418,50 +5712,67 @@ msgstr ""
msgid "Tips for New Members"
msgstr "Konsilo por novaj membroj"
-#: 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/BaseSearch.php:119 src/Module/Contact/MatchInterests.php:139
+#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139
msgid "No matches"
msgstr "Nenio estas trovita"
-#: src/Module/BaseSettings.php:80
+#: 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:87 src/Module/Security/TwoFactor/Verify.php:96
+#: 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:120
+#: src/Module/BaseSettings.php:118
msgid "Display"
msgstr ""
-#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:202
+#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204
msgid "Social Networks"
msgstr ""
-#: src/Module/BaseSettings.php:141 src/Module/Settings/Delegation.php:170
+#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172
msgid "Manage Accounts"
msgstr ""
-#: src/Module/BaseSettings.php:148
+#: src/Module/BaseSettings.php:146
msgid "Connected apps"
msgstr "Konektitaj programoj"
-#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:98
+#: 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:162
+#: src/Module/BaseSettings.php:167
msgid "Remove account"
msgstr "Forigi konton"
@@ -5581,10 +5892,113 @@ msgstr ""
msgid "Create New Event"
msgstr "Krei novan okazon"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:235
+#: 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."
@@ -5592,159 +6006,146 @@ msgid_plural "%d contacts edited."
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Contact.php:342
+#: src/Module/Contact.php:348
msgid "Show all contacts"
msgstr "Montri ĉiujn kontaktojn"
-#: src/Module/Contact.php:347 src/Module/Contact.php:415
+#: src/Module/Contact.php:353 src/Module/Contact.php:432
#: src/Module/Moderation/BaseUsers.php:85
msgid "Pending"
msgstr ""
-#: src/Module/Contact.php:350
+#: src/Module/Contact.php:356
msgid "Only show pending contacts"
msgstr ""
-#: src/Module/Contact.php:355 src/Module/Contact.php:416
+#: src/Module/Contact.php:361 src/Module/Contact.php:435
#: src/Module/Moderation/BaseUsers.php:93
msgid "Blocked"
msgstr "Blokita"
-#: src/Module/Contact.php:358
+#: src/Module/Contact.php:364
msgid "Only show blocked contacts"
msgstr "Nur montri blokitajn kontaktojn"
-#: src/Module/Contact.php:363 src/Module/Contact.php:418
-#: src/Object/Post.php:344
+#: 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:366
+#: src/Module/Contact.php:372
msgid "Only show ignored contacts"
msgstr "Nur montri ignoritajn kontaktojn"
-#: src/Module/Contact.php:371 src/Module/Contact.php:419
+#: src/Module/Contact.php:377 src/Module/Contact.php:444
msgid "Collapsed"
msgstr ""
-#: src/Module/Contact.php:374
+#: src/Module/Contact.php:380
msgid "Only show collapsed contacts"
msgstr ""
-#: src/Module/Contact.php:379 src/Module/Contact.php:420
+#: src/Module/Contact.php:385 src/Module/Contact.php:447
msgid "Archived"
msgstr "Enarkivigita"
-#: src/Module/Contact.php:382
+#: src/Module/Contact.php:388
msgid "Only show archived contacts"
msgstr "Nur montri enarkivigitajn kontaktojn"
-#: src/Module/Contact.php:387 src/Module/Contact.php:417
+#: src/Module/Contact.php:393 src/Module/Contact.php:438
msgid "Hidden"
msgstr "Kaŝita"
-#: src/Module/Contact.php:390
+#: src/Module/Contact.php:396
msgid "Only show hidden contacts"
msgstr "Nur montri kaŝitajn kontaktojn"
-#: src/Module/Contact.php:398
-msgid "Organize your contact groups"
+#: src/Module/Contact.php:404
+msgid "Organize your contact circles"
msgstr ""
-#: src/Module/Contact.php:431
+#: src/Module/Contact.php:459
msgid "Search your contacts"
msgstr "Serĉi viajn kontaktojn"
-#: src/Module/Contact.php:432 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:439
+#: src/Module/Contact.php:467
msgid "Update"
msgstr "Ĝisdatigi"
-#: src/Module/Contact.php:440 src/Module/Contact/Profile.php:478
+#: 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:441 src/Module/Contact/Profile.php:486
+#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519
msgid "Unignore"
msgstr "Malignori"
-#: src/Module/Contact.php:442 src/Module/Contact/Profile.php:494
+#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527
msgid "Uncollapse"
msgstr ""
-#: src/Module/Contact.php:444
+#: src/Module/Contact.php:472
msgid "Batch Actions"
msgstr ""
-#: src/Module/Contact.php:487
+#: src/Module/Contact.php:515
msgid "Conversations started by this contact"
msgstr ""
-#: src/Module/Contact.php:492
+#: src/Module/Contact.php:520
msgid "Posts and Comments"
msgstr ""
-#: src/Module/Contact.php:495
+#: src/Module/Contact.php:523
msgid "Individual Posts and Replies"
msgstr ""
-#: src/Module/Contact.php:503
+#: src/Module/Contact.php:531
msgid "Posts containing media objects"
msgstr ""
-#: src/Module/Contact.php:510
+#: src/Module/Contact.php:539
msgid "View all known contacts"
msgstr ""
-#: src/Module/Contact.php:520
+#: src/Module/Contact.php:550
msgid "Advanced Contact Settings"
msgstr "Specialaj Kontaktagordoj"
-#: src/Module/Contact.php:556
+#: src/Module/Contact.php:586
msgid "Mutual Friendship"
msgstr "Reciproka amikeco"
-#: src/Module/Contact.php:560
+#: src/Module/Contact.php:590
msgid "is a fan of yours"
msgstr "estas admiranto de vi"
-#: src/Module/Contact.php:564
+#: src/Module/Contact.php:594
msgid "you are a fan of"
msgstr "vi estas admiranto de"
-#: src/Module/Contact.php:582
+#: src/Module/Contact.php:612
msgid "Pending outgoing contact request"
msgstr ""
-#: src/Module/Contact.php:584
+#: src/Module/Contact.php:614
msgid "Pending incoming contact request"
msgstr ""
-#: src/Module/Contact.php:597 src/Module/Contact/Profile.php:347
+#: 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: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
-#: src/Module/Group.php:97 src/Module/Group.php:106
-msgid "Contact not found."
-msgstr "Kontakto ne trovita."
-
#: src/Module/Contact/Advanced.php:99
msgid "Contact update failed."
msgstr "Ĝisdatigo de kontakto malsukcesis."
@@ -5755,13 +6156,14 @@ 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:71
+#: 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:73
+#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72
msgid "Name"
msgstr "Nomo"
@@ -5781,11 +6183,6 @@ msgstr "Adreso de fluo"
msgid "New photo from this URL"
msgstr "Nova bildo el tiu adreso"
-#: src/Module/Contact/Contacts.php:66 src/Module/Conversation/Network.php:189
-#: src/Module/Group.php:101
-msgid "Invalid contact."
-msgstr "Nevalida kontakto."
-
#: src/Module/Contact/Contacts.php:89
msgid "No known contacts."
msgstr ""
@@ -5794,28 +6191,28 @@ msgstr ""
msgid "No common contacts."
msgstr ""
-#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:132
+#: 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:135
+#: 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:138
+#: 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:140
+#: 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 ""
@@ -5834,15 +6231,15 @@ msgid ""
"contacts (follow, comment or likes on public posts)."
msgstr ""
-#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:146
+#: 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:69 src/Module/Contact/Redir.php:62
-#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:194
+#: 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
@@ -5851,71 +6248,72 @@ msgstr[1] ""
msgid "Access denied."
msgstr "Atingo nepermesita."
-#: src/Module/Contact/Follow.php:104 src/Module/Contact/Unfollow.php:125
+#: 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:114
+#: src/Module/Contact/Follow.php:115
msgid "You already added this contact."
msgstr ""
-#: src/Module/Contact/Follow.php:129
+#: 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:137
+#: src/Module/Contact/Follow.php:138
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr ""
-#: src/Module/Contact/Follow.php:142
+#: src/Module/Contact/Follow.php:143
msgid "OStatus support is disabled. Contact can't be added."
msgstr ""
-#: src/Module/Contact/Follow.php:167 src/Module/Profile/RemoteFollow.php:132
+#: 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:168 src/Module/Contact/Unfollow.php:123
+#: 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:169 src/Module/Contact/Profile.php:376
+#: 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:170 src/Module/Contact/Profile.php:388
+#: 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:181
+#: src/Module/Contact/Follow.php:182
#, php-format
msgid "%s knows you"
msgstr ""
-#: src/Module/Contact/Follow.php:182
+#: src/Module/Contact/Follow.php:183
msgid "Add a personal note:"
msgstr "Aldoni personan noton:"
-#: src/Module/Contact/Follow.php:191 src/Module/Contact/Unfollow.php:138
+#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138
msgid "Posts and Replies"
msgstr ""
-#: src/Module/Contact/Follow.php:220
+#: 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:79
-#: src/Module/Media/Attachment/Upload.php:84
-#: src/Module/Media/Photo/Upload.php:83 src/Module/Media/Photo/Upload.php:88
-#: src/Module/Media/Photo/Upload.php:137
+#: 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 ""
@@ -5927,248 +6325,312 @@ msgstr ""
msgid "Profile Match"
msgstr "Kongrua profilo"
-#: src/Module/Contact/Profile.php:128
+#: src/Module/Contact/Profile.php:140
msgid "Failed to update contact record."
msgstr "Ĝisdatigo de via kontaktrikordo malsukcesis."
-#: src/Module/Contact/Profile.php:178
+#: src/Module/Contact/Profile.php:190
msgid "Contact has been unblocked"
msgstr "Kontakto estas malblokita."
-#: src/Module/Contact/Profile.php:182
+#: src/Module/Contact/Profile.php:194
msgid "Contact has been blocked"
msgstr "Kontakto estas blokita."
-#: src/Module/Contact/Profile.php:194
+#: src/Module/Contact/Profile.php:206
msgid "Contact has been unignored"
msgstr "Kontakto estas malignorita."
-#: src/Module/Contact/Profile.php:198
+#: src/Module/Contact/Profile.php:210
msgid "Contact has been ignored"
msgstr "Kontakto estas ignorita."
-#: src/Module/Contact/Profile.php:210
+#: src/Module/Contact/Profile.php:222
msgid "Contact has been uncollapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:214
+#: src/Module/Contact/Profile.php:226
msgid "Contact has been collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:243
+#: src/Module/Contact/Profile.php:254
#, php-format
msgid "You are mutual friends with %s"
msgstr "Vi estas reciproka amiko de %s"
-#: src/Module/Contact/Profile.php:244
+#: src/Module/Contact/Profile.php:255
#, php-format
msgid "You are sharing with %s"
msgstr "Vi kunhavigas kun %s"
-#: src/Module/Contact/Profile.php:245
+#: src/Module/Contact/Profile.php:256
#, php-format
msgid "%s is sharing with you"
msgstr "%s kunhavigas kun vi"
-#: src/Module/Contact/Profile.php:261
+#: src/Module/Contact/Profile.php:272
msgid "Private communications are not available for this contact."
msgstr "Privataj komunikadoj ne disponeblas por ĉi tiu kontakto."
-#: src/Module/Contact/Profile.php:263
+#: 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 "Neniam"
-#: src/Module/Contact/Profile.php:266
+#: src/Module/Contact/Profile.php:288
msgid "(Update was not successful)"
msgstr "(Ĝisdatigo malsukcesis.)"
-#: src/Module/Contact/Profile.php:266
+#: src/Module/Contact/Profile.php:288
msgid "(Update was successful)"
msgstr "(Ĝisdatigo sukcesis.)"
-#: src/Module/Contact/Profile.php:268 src/Module/Contact/Profile.php:449
+#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482
msgid "Suggest friends"
msgstr "Sugesti amikojn"
-#: src/Module/Contact/Profile.php:272
+#: src/Module/Contact/Profile.php:294
#, php-format
msgid "Network type: %s"
msgstr "Reta tipo: %s"
-#: src/Module/Contact/Profile.php:277
+#: src/Module/Contact/Profile.php:299
msgid "Communications lost with this contact!"
msgstr "Mi perdis la kommunikadon kun tiu kontakto!"
-#: src/Module/Contact/Profile.php:283
+#: src/Module/Contact/Profile.php:305
msgid "Fetch further information for feeds"
msgstr ""
-#: src/Module/Contact/Profile.php:285
+#: 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:288
+#: src/Module/Contact/Profile.php:310
msgid "Fetch information"
msgstr ""
-#: src/Module/Contact/Profile.php:289
+#: src/Module/Contact/Profile.php:311
msgid "Fetch keywords"
msgstr ""
-#: src/Module/Contact/Profile.php:290
+#: src/Module/Contact/Profile.php:312
msgid "Fetch information and keywords"
msgstr ""
-#: src/Module/Contact/Profile.php:300 src/Module/Contact/Profile.php:305
-#: src/Module/Contact/Profile.php:310 src/Module/Contact/Profile.php:316
+#: 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:301 src/Module/Contact/Profile.php:311
-#: src/Module/Contact/Profile.php:317
+#: 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:306 src/Module/Contact/Profile.php:312
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334
msgid "Native reshare"
msgstr ""
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:353
msgid "Contact Information / Notes"
msgstr "Kontaktaj informoj / Notoj"
-#: src/Module/Contact/Profile.php:330
+#: src/Module/Contact/Profile.php:354
msgid "Contact Settings"
msgstr ""
-#: src/Module/Contact/Profile.php:338
+#: src/Module/Contact/Profile.php:362
msgid "Contact"
msgstr ""
-#: src/Module/Contact/Profile.php:342
+#: src/Module/Contact/Profile.php:366
msgid "Their personal note"
msgstr ""
-#: src/Module/Contact/Profile.php:344
+#: src/Module/Contact/Profile.php:368
msgid "Edit contact notes"
msgstr "Redakti kontaktnotojn"
-#: src/Module/Contact/Profile.php:348
+#: src/Module/Contact/Profile.php:372
msgid "Block/Unblock contact"
msgstr "Bloki/Malbloki kontakton"
-#: src/Module/Contact/Profile.php:349
+#: src/Module/Contact/Profile.php:373
+#: src/Module/Moderation/Report/Create.php:293
msgid "Ignore contact"
msgstr "Ignori kontakton"
-#: src/Module/Contact/Profile.php:350
+#: src/Module/Contact/Profile.php:374
msgid "View conversations"
msgstr "Vidi konversaciojn"
-#: src/Module/Contact/Profile.php:355
+#: src/Module/Contact/Profile.php:379
msgid "Last update:"
msgstr "Plej ĵusa ĝisdatigo:"
-#: src/Module/Contact/Profile.php:357
+#: src/Module/Contact/Profile.php:381
msgid "Update public posts"
msgstr "Ĝisdatigi publikajn afiŝojn"
-#: src/Module/Contact/Profile.php:359 src/Module/Contact/Profile.php:459
+#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492
msgid "Update now"
msgstr "Ĝisdatigi nun"
-#: src/Module/Contact/Profile.php:361
+#: src/Module/Contact/Profile.php:385
msgid "Awaiting connection acknowledge"
msgstr ""
-#: src/Module/Contact/Profile.php:362
+#: src/Module/Contact/Profile.php:386
msgid "Currently blocked"
msgstr "Nuntempe blokata"
-#: src/Module/Contact/Profile.php:363
+#: src/Module/Contact/Profile.php:387
msgid "Currently ignored"
msgstr "Nuntempe ignorata"
-#: src/Module/Contact/Profile.php:364
+#: src/Module/Contact/Profile.php:388
msgid "Currently collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:365
+#: src/Module/Contact/Profile.php:389
msgid "Currently archived"
msgstr "Nuntempe enarkivigita"
-#: src/Module/Contact/Profile.php:368
+#: 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:368
+#: 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"
-#: src/Module/Contact/Profile.php:369
+#: src/Module/Contact/Profile.php:395
msgid "Notification for new posts"
msgstr ""
-#: src/Module/Contact/Profile.php:369
+#: src/Module/Contact/Profile.php:395
msgid "Send a notification of every new post of this contact"
msgstr ""
-#: src/Module/Contact/Profile.php:371
+#: src/Module/Contact/Profile.php:397
msgid "Keyword Deny List"
msgstr ""
-#: src/Module/Contact/Profile.php:371
+#: 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:389
+#: src/Module/Contact/Profile.php:415
#: src/Module/Settings/TwoFactor/Index.php:139
msgid "Actions"
msgstr ""
-#: src/Module/Contact/Profile.php:391
+#: 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:397
+#: src/Module/Contact/Profile.php:423
msgid "Mirror postings from this contact"
msgstr ""
-#: src/Module/Contact/Profile.php:399
+#: 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:469
+#: 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:480
+#: src/Module/Contact/Profile.php:513
msgid "Toggle Blocked status"
msgstr "Ŝalti/malŝalti Blokitan staton"
-#: src/Module/Contact/Profile.php:488
+#: src/Module/Contact/Profile.php:521
msgid "Toggle Ignored status"
msgstr "Ŝalti/malŝalti Ignoritan staton"
-#: src/Module/Contact/Profile.php:496
+#: src/Module/Contact/Profile.php:529
msgid "Toggle Collapsed status"
msgstr ""
-#: src/Module/Contact/Profile.php:503 src/Module/Contact/Revoke.php:106
+#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106
msgid "Revoke Follow"
msgstr ""
-#: src/Module/Contact/Profile.php:505
+#: src/Module/Contact/Profile.php:538
msgid "Revoke the follow from this contact"
msgstr ""
@@ -6180,10 +6642,6 @@ msgstr ""
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 ""
@@ -6231,103 +6689,55 @@ msgstr ""
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr ""
-#: src/Module/Conversation/Community.php:74
+#: 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:87
-msgid "Local Community"
-msgstr ""
-
-#: src/Module/Conversation/Community.php:90
-msgid "Posts from local users on this server"
-msgstr ""
-
-#: src/Module/Conversation/Community.php:98
-msgid "Global Community"
-msgstr ""
-
-#: src/Module/Conversation/Community.php:101
-msgid "Posts from users of the whole federated network"
-msgstr ""
-
-#: 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 "Nenion trovita."
-
-#: 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 "Ne disponebla."
-#: src/Module/Conversation/Network.php:175
-msgid "No such group"
-msgstr "Grupo ne estas trovita"
+#: src/Module/Conversation/Network.php:218
+msgid "No such circle"
+msgstr ""
-#: src/Module/Conversation/Network.php:179
+#: src/Module/Conversation/Network.php:222
#, php-format
-msgid "Group: %s"
+msgid "Circle: %s"
msgstr ""
-#: src/Module/Conversation/Network.php:257
-msgid "Latest Activity"
+#: src/Module/Conversation/Network.php:317
+msgid "Network feed not available."
msgstr ""
-#: src/Module/Conversation/Network.php:260
-msgid "Sort by latest activity"
+#: src/Module/Conversation/Timeline.php:158
+msgid "Own Contacts"
msgstr ""
-#: src/Module/Conversation/Network.php:265
-msgid "Latest Posts"
+#: src/Module/Conversation/Timeline.php:162
+msgid "Include"
msgstr ""
-#: src/Module/Conversation/Network.php:268
-msgid "Sort by post received date"
+#: src/Module/Conversation/Timeline.php:163
+msgid "Hide"
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:236
-msgid "Personal"
-msgstr "Propra"
-
-#: src/Module/Conversation/Network.php:284
-msgid "Posts that mention or involve you"
-msgstr "Afiŝoj menciantaj vin aŭ pri vi"
-
-#: src/Module/Conversation/Network.php:289 src/Object/Post.php:356
-msgid "Starred"
-msgstr "Steligita"
-
-#: src/Module/Conversation/Network.php:292
-msgid "Favourite Posts"
-msgstr "Favorigitaj Afiŝoj"
-
#: src/Module/Credits.php:44
msgid "Credits"
msgstr ""
@@ -6544,7 +6954,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:144
+#: src/Module/Settings/Profile/Index.php:177
msgid "You must be logged in to use this module"
msgstr ""
@@ -6673,138 +7083,58 @@ msgstr "Sugesti amikojn"
msgid "Suggest a friend for %s"
msgstr "Sugesti amikon por %s"
-#: src/Module/Friendica.php:64
+#: src/Module/Friendica.php:82
msgid "Installed addons/apps:"
msgstr ""
-#: src/Module/Friendica.php:69
+#: src/Module/Friendica.php:87
msgid "No installed addons/apps"
msgstr ""
-#: src/Module/Friendica.php:74
+#: src/Module/Friendica.php:92
#, php-format
msgid "Read about the Terms of Service of this node."
msgstr ""
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:99
msgid "On this server the following remote servers are blocked."
msgstr ""
-#: 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 ""
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:104
msgid "Download this list in CSV format"
msgstr ""
-#: src/Module/Friendica.php:100
+#: 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:105
+#: src/Module/Friendica.php:123
msgid ""
"Please visit Friendi.ca to learn more "
"about the Friendica project."
msgstr ""
-#: src/Module/Friendica.php:106
+#: src/Module/Friendica.php:124
msgid "Bug reports and issues: please visit"
msgstr "Cimraportoj kaj atendindaĵo: bonvolu iri al"
-#: src/Module/Friendica.php:106
+#: src/Module/Friendica.php:124
msgid "the bugtracker at github"
msgstr ""
-#: src/Module/Friendica.php:107
+#: 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 "Ne povas krei grupon."
-
-#: src/Module/Group.php:67 src/Module/Group.php:213 src/Module/Group.php:237
-msgid "Group not found."
-msgstr "Grupo ne estas trovita."
-
-#: 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 "Krei grupon da kontaktoj/amikoj."
-
-#: src/Module/Group.php:218
-msgid "Unable to remove group."
-msgstr "Ne eblas forviŝi grupon."
-
-#: 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 "Anoj"
-
-#: src/Module/Group.php:292
-msgid "Group is empty"
-msgstr "Grupo estas malplena"
-
-#: 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 "Klaku kontakton por aldoni aŭ forviŝi."
-
-#: src/Module/Group.php:340
-msgid "Add contact to group"
-msgstr ""
-
#: src/Module/HCard.php:45
msgid "No profile"
msgstr "Neniu profilo"
@@ -7096,30 +7426,26 @@ 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/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 ""
@@ -7158,37 +7484,30 @@ msgstr "Dosieroj"
msgid "Upload"
msgstr "Alŝuti"
-#: src/Module/Media/Attachment/Upload.php:99
+#: 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:99
+#: src/Module/Media/Attachment/Upload.php:97
msgid "Or - did you try to upload an empty file?"
msgstr ""
-#: src/Module/Media/Attachment/Upload.php:106
+#: src/Module/Media/Attachment/Upload.php:104
#, php-format
msgid "File exceeds size limit of %s"
msgstr ""
-#: src/Module/Media/Attachment/Upload.php:116
+#: src/Module/Media/Attachment/Upload.php:114
msgid "File upload failed."
msgstr "Alŝutado malsukcesis."
-#: src/Module/Media/Photo/Upload.php:154 src/Module/Media/Photo/Upload.php:155
+#: 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:188 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/Media/Photo/Upload.php:206 src/Module/Profile/Photos.php:243
+#: 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."
@@ -7221,40 +7540,40 @@ msgstr ""
msgid "List of pending user deletions"
msgstr ""
-#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:491
+#: 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:498
+#: 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:505
-msgid "Public Forum"
+#: 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:512
+#: 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 Forum"
+msgid "Private Group"
msgstr ""
-#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:463
+#: 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:470
+#: 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:477
+#: 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:484
-msgid "Community Forum"
+#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485
+msgid "Community Group"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:130
@@ -7311,6 +7630,7 @@ msgid "Block New Remote Contact"
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:122
+#: src/Module/Moderation/Reports.php:95
msgid "Photo"
msgstr ""
@@ -7384,6 +7704,8 @@ 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 ""
@@ -7666,6 +7988,237 @@ msgstr ""
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"
@@ -7675,7 +8228,7 @@ msgid "Automatic Follower Account"
msgstr ""
#: src/Module/Moderation/Summary.php:55
-msgid "Public Forum Account"
+msgid "Public Group Account"
msgstr ""
#: src/Module/Moderation/Summary.php:56
@@ -7687,7 +8240,7 @@ msgid "Blog Account"
msgstr "Blogkonto"
#: src/Module/Moderation/Summary.php:58
-msgid "Private Forum Account"
+msgid "Private Group Account"
msgstr ""
#: src/Module/Moderation/Summary.php:78
@@ -7830,19 +8383,19 @@ msgstr ""
msgid "Add User"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:70
msgid "Name of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:71
msgid "Nickname"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:71
msgid "Nickname of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:73
+#: src/Module/Moderation/Users/Create.php:72
msgid "Email address of the new user."
msgstr ""
@@ -7988,11 +8541,11 @@ msgstr "Hejmrilataj atentigoj"
msgid "Show unread"
msgstr ""
-#: src/Module/Notifications/Ping.php:245
+#: src/Module/Notifications/Ping.php:246
msgid "{0} requested registration"
msgstr "{0} petis registradon"
-#: src/Module/Notifications/Ping.php:254
+#: src/Module/Notifications/Ping.php:255
#, php-format
msgid "{0} and %d others requested registration"
msgstr ""
@@ -8011,7 +8564,7 @@ msgstr "Ĉu rajtigi ĉi tiun programon por atingi viajn afiŝojn kaj kontaktojn
msgid "Unsupported or missing response type"
msgstr ""
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:77
+#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78
msgid "Incomplete request data"
msgstr ""
@@ -8022,11 +8575,11 @@ 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:104
+#: src/Module/OAuth/Token.php:108
msgid "Unsupported or missing grant type"
msgstr ""
@@ -8095,67 +8648,77 @@ msgstr ""
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 "Informoj pri fora privateca ne estas disponebla."
-#: src/Module/PermissionTooltip.php:116
+#: src/Module/PermissionTooltip.php:121
msgid "Visible to:"
msgstr "Videbla al:"
-#: 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:129
+#: 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:154
+#: src/Module/Photo.php:155
#, php-format
msgid "The Photo with id %s is not available."
msgstr ""
-#: src/Module/Photo.php:191
+#: src/Module/Photo.php:192
#, php-format
msgid "Invalid external resource with url %s."
msgstr ""
-#: src/Module/Photo.php:193
+#: src/Module/Photo.php:194
#, php-format
msgid "Invalid photo with id %s."
msgstr ""
@@ -8168,23 +8731,23 @@ msgstr ""
msgid "Edit post"
msgstr "Redakti afiŝon"
-#: src/Module/Post/Edit.php:133
+#: src/Module/Post/Edit.php:136
msgid "web link"
msgstr "TTT ligilo"
-#: src/Module/Post/Edit.php:134
+#: src/Module/Post/Edit.php:137
msgid "Insert video link"
msgstr "Alglui ligilon de video"
-#: src/Module/Post/Edit.php:135
+#: src/Module/Post/Edit.php:138
msgid "video link"
msgstr "video ligilo"
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:139
msgid "Insert audio link"
msgstr "Alglui ligilon de sono"
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:140
msgid "audio link"
msgstr "sono ligilo"
@@ -8196,35 +8759,42 @@ msgstr "Forviŝi markon"
msgid "Select a tag to remove: "
msgstr "Elektu forviŝontan markon:"
-#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:178
+#: 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:156
+#: 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:1026
-#: src/Protocol/OStatus.php:1007
+#: 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:1030 src/Protocol/OStatus.php:1012
+#: 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:1033 src/Protocol/OStatus.php:1016
+#: 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 ""
@@ -8243,7 +8813,7 @@ msgstr ""
msgid "Image file is empty."
msgstr "Bilddosiero estas malplena."
-#: src/Module/Profile/Photos.php:376
+#: src/Module/Profile/Photos.php:356
msgid "View Album"
msgstr "Vidi albumon"
@@ -8258,7 +8828,7 @@ msgid ""
"class=\"btn btn-sm pull-right\">Cancel"
msgstr ""
-#: src/Module/Profile/Profile.php:167 src/Module/Settings/Account.php:576
+#: src/Module/Profile/Profile.php:167
msgid "Full Name:"
msgstr "Plena Nomo:"
@@ -8279,12 +8849,12 @@ msgid "Birthday:"
msgstr "Naskiĝtago:"
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:170
+#: 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:254 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -8292,12 +8862,12 @@ msgstr[0] ""
msgstr[1] ""
#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:247
+#: src/Module/Settings/Profile/Index.php:284
msgid "Description:"
msgstr "Priskribo"
#: src/Module/Profile/Profile.php:261
-msgid "Forums:"
+msgid "Groups:"
msgstr ""
#: src/Module/Profile/Profile.php:273
@@ -8359,15 +8929,15 @@ msgid ""
"content from anonymous visitors."
msgstr ""
-#: src/Module/Profile/Schedule.php:84
+#: 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 ""
@@ -8388,22 +8958,22 @@ msgstr ""
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: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 "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: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 ""
@@ -8467,7 +9037,7 @@ msgstr ""
msgid "Please repeat your e-mail address:"
msgstr ""
-#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:101
+#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100
#: src/Module/Settings/Account.php:567
msgid "New Password:"
msgstr "Nova pasvorto:"
@@ -8476,7 +9046,7 @@ msgstr "Nova pasvorto:"
msgid "Leave empty for an auto generated password."
msgstr ""
-#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:102
+#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101
#: src/Module/Settings/Account.php:568
msgid "Confirm:"
msgstr "Konfirmi:"
@@ -8504,11 +9074,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:156
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:156
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr ""
@@ -8599,45 +9169,45 @@ msgstr ""
msgid "Create a New Account"
msgstr "Krei Novan Konton"
-#: 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 "Aŭ ensaluti per OpenID:"
-#: src/Module/Security/Login.php:162
+#: src/Module/Security/Login.php:161
msgid "Password: "
msgstr "Pasvorto:"
-#: 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 "Ĉu vi vorgesis vian pasvorton?"
-#: 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 ""
@@ -8694,25 +9264,25 @@ msgstr ""
msgid "Update Password"
msgstr ""
-#: src/Module/Security/PasswordTooLong.php:100
+#: src/Module/Security/PasswordTooLong.php:99
#: src/Module/Settings/Account.php:569
msgid "Current Password:"
msgstr ""
-#: src/Module/Security/PasswordTooLong.php:100
+#: 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:101
-#: src/Module/Settings/Account.php:552
+#: 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:101
-#: src/Module/Settings/Account.php:553
+#: src/Module/Security/PasswordTooLong.php:100
+#: src/Module/Settings/Account.php:554
msgid "Password length is limited to 72 characters."
msgstr ""
@@ -8836,99 +9406,99 @@ msgstr ""
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
+#: 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:363
+#: src/Module/Settings/Account.php:364
msgid "Contact CSV file upload error"
msgstr ""
-#: src/Module/Settings/Account.php:382
+#: src/Module/Settings/Account.php:383
msgid "Importing Contacts done"
msgstr ""
-#: src/Module/Settings/Account.php:395
+#: src/Module/Settings/Account.php:396
msgid "Relocate message has been send to your contacts"
msgstr ""
-#: src/Module/Settings/Account.php:412
+#: src/Module/Settings/Account.php:413
msgid "Unable to find your profile. Please contact your admin."
msgstr ""
-#: src/Module/Settings/Account.php:454
+#: src/Module/Settings/Account.php:455
msgid "Personal Page Subtypes"
msgstr ""
-#: src/Module/Settings/Account.php:455
-msgid "Community Forum Subtypes"
+#: src/Module/Settings/Account.php:456
+msgid "Community Group Subtypes"
msgstr ""
-#: src/Module/Settings/Account.php:465
+#: src/Module/Settings/Account.php:466
msgid "Account for a personal profile."
msgstr ""
-#: src/Module/Settings/Account.php:472
+#: src/Module/Settings/Account.php:473
msgid ""
"Account for an organisation that automatically approves contact requests as "
"\"Followers\"."
msgstr ""
-#: src/Module/Settings/Account.php:479
+#: 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:486
+#: src/Module/Settings/Account.php:487
msgid "Account for community discussions."
msgstr ""
-#: src/Module/Settings/Account.php:493
+#: 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:500
+#: 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:507
+#: src/Module/Settings/Account.php:508
msgid "Automatically approves all contact requests."
msgstr ""
-#: src/Module/Settings/Account.php:514
+#: 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:519
-msgid "Private Forum [Experimental]"
-msgstr "Privata Forumo [eksperimenta]"
+#: src/Module/Settings/Account.php:520
+msgid "Private Group [Experimental]"
+msgstr ""
-#: src/Module/Settings/Account.php:521
+#: src/Module/Settings/Account.php:522
msgid "Requires manual approval of contact requests."
msgstr ""
-#: src/Module/Settings/Account.php:530
+#: src/Module/Settings/Account.php:531
msgid "OpenID:"
msgstr "OpenID:"
-#: src/Module/Settings/Account.php:530
+#: 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:538
+#: src/Module/Settings/Account.php:539
msgid "Publish your profile in your local site directory?"
msgstr ""
-#: src/Module/Settings/Account.php:538
+#: src/Module/Settings/Account.php:539
#, php-format
msgid ""
"Your profile will be published in this node's local "
@@ -8936,18 +9506,18 @@ msgid ""
" system settings."
msgstr ""
-#: src/Module/Settings/Account.php:544
+#: 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:557
+#: src/Module/Settings/Account.php:558
msgid "Account Settings"
msgstr "Kontoagordoj"
-#: src/Module/Settings/Account.php:558
+#: src/Module/Settings/Account.php:559
#, php-format
msgid "Your Identity Address is '%s' or '%s'."
msgstr ""
@@ -8976,6 +9546,11 @@ msgstr ""
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:"
@@ -9102,201 +9677,209 @@ msgstr ""
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:601
+#: src/Module/Settings/Account.php:602
msgid "Expiration settings"
msgstr ""
-#: src/Module/Settings/Account.php:602
+#: 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:602
+#: 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:603
+#: src/Module/Settings/Account.php:604
msgid "Expire posts"
msgstr ""
-#: src/Module/Settings/Account.php:603
+#: src/Module/Settings/Account.php:604
msgid "When activated, posts and comments will be expired."
msgstr ""
-#: src/Module/Settings/Account.php:604
+#: src/Module/Settings/Account.php:605
msgid "Expire personal notes"
msgstr ""
-#: src/Module/Settings/Account.php:604
+#: 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:605
+#: src/Module/Settings/Account.php:606
msgid "Expire starred posts"
msgstr ""
-#: src/Module/Settings/Account.php:605
+#: 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:606
+#: src/Module/Settings/Account.php:607
msgid "Only expire posts by others"
msgstr ""
-#: src/Module/Settings/Account.php:606
+#: 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:609
+#: src/Module/Settings/Account.php:610
msgid "Notification Settings"
msgstr "Agordoj pri Atentigoj"
-#: src/Module/Settings/Account.php:610
+#: src/Module/Settings/Account.php:611
msgid "Send a notification email when:"
msgstr "Sendu atentiga repoŝton se:"
-#: src/Module/Settings/Account.php:611
+#: src/Module/Settings/Account.php:612
msgid "You receive an introduction"
msgstr "Vi ricevas inviton"
-#: src/Module/Settings/Account.php:612
+#: src/Module/Settings/Account.php:613
msgid "Your introductions are confirmed"
msgstr "Viaj prezentoj estas konfirmata."
-#: src/Module/Settings/Account.php:613
+#: 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:614
+#: src/Module/Settings/Account.php:615
msgid "Someone writes a followup comment"
msgstr "Iu skribas sekvan komenton"
-#: src/Module/Settings/Account.php:615
+#: src/Module/Settings/Account.php:616
msgid "You receive a private message"
msgstr "Vi ricevas privatan mesaĝon."
-#: src/Module/Settings/Account.php:616
+#: src/Module/Settings/Account.php:617
msgid "You receive a friend suggestion"
msgstr "Vi ricevas amikosugeston"
-#: src/Module/Settings/Account.php:617
+#: 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: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 ""
-#: 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 "Detalaj Agordoj pri Tipo de Konto/Paĝo."
-#: src/Module/Settings/Account.php:650
+#: 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: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 ""
-#: 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 ""
@@ -9308,73 +9891,73 @@ msgstr ""
msgid "No Addon settings configured"
msgstr ""
-#: src/Module/Settings/Connectors.php:119
+#: 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:164
-#: src/Module/Settings/Connectors.php:165
+#: src/Module/Settings/Connectors.php:166
+#: src/Module/Settings/Connectors.php:167
msgid "Diaspora (Socialhome, Hubzilla)"
msgstr ""
-#: src/Module/Settings/Connectors.php:164
-#: src/Module/Settings/Connectors.php:168
+#: 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:165
#: 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:167
-#: src/Module/Settings/Connectors.php:168
+#: src/Module/Settings/Connectors.php:169
+#: src/Module/Settings/Connectors.php:170
msgid "OStatus (GNU Social)"
msgstr ""
-#: src/Module/Settings/Connectors.php:180
+#: 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:195
-#: src/Module/Settings/Connectors.php:241
+#: src/Module/Settings/Connectors.php:197
+#: src/Module/Settings/Connectors.php:244
msgid "None"
msgstr "Nenio"
-#: src/Module/Settings/Connectors.php:207
+#: src/Module/Settings/Connectors.php:209
msgid "General Social Media Settings"
msgstr ""
-#: src/Module/Settings/Connectors.php:210
+#: src/Module/Settings/Connectors.php:212
msgid "Followed content scope"
msgstr ""
-#: src/Module/Settings/Connectors.php:212
+#: 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:214
+#: src/Module/Settings/Connectors.php:216
msgid "Only conversations my follows started"
msgstr ""
-#: src/Module/Settings/Connectors.php:215
+#: src/Module/Settings/Connectors.php:217
msgid "Conversations my follows started or commented on (default)"
msgstr ""
-#: src/Module/Settings/Connectors.php:216
+#: src/Module/Settings/Connectors.php:218
msgid "Any conversation my follows interacted with, including likes"
msgstr ""
-#: src/Module/Settings/Connectors.php:219
+#: src/Module/Settings/Connectors.php:221
msgid "Enable Content Warning"
msgstr ""
-#: src/Module/Settings/Connectors.php:219
+#: 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 "
@@ -9382,499 +9965,531 @@ msgid ""
" affect any other content filtering you eventually set up."
msgstr ""
-#: src/Module/Settings/Connectors.php:220
+#: src/Module/Settings/Connectors.php:222
msgid "Enable intelligent shortening"
msgstr ""
-#: src/Module/Settings/Connectors.php:220
+#: 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:221
+#: src/Module/Settings/Connectors.php:223
msgid "Enable simple text shortening"
msgstr ""
-#: src/Module/Settings/Connectors.php:221
+#: 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:222
+#: src/Module/Settings/Connectors.php:224
msgid "Attach the link title"
msgstr ""
-#: src/Module/Settings/Connectors.php:222
+#: 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:223
+#: src/Module/Settings/Connectors.php:225
msgid "API: Use spoiler field as title"
msgstr ""
-#: src/Module/Settings/Connectors.php:223
+#: 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:224
+#: 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:224
+#: 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:226
+#: src/Module/Settings/Connectors.php:229
msgid "Repair OStatus subscriptions"
msgstr ""
-#: src/Module/Settings/Connectors.php:230
+#: src/Module/Settings/Connectors.php:233
msgid "Email/Mailbox Setup"
msgstr "Agordoj pri Retpoŝto"
-#: src/Module/Settings/Connectors.php:231
+#: 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:232
+#: src/Module/Settings/Connectors.php:235
msgid "Last successful email check:"
msgstr "Plej ĵusa sukcesa kontrolo de poŝto:"
-#: src/Module/Settings/Connectors.php:234
+#: src/Module/Settings/Connectors.php:237
msgid "IMAP server name:"
msgstr "Nomo de IMAP servilo:"
-#: src/Module/Settings/Connectors.php:235
+#: src/Module/Settings/Connectors.php:238
msgid "IMAP port:"
msgstr "Numero de IMAP pordo:"
-#: src/Module/Settings/Connectors.php:236
+#: src/Module/Settings/Connectors.php:239
msgid "Security:"
msgstr "Sekureco:"
-#: src/Module/Settings/Connectors.php:237
+#: src/Module/Settings/Connectors.php:240
msgid "Email login name:"
msgstr "Retpoŝta salutnomo:"
-#: src/Module/Settings/Connectors.php:238
+#: src/Module/Settings/Connectors.php:241
msgid "Email password:"
msgstr "Retpoŝta pasvorto:"
-#: src/Module/Settings/Connectors.php:239
+#: src/Module/Settings/Connectors.php:242
msgid "Reply-to address:"
msgstr "Responda adreso (Reply-to):"
-#: src/Module/Settings/Connectors.php:240
+#: 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:241
+#: src/Module/Settings/Connectors.php:244
msgid "Action after import:"
msgstr "Ago post la importado:"
-#: src/Module/Settings/Connectors.php:241
+#: src/Module/Settings/Connectors.php:244
msgid "Move to folder"
msgstr "Movi al dosierujo"
-#: src/Module/Settings/Connectors.php:242
+#: src/Module/Settings/Connectors.php:245
msgid "Move to folder:"
msgstr "Movi al dosierujo:"
-#: src/Module/Settings/Delegation.php:52
+#: src/Module/Settings/Delegation.php:54
msgid "Delegation successfully granted."
msgstr ""
-#: src/Module/Settings/Delegation.php:54
+#: src/Module/Settings/Delegation.php:56
msgid "Parent user not found, unavailable or password doesn't match."
msgstr ""
-#: src/Module/Settings/Delegation.php:58
+#: src/Module/Settings/Delegation.php:60
msgid "Delegation successfully revoked."
msgstr ""
-#: src/Module/Settings/Delegation.php:80
-#: src/Module/Settings/Delegation.php:102
+#: 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:94
+#: src/Module/Settings/Delegation.php:96
msgid "Delegate user not found."
msgstr ""
-#: src/Module/Settings/Delegation.php:142
+#: src/Module/Settings/Delegation.php:144
msgid "No parent user"
msgstr ""
-#: src/Module/Settings/Delegation.php:153
-#: src/Module/Settings/Delegation.php:164
+#: src/Module/Settings/Delegation.php:155
+#: src/Module/Settings/Delegation.php:166
msgid "Parent User"
msgstr ""
-#: src/Module/Settings/Delegation.php:161
+#: src/Module/Settings/Delegation.php:163
msgid "Additional Accounts"
msgstr ""
-#: src/Module/Settings/Delegation.php:162
+#: 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:163
+#: src/Module/Settings/Delegation.php:165
msgid "Register an additional account"
msgstr ""
-#: src/Module/Settings/Delegation.php:167
+#: 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:171
+#: src/Module/Settings/Delegation.php:173
msgid "Delegates"
msgstr ""
-#: src/Module/Settings/Delegation.php:173
+#: 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:174
+#: src/Module/Settings/Delegation.php:176
msgid "Existing Page Delegates"
msgstr "Estantaj Delegitoj de la Paĝo"
-#: src/Module/Settings/Delegation.php:176
+#: src/Module/Settings/Delegation.php:178
msgid "Potential Delegates"
msgstr "Eblaj Delegitoj"
-#: src/Module/Settings/Delegation.php:179
+#: src/Module/Settings/Delegation.php:181
msgid "Add"
msgstr "Aldoni"
-#: src/Module/Settings/Delegation.php:180
+#: src/Module/Settings/Delegation.php:182
msgid "No entries."
msgstr "Neniom da afiŝoj."
-#: src/Module/Settings/Display.php:137
+#: src/Module/Settings/Display.php:146
msgid "The theme you chose isn't available."
msgstr ""
-#: src/Module/Settings/Display.php:177
+#: src/Module/Settings/Display.php:186
#, php-format
msgid "%s - (Unsupported)"
msgstr ""
-#: src/Module/Settings/Display.php:212
+#: src/Module/Settings/Display.php:221
msgid "No preview"
msgstr ""
-#: src/Module/Settings/Display.php:213
+#: src/Module/Settings/Display.php:222
msgid "No image"
msgstr ""
-#: src/Module/Settings/Display.php:214
+#: src/Module/Settings/Display.php:223
msgid "Small Image"
msgstr ""
-#: src/Module/Settings/Display.php:215
+#: src/Module/Settings/Display.php:224
msgid "Large Image"
msgstr ""
-#: src/Module/Settings/Display.php:246
+#: src/Module/Settings/Display.php:259
msgid "Display Settings"
msgstr "Ekranagordoj"
-#: src/Module/Settings/Display.php:248
+#: src/Module/Settings/Display.php:261
msgid "General Theme Settings"
msgstr ""
-#: src/Module/Settings/Display.php:249
+#: src/Module/Settings/Display.php:262
msgid "Custom Theme Settings"
msgstr ""
-#: src/Module/Settings/Display.php:250
+#: src/Module/Settings/Display.php:263
msgid "Content Settings"
msgstr ""
-#: src/Module/Settings/Display.php:251 view/theme/duepuntozero/config.php:86
+#: 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:258
+#: 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:259
+#: src/Module/Settings/Display.php:273
msgid "Mobile Theme:"
msgstr ""
-#: src/Module/Settings/Display.php:262
+#: src/Module/Settings/Display.php:276
msgid "Number of items to display per page:"
msgstr ""
-#: src/Module/Settings/Display.php:262 src/Module/Settings/Display.php:263
+#: 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:263
+#: 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:264
+#: src/Module/Settings/Display.php:278
msgid "Update browser every xx seconds"
msgstr "Ĝisdatigu retesplorilon ĉiu xxx sekundoj"
-#: src/Module/Settings/Display.php:264
+#: src/Module/Settings/Display.php:278
msgid "Minimum of 10 seconds. Enter -1 to disable it."
msgstr ""
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:279
msgid "Display emoticons"
msgstr ""
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:279
msgid "When enabled, emoticons are replaced with matching symbols."
msgstr ""
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:280
msgid "Infinite scroll"
msgstr ""
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:280
msgid "Automatic fetch new items when reaching the page end."
msgstr ""
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:281
msgid "Enable Smart Threading"
msgstr ""
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:281
msgid "Enable the automatic suppression of extraneous thread indentation."
msgstr ""
-#: src/Module/Settings/Display.php:268
+#: src/Module/Settings/Display.php:282
msgid "Display the Dislike feature"
msgstr ""
-#: src/Module/Settings/Display.php:268
+#: src/Module/Settings/Display.php:282
msgid ""
"Display the Dislike button and dislike reactions on posts and comments."
msgstr ""
-#: src/Module/Settings/Display.php:269
+#: src/Module/Settings/Display.php:283
msgid "Display the resharer"
msgstr ""
-#: src/Module/Settings/Display.php:269
+#: 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:270
+#: src/Module/Settings/Display.php:284
msgid "Stay local"
msgstr ""
-#: src/Module/Settings/Display.php:270
+#: 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:271
+#: src/Module/Settings/Display.php:285
msgid "Link preview mode"
msgstr ""
-#: src/Module/Settings/Display.php:271
+#: 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:273
+#: 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:274
+#: 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:72
+#: src/Module/Settings/OAuth.php:71
msgid "Connected Apps"
msgstr "Konektitaj Programoj"
-#: src/Module/Settings/OAuth.php:76
+#: src/Module/Settings/OAuth.php:75
msgid "Remove authorization"
msgstr "Forviŝi rajtigon"
-#: src/Module/Settings/Profile/Index.php:84
-msgid "Profile Name is required."
-msgstr "Nomo de profilo estas bezonata."
+#: src/Module/Settings/Profile/Index.php:116
+msgid "Display Name is required."
+msgstr ""
-#: src/Module/Settings/Profile/Index.php:134
+#: src/Module/Settings/Profile/Index.php:167
msgid "Profile couldn't be updated."
msgstr ""
-#: src/Module/Settings/Profile/Index.php:175
-#: src/Module/Settings/Profile/Index.php:195
+#: src/Module/Settings/Profile/Index.php:205
+#: src/Module/Settings/Profile/Index.php:226
msgid "Label:"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:176
-#: src/Module/Settings/Profile/Index.php:196
+#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:227
msgid "Value:"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:186
-#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:217
+#: src/Module/Settings/Profile/Index.php:238
msgid "Field Permissions"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:187
-#: src/Module/Settings/Profile/Index.php:207
+#: 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:193
+#: src/Module/Settings/Profile/Index.php:224
msgid "Add a new profile field"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:217
+#: 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:219
+#: 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:229
+#: src/Module/Settings/Profile/Index.php:255
msgid "Profile Actions"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:230
+#: src/Module/Settings/Profile/Index.php:256
msgid "Edit Profile Details"
msgstr "Redakti Detalojn de Profilo"
-#: src/Module/Settings/Profile/Index.php:232
+#: src/Module/Settings/Profile/Index.php:258
msgid "Change Profile Photo"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:237
+#: src/Module/Settings/Profile/Index.php:261
msgid "Profile picture"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:238
+#: src/Module/Settings/Profile/Index.php:262
msgid "Location"
msgstr "Loko"
-#: src/Module/Settings/Profile/Index.php:239 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 "Diversaj"
-#: src/Module/Settings/Profile/Index.php:240
+#: src/Module/Settings/Profile/Index.php:264
msgid "Custom Profile Fields"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:242 src/Module/Welcome.php:58
+#: 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:246
-msgid "Display name:"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:249
-msgid "Street Address:"
-msgstr "Adreso:"
-
-#: src/Module/Settings/Profile/Index.php:250
-msgid "Locality/City:"
-msgstr "Urbo:"
-
-#: src/Module/Settings/Profile/Index.php:251
-msgid "Region/State:"
-msgstr "Ŝtato:"
-
-#: src/Module/Settings/Profile/Index.php:252
-msgid "Postal/Zip Code:"
-msgstr "Poŝtkodo:"
-
-#: src/Module/Settings/Profile/Index.php:253
-msgid "Country:"
-msgstr "Lando:"
-
-#: src/Module/Settings/Profile/Index.php:255
-msgid "XMPP (Jabber) address:"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:255
-msgid ""
-"The XMPP address will be published so that people can follow you there."
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:256
-msgid "Matrix (Element) address:"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:256
-msgid ""
-"The Matrix address will be published so that people can follow you there."
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:257
-msgid "Homepage URL:"
-msgstr "Adreso de Hejmpaĝo:"
-
-#: src/Module/Settings/Profile/Index.php:258
-msgid "Public Keywords:"
-msgstr "Publikaj ŝlosilvortoj:"
-
-#: src/Module/Settings/Profile/Index.php:258
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Por sugesti amikoj. Videbla al aliaj.)"
-
-#: src/Module/Settings/Profile/Index.php:259
-msgid "Private Keywords:"
-msgstr "Privataj ŝlosilvortoj:"
-
-#: src/Module/Settings/Profile/Index.php:259
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Por serĉi profilojn. Neniam videbla al aliaj.)"
-
-#: src/Module/Settings/Profile/Index.php:260
+#: src/Module/Settings/Profile/Index.php:266
#, php-format
msgid ""
"Custom fields appear on your profile page.
\n"
"\t\t\t\tYou can use BBCodes in the field values.
\n"
"\t\t\t\tReorder by dragging the field title.
\n"
"\t\t\t\tEmpty the label field to remove a custom field.
\n"
-"\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.
"
+"\t\t\t\tNon-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
@@ -9985,6 +10600,42 @@ msgstr "Tio tute forigos vian konton. Kiam farita, la konto ne estas restaŭrebl
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
@@ -10306,20 +10957,41 @@ msgid ""
" 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 "Not Found"
+msgid ""
+"This node has blocked the top-level author or the author of the shared post."
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"
-"
"
+"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
@@ -10331,7 +11003,7 @@ msgstr ""
msgid "Exception thrown in %s:%d"
msgstr ""
-#: src/Module/Tos.php:57 src/Module/Tos.php:106
+#: 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"
@@ -10344,14 +11016,14 @@ msgid ""
"settings, it is not necessary for communication."
msgstr ""
-#: src/Module/Tos.php:58 src/Module/Tos.php:107
+#: 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:108
+#: 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"
@@ -10362,11 +11034,11 @@ msgid ""
"from the nodes of the communication partners."
msgstr ""
-#: src/Module/Tos.php:62 src/Module/Tos.php:105
+#: src/Module/Tos.php:63 src/Module/Tos.php:106
msgid "Privacy Statement"
msgstr ""
-#: src/Module/Tos.php:102
+#: src/Module/Tos.php:103
msgid "Rules"
msgstr ""
@@ -10374,6 +11046,10 @@ msgstr ""
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 ""
@@ -10422,22 +11098,22 @@ msgstr ""
msgid "User '%s' already exists on this server!"
msgstr ""
-#: src/Module/User/Import.php:263
+#: src/Module/User/Import.php:267
msgid "User creation error"
msgstr ""
-#: src/Module/User/Import.php:312
+#: 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:361
+#: src/Module/User/Import.php:365
msgid "User profile creation error"
msgstr ""
-#: src/Module/User/Import.php:412
+#: src/Module/User/Import.php:416
msgid "Done. You can now login with your username and password"
msgstr ""
@@ -10571,15 +11247,15 @@ msgid ""
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 "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 "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."
+"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?"
@@ -11086,249 +11762,258 @@ msgstr "Bonvolu rispondi al ĉi mesaĝo kaj kontaktu la sendinto se vi ne volas
msgid "%s posted an update."
msgstr "%s publikigis afiŝon."
-#: src/Object/Post.php:135
+#: src/Object/Post.php:138
msgid "Private Message"
msgstr "Privata mesaĝo"
-#: 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:181
msgid "This entry was edited"
msgstr ""
-#: src/Object/Post.php:206
+#: src/Object/Post.php:209
msgid "Connector Message"
msgstr ""
-#: src/Object/Post.php:221 src/Object/Post.php:223
+#: src/Object/Post.php:225 src/Object/Post.php:227
msgid "Edit"
msgstr "Redakti"
-#: src/Object/Post.php:247
+#: src/Object/Post.php:261
msgid "Delete globally"
msgstr ""
-#: src/Object/Post.php:247
+#: 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:274
+#: 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:309
+#: src/Object/Post.php:333
msgid "I will attend"
msgstr ""
-#: src/Object/Post.php:309
+#: src/Object/Post.php:333
msgid "I will not attend"
msgstr ""
-#: src/Object/Post.php:309
+#: src/Object/Post.php:333
msgid "I might attend"
msgstr ""
-#: src/Object/Post.php:339
+#: src/Object/Post.php:363
msgid "Ignore thread"
msgstr ""
-#: src/Object/Post.php:340
+#: src/Object/Post.php:364
msgid "Unignore thread"
msgstr ""
-#: src/Object/Post.php:341
+#: src/Object/Post.php:365
msgid "Toggle ignore status"
msgstr ""
-#: src/Object/Post.php:351
+#: src/Object/Post.php:375
msgid "Add star"
msgstr ""
-#: src/Object/Post.php:352
+#: src/Object/Post.php:376
msgid "Remove star"
msgstr ""
-#: src/Object/Post.php:353
+#: src/Object/Post.php:377
msgid "Toggle star status"
msgstr ""
-#: src/Object/Post.php:364
+#: src/Object/Post.php:388
msgid "Pin"
msgstr ""
-#: src/Object/Post.php:365
+#: src/Object/Post.php:389
msgid "Unpin"
msgstr ""
-#: src/Object/Post.php:366
+#: src/Object/Post.php:390
msgid "Toggle pin status"
msgstr ""
-#: src/Object/Post.php:369
+#: src/Object/Post.php:393
msgid "Pinned"
msgstr ""
-#: src/Object/Post.php:374
+#: src/Object/Post.php:398
msgid "Add tag"
msgstr ""
-#: src/Object/Post.php:387
+#: src/Object/Post.php:411
msgid "Quote share this"
msgstr ""
-#: src/Object/Post.php:387
+#: src/Object/Post.php:411
msgid "Quote Share"
msgstr ""
-#: src/Object/Post.php:390
+#: src/Object/Post.php:414
msgid "Reshare this"
msgstr ""
-#: src/Object/Post.php:390
+#: src/Object/Post.php:414
msgid "Reshare"
msgstr ""
-#: src/Object/Post.php:391
+#: src/Object/Post.php:415
msgid "Cancel your Reshare"
msgstr ""
-#: src/Object/Post.php:391
+#: src/Object/Post.php:415
msgid "Unshare"
msgstr ""
-#: src/Object/Post.php:438
+#: src/Object/Post.php:466
#, php-format
msgid "%s (Received %s)"
msgstr ""
-#: src/Object/Post.php:443
+#: src/Object/Post.php:472
msgid "Comment this item on your system"
msgstr ""
-#: src/Object/Post.php:443
+#: src/Object/Post.php:472
msgid "Remote comment"
msgstr ""
-#: src/Object/Post.php:464
+#: src/Object/Post.php:494
msgid "Share via ..."
msgstr ""
-#: src/Object/Post.php:464
+#: src/Object/Post.php:494
msgid "Share via external services"
msgstr ""
-#: src/Object/Post.php:493
+#: src/Object/Post.php:523
msgid "to"
msgstr "al"
-#: src/Object/Post.php:494
+#: src/Object/Post.php:524
msgid "via"
msgstr ""
-#: src/Object/Post.php:495
+#: src/Object/Post.php:525
msgid "Wall-to-Wall"
msgstr "Muro-al-Muro"
-#: src/Object/Post.php:496
+#: src/Object/Post.php:526
msgid "via Wall-To-Wall:"
msgstr "per Muro-al-Muro:"
-#: src/Object/Post.php:540
+#: src/Object/Post.php:573
#, php-format
msgid "Reply to %s"
msgstr ""
-#: src/Object/Post.php:543
+#: src/Object/Post.php:576
msgid "More"
msgstr ""
-#: src/Object/Post.php:561
+#: src/Object/Post.php:595
msgid "Notifier task is pending"
msgstr ""
-#: src/Object/Post.php:562
+#: src/Object/Post.php:596
msgid "Delivery to remote servers is pending"
msgstr ""
-#: src/Object/Post.php:563
+#: src/Object/Post.php:597
msgid "Delivery to remote servers is underway"
msgstr ""
-#: src/Object/Post.php:564
+#: src/Object/Post.php:598
msgid "Delivery to remote servers is mostly done"
msgstr ""
-#: src/Object/Post.php:565
+#: src/Object/Post.php:599
msgid "Delivery to remote servers is done"
msgstr ""
-#: src/Object/Post.php:585
+#: 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:586
+#: src/Object/Post.php:620
msgid "Show more"
msgstr ""
-#: src/Object/Post.php:587
+#: src/Object/Post.php:621
msgid "Show fewer"
msgstr ""
-#: src/Object/Post.php:623
+#: src/Object/Post.php:657
#, php-format
msgid "Reshared by: %s"
msgstr ""
-#: src/Object/Post.php:628
+#: src/Object/Post.php:662
#, php-format
msgid "Viewed by: %s"
msgstr ""
-#: src/Object/Post.php:633
+#: src/Object/Post.php:667
#, php-format
msgid "Liked by: %s"
msgstr ""
-#: src/Object/Post.php:638
+#: src/Object/Post.php:672
#, php-format
msgid "Disliked by: %s"
msgstr ""
-#: src/Object/Post.php:643
+#: src/Object/Post.php:677
#, php-format
msgid "Attended by: %s"
msgstr ""
-#: src/Object/Post.php:648
+#: src/Object/Post.php:682
#, php-format
msgid "Maybe attended by: %s"
msgstr ""
-#: src/Object/Post.php:653
+#: src/Object/Post.php:687
#, php-format
msgid "Not attended by: %s"
msgstr ""
-#: src/Object/Post.php:658
+#: src/Object/Post.php:692
#, php-format
msgid "Reacted with %s by: %s"
msgstr ""
@@ -11337,21 +12022,21 @@ msgstr ""
msgid "(no subject)"
msgstr ""
-#: src/Protocol/OStatus.php:1388
+#: src/Protocol/OStatus.php:1390
#, php-format
msgid "%s is now following %s."
msgstr ""
-#: src/Protocol/OStatus.php:1389
+#: src/Protocol/OStatus.php:1391
msgid "following"
msgstr "sekvanta"
-#: src/Protocol/OStatus.php:1392
+#: src/Protocol/OStatus.php:1394
#, php-format
msgid "%s stopped following %s."
msgstr ""
-#: src/Protocol/OStatus.php:1393
+#: src/Protocol/OStatus.php:1395
msgid "stopped following"
msgstr "ne plu sekvas"
@@ -11368,12 +12053,12 @@ msgstr "Ensalutado malsukcesis."
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 "Bonvolu alŝuti profilbildon."
@@ -11709,7 +12394,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
@@ -11728,7 +12413,7 @@ msgstr ""
msgid "Community Pages"
msgstr ""
-#: view/theme/vier/config.php:139 view/theme/vier/theme.php:149
+#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148
msgid "Community Profiles"
msgstr ""
@@ -11736,7 +12421,7 @@ msgstr ""
msgid "Help or @NewHere ?"
msgstr ""
-#: view/theme/vier/config.php:141 view/theme/vier/theme.php:320
+#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319
msgid "Connect Services"
msgstr ""
@@ -11744,10 +12429,10 @@ msgstr ""
msgid "Find Friends"
msgstr ""
-#: view/theme/vier/config.php:143 view/theme/vier/theme.php:176
+#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175
msgid "Last users"
msgstr ""
-#: view/theme/vier/theme.php:235
+#: 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 0f77c4fd7f..e2d5a183d1 100644
--- a/view/lang/eo/strings.php
+++ b/view/lang/eo/strings.php
@@ -101,8 +101,6 @@ $a->strings['newer'] = 'pli nova';
$a->strings['older'] = 'pli malnova';
$a->strings['Email'] = 'Retpoŝto';
$a->strings['Diaspora'] = 'Diaspora';
-$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['Visible to everybody'] = 'Videbla al ĉiuj';
$a->strings['Tag term:'] = 'Markfrazo:';
@@ -128,13 +126,15 @@ $a->strings['Categories (comma-separated list)'] = 'Kategorioj (disigita per kom
$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['remove'] = 'forviŝi';
-$a->strings['Delete Selected Items'] = 'Forviŝi Elektitajn Elementojn';
-$a->strings['Forums'] = 'Forumoj';
-$a->strings['External link to forum'] = 'Ekstera ligilo al forumo';
+$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['status'] = 'staton';
@@ -150,7 +150,6 @@ $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['@name, !forum, #tags, content'] = '@nomo, !forumo, #kradvorto, enhavo';
$a->strings['Logout'] = 'Elsaluti';
$a->strings['End this session'] = 'Fini ĉi-tiun seancon';
$a->strings['Login'] = 'Ensaluti';
@@ -224,7 +223,6 @@ $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['Groups'] = 'Grupoj';
$a->strings['All Contacts'] = 'Ĉiuj Kontaktoj';
$a->strings['Saved Folders'] = 'Konservitaj Dosierujoj';
$a->strings['Everything'] = 'Ĉio';
@@ -290,6 +288,9 @@ $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.';
@@ -313,15 +314,6 @@ $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['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['add'] = 'aldoni';
-$a->strings['Edit group'] = 'Redakti grupon';
-$a->strings['Contacts not in any group'] = 'Kontaktoj en neniu grupo';
-$a->strings['Create a new group'] = 'Krei novan grupon';
-$a->strings['Group Name: '] = 'Nomo de la grupo:';
$a->strings['activity'] = 'aktiveco';
$a->strings['post'] = 'afiŝo';
$a->strings['bytes'] = 'bajtoj';
@@ -456,6 +448,10 @@ $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';
@@ -474,7 +470,6 @@ $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 not found.'] = 'Kontakto ne trovita.';
$a->strings['Contact update failed.'] = 'Ĝisdatigo de kontakto malsukcesis.';
$a->strings['Return to contact editor'] = 'Reen al kontakta redaktilo';
$a->strings['Name'] = 'Nomo';
@@ -482,7 +477,6 @@ $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['Invalid contact.'] = 'Nevalida kontakto.';
$a->strings['Access denied.'] = 'Atingo nepermesita.';
$a->strings['Submit Request'] = 'Sendi peton';
$a->strings['Please answer the following:'] = 'Bonvolu respondi:';
@@ -525,11 +519,6 @@ $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['Not available.'] = 'Ne disponebla.';
-$a->strings['No such group'] = 'Grupo ne estas trovita';
-$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['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';
@@ -546,13 +535,6 @@ $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['Could not create group.'] = 'Ne povas krei grupon.';
-$a->strings['Group not found.'] = 'Grupo ne estas trovita.';
-$a->strings['Create a group of contacts/friends.'] = 'Krei grupon da kontaktoj/amikoj.';
-$a->strings['Unable to remove group.'] = 'Ne eblas forviŝi grupon.';
-$a->strings['Members'] = 'Anoj';
-$a->strings['Group is empty'] = 'Grupo estas malplena';
-$a->strings['Click on a contact to add or remove.'] = 'Klaku kontakton por aldoni aŭ forviŝi.';
$a->strings['No profile'] = 'Neniu profilo';
$a->strings['Help:'] = 'Helpo:';
$a->strings['Welcome to %s'] = 'Bonvenon ĉe %s';
@@ -673,7 +655,6 @@ $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['Private Forum [Experimental]'] = 'Privata Forumo [eksperimenta]';
$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['Account Settings'] = 'Kontoagordoj';
@@ -733,7 +714,6 @@ $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['Profile Name is required.'] = 'Nomo de profilo estas bezonata.';
$a->strings['(click to open/close)'] = '(klaku por malfermi/fermi)';
$a->strings['Edit Profile Details'] = 'Redakti Detalojn de Profilo';
$a->strings['Location'] = 'Loko';
@@ -771,7 +751,6 @@ $a->strings['Enter your email access information on your Connector Settings page
$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 Konekti aŭ Sekvi 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['%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';
diff --git a/view/lang/es/messages.po b/view/lang/es/messages.po
index df5c9ffb9f..baef550595 100644
--- a/view/lang/es/messages.po
+++ b/view/lang/es/messages.po
@@ -55,7 +55,7 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-04-23 21:21+0000\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"
@@ -85,26 +85,26 @@ msgstr "Artículo no pudo recuperarse."
msgid "Empty post discarded."
msgstr "Publicación vacía descartada."
-#: mod/item.php:411 src/Module/Admin/Themes/Details.php:39
+#: 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:435 mod/message.php:68 mod/message.php:114 mod/notes.php:45
-#: mod/photos.php:152 mod/photos.php:669 src/Model/Event.php:522
+#: 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:52
+#: 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/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/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
@@ -114,9 +114,9 @@ msgstr "Elemento no encontrado."
#: 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:69
-#: src/Module/Settings/Display.php:69 src/Module/Settings/Display.php:151
+#: 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
@@ -262,90 +262,90 @@ msgstr "\n\t\t\tTus datos de acceso son los siguientes:\n\n\t\t\tSitio de Acceso
msgid "Your password has been changed at %s"
msgstr "Tu contraseña se ha cambiado por %s"
-#: mod/message.php:46 mod/message.php:129 src/Content/Nav.php:319
+#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321
msgid "New Message"
msgstr "Nuevo Mensaje"
-#: 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 "Ningún destinatario seleccionado"
-#: mod/message.php:88
+#: mod/message.php:87
msgid "Unable to locate contact information."
msgstr "No se encuentra información del contacto."
-#: 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 "El mensaje no ha podido ser enviado."
-#: 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 "Fallo en recolección de mensajes."
-#: 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 "Descartar"
-#: mod/message.php:136 src/Content/Nav.php:316 view/theme/frio/theme.php:241
+#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Messages"
msgstr "Mensajes"
-#: mod/message.php:149
+#: mod/message.php:148
msgid "Conversation not found."
msgstr "Conversación no encontrada."
-#: mod/message.php:154
+#: mod/message.php:153
msgid "Message was not deleted."
msgstr "Mensaje no borrado."
-#: mod/message.php:169
+#: mod/message.php:168
msgid "Conversation was not removed."
msgstr "Conversación no borrada."
-#: mod/message.php:182 mod/message.php:287 src/Module/Profile/UnkMail.php:145
+#: 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:191 src/Module/Profile/UnkMail.php:151
+#: mod/message.php:190 src/Module/Profile/UnkMail.php:151
msgid "Send Private Message"
msgstr "Enviar Mensaje Privado"
-#: mod/message.php:192 mod/message.php:347
+#: mod/message.php:191 mod/message.php:346
msgid "To:"
msgstr "Para:"
-#: mod/message.php:193 mod/message.php:348
+#: mod/message.php:192 mod/message.php:347
msgid "Subject:"
msgstr "Asunto:"
-#: mod/message.php:197 mod/message.php:351 src/Module/Invite.php:171
+#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171
msgid "Your message:"
msgstr "Tu mensaje:"
-#: mod/message.php:200 mod/message.php:355 src/Content/Conversation.php:360
+#: 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:201 mod/message.php:356 src/Module/Post/Edit.php:135
+#: 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:202 mod/message.php:358 mod/photos.php:1291
-#: src/Content/Conversation.php:389 src/Content/Conversation.php:733
-#: src/Module/Item/Compose.php:204 src/Module/Post/Edit.php:145
-#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:550
+#: 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:203 mod/message.php:357 mod/photos.php:702
-#: mod/photos.php:819 mod/photos.php:1097 mod/photos.php:1138
-#: mod/photos.php:1194 mod/photos.php:1268
+#: 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:339
+#: 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
@@ -353,59 +353,64 @@ msgstr "Espere"
#: 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:230 src/Object/Post.php:1063
+#: 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:224
+#: mod/message.php:223
msgid "No messages."
msgstr "No hay mensajes."
-#: mod/message.php:280
+#: mod/message.php:279
msgid "Message not available."
msgstr "Mensaje no disponibile."
-#: mod/message.php:324
+#: mod/message.php:323
msgid "Delete message"
msgstr "Borrar mensaje"
-#: mod/message.php:326 mod/message.php:457
+#: 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:341 mod/message.php:454
+#: mod/message.php:340 mod/message.php:453
msgid "Delete conversation"
msgstr "Eliminar conversación"
-#: mod/message.php:343
+#: 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:346
+#: mod/message.php:345
msgid "Send Reply"
msgstr "Enviar respuesta"
-#: mod/message.php:428
+#: mod/message.php:427
#, php-format
msgid "Unknown sender - %s"
msgstr "Remitente desconocido - %s"
-#: mod/message.php:430
+#: mod/message.php:429
#, php-format
msgid "You and %s"
msgstr "Tú y %s"
-#: mod/message.php:432
+#: mod/message.php:431
#, php-format
msgid "%s and You"
msgstr "%s y Tú"
-#: mod/message.php:460
+#: mod/message.php:459
#, php-format
msgid "%d message"
msgid_plural "%d messages"
@@ -421,14 +426,14 @@ msgstr "Notas Personales"
msgid "Personal notes are visible only by yourself."
msgstr "Notas personales solo puedes verlas tu."
-#: mod/notes.php:57 src/Content/Text/HTML.php:857
+#: 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:577
-#: src/Model/Event.php:514 src/Model/Profile.php:234
+#: 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
@@ -440,22 +445,22 @@ msgid "User not found."
msgstr "Usuario no encontrado."
#: mod/photos.php:106 src/Module/BaseProfile.php:68
-#: src/Module/Profile/Photos.php:399
+#: src/Module/Profile/Photos.php:379
msgid "Photo Albums"
msgstr "Álbum de Fotos"
-#: mod/photos.php:107 src/Module/Profile/Photos.php:400
-#: src/Module/Profile/Photos.php:420
+#: 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:867 src/Module/Profile/Photos.php:402
-#: src/Module/Profile/Photos.php:422
+#: 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:74
-#: src/Module/Profile/Photos.php:383
+#: mod/photos.php:121 src/Module/BaseSettings.php:72
+#: src/Module/Profile/Photos.php:363
msgid "everybody"
msgstr "todos"
@@ -467,72 +472,72 @@ msgstr "Información del contacto no disponible"
msgid "Album not found."
msgstr "Álbum no encontrado."
-#: mod/photos.php:242
+#: mod/photos.php:244
msgid "Album successfully deleted"
msgstr "Album borrado con éxito"
-#: mod/photos.php:244
+#: mod/photos.php:246
msgid "Album was empty."
msgstr "El Álbum estaba vacío."
-#: mod/photos.php:276
+#: mod/photos.php:277
msgid "Failed to delete the photo."
msgstr "Error al borrar la Foto"
-#: mod/photos.php:544
+#: mod/photos.php:545
msgid "a photo"
msgstr "una foto"
-#: mod/photos.php:544
+#: 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:581 src/Module/Conversation/Community.php:188
-#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:315
+#: 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:586
+#: mod/photos.php:587
msgid "No photos selected"
msgstr "Ninguna foto seleccionada"
-#: mod/photos.php:718
+#: mod/photos.php:721
#, php-format
msgid "The maximum accepted image size is %s"
msgstr ""
-#: mod/photos.php:725
+#: mod/photos.php:728
msgid "Upload Photos"
msgstr "Subir fotos"
-#: mod/photos.php:729 mod/photos.php:815
+#: mod/photos.php:732 mod/photos.php:820
msgid "New album name: "
msgstr "Nombre del nuevo álbum: "
-#: mod/photos.php:730
+#: mod/photos.php:733
msgid "or select existing album:"
msgstr "o seleccione un Álbum:"
-#: mod/photos.php:731
+#: 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:733 mod/photos.php:1093 src/Content/Conversation.php:391
-#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:182
+#: 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:796
+#: 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:797 mod/photos.php:820
+#: mod/photos.php:802 mod/photos.php:825
msgid "Delete Album"
msgstr "Eliminar álbum"
-#: mod/photos.php:798 mod/photos.php:899 src/Content/Conversation.php:407
+#: 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
@@ -542,254 +547,271 @@ msgstr "Eliminar álbum"
msgid "Cancel"
msgstr "Cancelar"
-#: mod/photos.php:824
+#: mod/photos.php:829
msgid "Edit Album"
msgstr "Modificar álbum"
-#: mod/photos.php:825
+#: mod/photos.php:830
msgid "Drop Album"
msgstr "Suelte un Álbum"
-#: mod/photos.php:829
+#: mod/photos.php:834
msgid "Show Newest First"
msgstr "Mostrar más nuevos primero"
-#: mod/photos.php:831
+#: mod/photos.php:836
msgid "Show Oldest First"
msgstr "Mostrar más antiguos primero"
-#: mod/photos.php:852 src/Module/Profile/Photos.php:370
+#: mod/photos.php:857 src/Module/Profile/Photos.php:350
msgid "View Photo"
msgstr "Ver foto"
-#: mod/photos.php:885
+#: 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:887
+#: mod/photos.php:891
msgid "Photo not available"
msgstr "Foto no disponible"
-#: mod/photos.php:897
+#: 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:898 mod/photos.php:1098
+#: mod/photos.php:902 mod/photos.php:1102
msgid "Delete Photo"
msgstr "Eliminar foto"
-#: mod/photos.php:996
+#: mod/photos.php:1000
msgid "View photo"
msgstr "Ver foto"
-#: mod/photos.php:998
+#: mod/photos.php:1002
msgid "Edit photo"
msgstr "Modificar foto"
-#: mod/photos.php:999
+#: mod/photos.php:1003
msgid "Delete photo"
msgstr "Borrar foto"
-#: mod/photos.php:1000
+#: mod/photos.php:1004
msgid "Use as profile photo"
msgstr "Usar como foto del perfil"
-#: mod/photos.php:1007
+#: mod/photos.php:1011
msgid "Private Photo"
msgstr "Foto privada"
-#: mod/photos.php:1013
+#: mod/photos.php:1017
msgid "View Full Size"
msgstr "Ver a tamaño completo"
-#: mod/photos.php:1066
+#: mod/photos.php:1070
msgid "Tags: "
msgstr "Etiquetas: "
-#: mod/photos.php:1069
+#: mod/photos.php:1073
msgid "[Select tags to remove]"
msgstr "[Seleccionar etiquetas a borrar]"
-#: mod/photos.php:1084
+#: mod/photos.php:1088
msgid "New album name"
msgstr "Nuevo nombre del álbum"
-#: mod/photos.php:1085
+#: mod/photos.php:1089
msgid "Caption"
msgstr "Título"
-#: mod/photos.php:1086
+#: mod/photos.php:1090
msgid "Add a Tag"
msgstr "Añadir una etiqueta"
-#: mod/photos.php:1086
+#: 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:1087
+#: mod/photos.php:1091
msgid "Do not rotate"
msgstr "No rotar"
-#: mod/photos.php:1088
+#: mod/photos.php:1092
msgid "Rotate CW (right)"
msgstr "Girar a la derecha"
-#: mod/photos.php:1089
+#: mod/photos.php:1093
msgid "Rotate CCW (left)"
msgstr "Girar a la izquierda"
-#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1265
-#: src/Module/Contact.php:588 src/Module/Item/Compose.php:188
-#: src/Object/Post.php:1060
+#: 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:1137 mod/photos.php:1193 mod/photos.php:1267
-#: src/Object/Post.php:544 src/Object/Post.php:1062
+#: 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:1139 mod/photos.php:1195 mod/photos.php:1269
-#: src/Content/Conversation.php:404 src/Module/Calendar/Event/Form.php:248
-#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:165
-#: src/Object/Post.php:1074
+#: 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:1140 src/Content/Conversation.php:359
-#: src/Module/Post/Edit.php:130 src/Object/Post.php:1064
+#: 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:1226 src/Content/Conversation.php:649
-#: src/Object/Post.php:257
+#: mod/photos.php:1236 src/Content/Conversation.php:1464
+#: src/Object/Post.php:260
msgid "Select"
msgstr "Seleccionar"
-#: mod/photos.php:1227 src/Content/Conversation.php:650
+#: 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:1288 src/Object/Post.php:385
+#: mod/photos.php:1298 src/Object/Post.php:408
msgid "Like"
msgstr "Me gusta"
-#: mod/photos.php:1289 src/Object/Post.php:385
+#: mod/photos.php:1299 src/Object/Post.php:408
msgid "I like this (toggle)"
msgstr "Me gusta esto (cambiar)"
-#: mod/photos.php:1290 src/Object/Post.php:386
+#: mod/photos.php:1300 src/Object/Post.php:409
msgid "Dislike"
msgstr "No me gusta"
-#: mod/photos.php:1292 src/Object/Post.php:386
+#: 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:1314
+#: mod/photos.php:1324
msgid "Map"
msgstr "Mapa"
-#: src/App.php:470
+#: src/App.php:473
msgid "No system theme config value set."
msgstr "No hay tema configurado."
-#: src/App.php:574
+#: src/App.php:580
msgid "Apologies but the website is unavailable at the moment."
msgstr ""
-#: src/App/Page.php:247
+#: src/App/Page.php:248
msgid "Delete this item?"
msgstr "¿Eliminar este elemento?"
-#: src/App/Page.php:248
+#: 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:249
+#: 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 "Like not successful"
+msgid "Collapse this author's posts?"
msgstr ""
#: src/App/Page.php:252
-msgid "Dislike not successful"
+msgid "Ignore this author's server?"
msgstr ""
-#: src/App/Page.php:253
-msgid "Sharing not successful"
-msgstr ""
-
-#: src/App/Page.php:254
-msgid "Attendance unsuccessful"
+#: 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 "Backend error"
+msgid "Like not successful"
msgstr ""
#: src/App/Page.php:256
-msgid "Network error"
+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 "Drop files here to upload"
+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:261
+#: 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:262
+#: src/App/Page.php:266
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
msgstr ""
-#: src/App/Page.php:263
+#: src/App/Page.php:267
msgid "You can't upload files of this type."
msgstr ""
-#: src/App/Page.php:264
+#: src/App/Page.php:268
msgid "Server responded with {{statusCode}} code."
msgstr ""
-#: src/App/Page.php:265
+#: src/App/Page.php:269
msgid "Cancel upload"
msgstr ""
-#: src/App/Page.php:266
+#: src/App/Page.php:270
msgid "Upload canceled."
msgstr ""
-#: src/App/Page.php:267
+#: src/App/Page.php:271
msgid "Are you sure you want to cancel this upload?"
msgstr ""
-#: src/App/Page.php:268
+#: src/App/Page.php:272
msgid "Remove file"
msgstr ""
-#: src/App/Page.php:269
+#: src/App/Page.php:273
msgid "You can't upload any more files."
msgstr ""
-#: src/App/Page.php:347
+#: src/App/Page.php:351
msgid "toggle mobile"
msgstr "Cambiar a versión móvil"
@@ -806,33 +828,33 @@ msgstr "Pagina no encontrada."
msgid "You must be logged in to use addons. "
msgstr "Tienes que estar registrado para tener acceso a los accesorios."
-#: src/BaseModule.php:400
+#: 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 "Token de la ficha de seguridad incorrecto. Seguramente haya ocurrido por haber dejado el formulario abierto demasiado tiempo (>3 horas) antes de enviarlo."
-#: src/BaseModule.php:427
+#: src/BaseModule.php:428
msgid "All contacts"
msgstr "Todos los Contactos"
-#: src/BaseModule.php:432 src/Content/Widget.php:239 src/Core/ACL.php:195
-#: src/Module/Contact.php:407 src/Module/PermissionTooltip.php:127
-#: src/Module/PermissionTooltip.php:149
+#: 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/BaseModule.php:437 src/Content/Widget.php:240
-#: src/Module/Contact.php:408
+#: src/BaseModule.php:438 src/Content/Widget.php:240
+#: src/Module/Contact.php:418
msgid "Following"
msgstr "Siguiendo"
-#: src/BaseModule.php:442 src/Content/Widget.php:241
-#: src/Module/Contact.php:409
+#: src/BaseModule.php:443 src/Content/Widget.php:241
+#: src/Module/Contact.php:421
msgid "Mutual friends"
msgstr "Amigos mutuos"
-#: src/BaseModule.php:450
+#: src/BaseModule.php:451
msgid "Common"
msgstr "Común"
@@ -982,7 +1004,7 @@ msgstr "Todas las actualizaciones hechas."
msgid "Enter user nickname: "
msgstr "Ingrese apodo: "
-#: src/Console/User.php:182 src/Model/User.php:663
+#: 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
@@ -1157,21 +1179,25 @@ msgstr "pnut"
msgid "Tumblr"
msgstr ""
-#: src/Content/ContactSelector.php:179
+#: 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:218
+#: src/Content/Conversation.php:226
msgid "and"
msgstr "y"
-#: src/Content/Conversation.php:221
+#: src/Content/Conversation.php:229
#, php-format
msgid "and %d other people"
msgstr "y a otras %d personas"
-#: src/Content/Conversation.php:227
+#: src/Content/Conversation.php:235
#, php-format
msgid "%2$s likes this."
msgid_plural "%2$s like this."
@@ -1179,7 +1205,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:229
+#: src/Content/Conversation.php:237
#, php-format
msgid "%2$s doesn't like this."
msgid_plural "%2$s don't like this."
@@ -1187,7 +1213,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:231
+#: src/Content/Conversation.php:239
#, php-format
msgid "%2$s attends."
msgid_plural "%2$s attend."
@@ -1195,7 +1221,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:233
+#: src/Content/Conversation.php:241
#, php-format
msgid "%2$s doesn't attend."
msgid_plural "%2$s don't attend."
@@ -1203,7 +1229,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:235
+#: src/Content/Conversation.php:243
#, php-format
msgid "%2$s attends maybe."
msgid_plural "%2$s attend maybe."
@@ -1211,7 +1237,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:237
+#: src/Content/Conversation.php:245
#, php-format
msgid "%2$s reshared this."
msgid_plural "%2$s reshared this."
@@ -1219,7 +1245,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:266
+#: src/Content/Conversation.php:274
#, php-format
msgid " likes this"
msgid_plural " like this"
@@ -1227,7 +1253,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:269
+#: src/Content/Conversation.php:277
#, php-format
msgid " doesn't like this"
msgid_plural " don't like this"
@@ -1235,7 +1261,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:272
+#: src/Content/Conversation.php:280
#, php-format
msgid " attends"
msgid_plural " attend"
@@ -1243,7 +1269,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:275
+#: src/Content/Conversation.php:283
#, php-format
msgid " doesn't attend"
msgid_plural " don't attend"
@@ -1251,7 +1277,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:278
+#: src/Content/Conversation.php:286
#, php-format
msgid " attends maybe"
msgid_plural " attend maybe"
@@ -1259,7 +1285,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:281
+#: src/Content/Conversation.php:289
#, php-format
msgid " reshared this"
msgid_plural " reshared this"
@@ -1267,269 +1293,398 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:328
+#: src/Content/Conversation.php:336
msgid "Visible to everybody"
msgstr "Visible para cualquiera"
-#: src/Content/Conversation.php:329 src/Module/Item/Compose.php:198
-#: src/Object/Post.php:1073
+#: 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:330
+#: src/Content/Conversation.php:338
msgid "Tag term:"
msgstr "Etiqueta:"
-#: src/Content/Conversation.php:331 src/Module/Filer/SaveTag.php:73
+#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73
msgid "Save to Folder:"
msgstr "Guardar en directorio:"
-#: src/Content/Conversation.php:332
+#: src/Content/Conversation.php:340
msgid "Where are you right now?"
msgstr "¿Dónde estás ahora?"
-#: src/Content/Conversation.php:333
+#: src/Content/Conversation.php:341
msgid "Delete item(s)?"
msgstr "¿Borrar artículo(s)?"
-#: src/Content/Conversation.php:345 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:355
+#: src/Content/Conversation.php:363
msgid "New Post"
msgstr "Nuevo artículo"
-#: src/Content/Conversation.php:358
+#: src/Content/Conversation.php:366
msgid "Share"
msgstr "Compartir"
-#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:132
+#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132
msgid "upload photo"
msgstr "subir foto"
-#: src/Content/Conversation.php:362 src/Module/Post/Edit.php:133
+#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133
msgid "Attach file"
msgstr "Añadir archivo"
-#: src/Content/Conversation.php:363 src/Module/Post/Edit.php:134
+#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134
msgid "attach file"
msgstr "añadir archivo"
-#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190
-#: src/Module/Post/Edit.php:171 src/Object/Post.php:1065
+#: 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:365 src/Module/Item/Compose.php:191
-#: src/Module/Post/Edit.php:172 src/Object/Post.php:1066
+#: 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:366 src/Module/Item/Compose.php:192
-#: src/Module/Post/Edit.php:173 src/Object/Post.php:1067
+#: 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:367 src/Module/Item/Compose.php:193
-#: src/Module/Post/Edit.php:174 src/Object/Post.php:1068
+#: 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:368 src/Module/Item/Compose.php:194
-#: src/Module/Post/Edit.php:175 src/Object/Post.php:1069
+#: 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:369 src/Module/Item/Compose.php:195
-#: src/Object/Post.php:1070
+#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197
+#: src/Object/Post.php:1104
msgid "Image"
msgstr "Imagen"
-#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:196
-#: src/Module/Post/Edit.php:176 src/Object/Post.php:1071
+#: 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:371 src/Module/Item/Compose.php:197
-#: src/Module/Post/Edit.php:177 src/Object/Post.php:1072
+#: 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:372
+#: src/Content/Conversation.php:382
msgid "Video"
msgstr ""
-#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:200
+#: 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:374 src/Module/Post/Edit.php:142
+#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142
msgid "set location"
msgstr "establecer ubicación"
-#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:143
+#: 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:376 src/Module/Post/Edit.php:144
+#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144
msgid "clear location"
msgstr "borrar ubicación"
-#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:205
+#: 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:380 src/Module/Item/Compose.php:206
+#: 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:385 src/Module/Item/Compose.php:222
+#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224
msgid "Scheduled at"
msgstr ""
-#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:146
+#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146
msgid "Permission settings"
msgstr "Configuración de permisos"
-#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:155
+#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155
msgid "Public post"
msgstr "Artículo público"
-#: src/Content/Conversation.php:414 src/Content/Widget/VCard.php:113
-#: src/Model/Profile.php:469 src/Module/Admin/Logs/View.php:92
-#: src/Module/Post/Edit.php:180
+#: 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:415 src/Module/Post/Edit.php:181
+#: 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:417 src/Module/Post/Edit.php:184
+#: 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:677 src/Object/Post.php:244
-msgid "Pinned item"
-msgstr ""
-
-#: src/Content/Conversation.php:693 src/Object/Post.php:496
-#: src/Object/Post.php:497
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Ver perfil de %s @ %s"
-
-#: src/Content/Conversation.php:706 src/Object/Post.php:484
-msgid "Categories:"
-msgstr "Categorías:"
-
-#: src/Content/Conversation.php:707 src/Object/Post.php:485
-msgid "Filed under:"
-msgstr "Archivado en:"
-
-#: src/Content/Conversation.php:715 src/Object/Post.php:510
-#, php-format
-msgid "%s from %s"
-msgstr "%s de %s"
-
-#: src/Content/Conversation.php:731
-msgid "View in context"
-msgstr "Verlo en contexto"
-
-#: src/Content/Conversation.php:796
+#: src/Content/Conversation.php:595
msgid "remove"
msgstr "eliminar"
-#: src/Content/Conversation.php:800
+#: src/Content/Conversation.php:599
msgid "Delete Selected Items"
msgstr "Eliminar los seleccionados"
-#: src/Content/Conversation.php:865 src/Content/Conversation.php:868
-#: src/Content/Conversation.php:871 src/Content/Conversation.php:874
-#: src/Content/Conversation.php:877
+#: 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:880
+#: src/Content/Conversation.php:769
#, php-format
msgid "You are following %s."
msgstr "Estas siguiendo %s."
-#: src/Content/Conversation.php:883
+#: 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:896
+#: src/Content/Conversation.php:796
#, php-format
msgid "%s reshared this."
msgstr "%s reenvió esto."
-#: src/Content/Conversation.php:898
+#: src/Content/Conversation.php:798
msgid "Reshared"
msgstr "Compartido"
-#: src/Content/Conversation.php:898
+#: src/Content/Conversation.php:798
#, php-format
msgid "Reshared by %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:901
+#: src/Content/Conversation.php:801
#, php-format
msgid "%s is participating in this thread."
msgstr "%s participa en el hilo."
-#: src/Content/Conversation.php:904
+#: src/Content/Conversation.php:804
msgid "Stored for general reasons"
msgstr ""
-#: src/Content/Conversation.php:907
+#: src/Content/Conversation.php:807
msgid "Global post"
msgstr ""
-#: src/Content/Conversation.php:910
+#: src/Content/Conversation.php:810
msgid "Sent via an relay server"
msgstr ""
-#: src/Content/Conversation.php:910
+#: src/Content/Conversation.php:810
#, php-format
msgid "Sent via the relay server %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:913
+#: src/Content/Conversation.php:813
msgid "Fetched"
msgstr "Recuperado"
-#: src/Content/Conversation.php:913
+#: src/Content/Conversation.php:813
#, php-format
msgid "Fetched because of %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:916
+#: src/Content/Conversation.php:816
msgid "Stored because of a child post to complete this thread."
msgstr ""
-#: src/Content/Conversation.php:919
+#: src/Content/Conversation.php:819
msgid "Local delivery"
msgstr ""
-#: src/Content/Conversation.php:922
+#: src/Content/Conversation.php:822
msgid "Stored because of your activity (like, comment, star, ...)"
msgstr ""
-#: src/Content/Conversation.php:925
+#: src/Content/Conversation.php:825
msgid "Distributed"
msgstr ""
-#: src/Content/Conversation.php:928
+#: 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"
@@ -1559,13 +1714,13 @@ msgid "Post Composition Features"
msgstr "Opciones de edición de publicaciones."
#: src/Content/Feature.php:105
-msgid "Auto-mention Forums"
-msgstr "Auto-mencionar foros"
+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 "Añadir/eliminar mención cuando un foro es seleccionado/deseleccionado en la ventana ACL."
+"Add/remove mention when a group page is selected/deselected in ACL window."
+msgstr ""
#: src/Content/Feature.php:106
msgid "Explicit Mentions"
@@ -1605,12 +1760,12 @@ msgid "Advanced Profile Settings"
msgstr "Ajustes avanzados del perfil"
#: src/Content/Feature.php:119
-msgid "List Forums"
-msgstr "Listar foros"
+msgid "List Groups"
+msgstr ""
#: src/Content/Feature.php:119
-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."
+msgid "Show visitors public groups at the Advanced Profile Page"
+msgstr ""
#: src/Content/Feature.php:120
msgid "Tag Cloud"
@@ -1642,385 +1797,395 @@ msgid ""
"Contact birthday events are private to you."
msgstr ""
-#: src/Content/ForumManager.php:151 src/Content/Nav.php:276
-#: src/Content/Text/HTML.php:878 src/Content/Widget.php:528
-msgid "Forums"
-msgstr "Foros"
+#: 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/ForumManager.php:153
-msgid "External link to forum"
-msgstr "Enlace externo al foro"
+#: src/Content/GroupManager.php:154
+msgid "External link to group"
+msgstr ""
-#: src/Content/ForumManager.php:156 src/Content/Widget.php:507
+#: src/Content/GroupManager.php:158 src/Content/Widget.php:512
msgid "show less"
msgstr "mostrar menos"
-#: src/Content/ForumManager.php:157 src/Content/Widget.php:409
-#: src/Content/Widget.php:508
+#: src/Content/GroupManager.php:159 src/Content/Widget.php:410
+#: src/Content/Widget.php:513
msgid "show more"
msgstr "Mostrar más"
-#: src/Content/Item.php:326 src/Model/Item.php:2922
+#: 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:329 src/Content/Item.php:339
+#: src/Content/Item.php:334 src/Content/Item.php:344
msgid "status"
msgstr "estado"
-#: src/Content/Item.php:335 src/Model/Item.php:2924
+#: 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:349 src/Module/Post/Tag/Add.php:141
+#: 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:419 view/theme/frio/theme.php:262
+#: src/Content/Item.php:428 view/theme/frio/theme.php:262
msgid "Follow Thread"
msgstr "Seguir el hilo"
-#: src/Content/Item.php:420 src/Model/Contact.php:1204
+#: src/Content/Item.php:429 src/Model/Contact.php:1227
msgid "View Status"
msgstr "Ver Estado"
-#: src/Content/Item.php:421 src/Content/Item.php:441
-#: src/Model/Contact.php:1148 src/Model/Contact.php:1196
-#: src/Model/Contact.php:1205 src/Module/Directory.php:157
-#: src/Module/Settings/Profile/Index.php:233
+#: 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:422 src/Model/Contact.php:1206
+#: src/Content/Item.php:431 src/Model/Contact.php:1229
msgid "View Photos"
msgstr "Ver Fotos"
-#: src/Content/Item.php:423 src/Model/Contact.php:1197
-#: src/Model/Contact.php:1207
+#: 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:424 src/Model/Contact.php:1198
-#: src/Model/Contact.php:1208
+#: 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:425 src/Model/Contact.php:1209
+#: src/Content/Item.php:434 src/Model/Contact.php:1232
msgid "Send PM"
msgstr "Enviar Privado"
-#: src/Content/Item.php:426 src/Module/Contact.php:439
-#: src/Module/Contact/Profile.php:477
+#: 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:427 src/Module/Contact.php:440
-#: src/Module/Contact/Profile.php:485
+#: 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:428 src/Module/Contact.php:441
-#: src/Module/Contact/Profile.php:493
+#: src/Content/Item.php:437 src/Module/Contact.php:470
+#: src/Module/Contact/Profile.php:527
msgid "Collapse"
msgstr ""
-#: src/Content/Item.php:432 src/Object/Post.php:465
+#: 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:438 src/Content/Widget.php:80
-#: src/Model/Contact.php:1199 src/Model/Contact.php:1210
-#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:196
+#: 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:863
+#: src/Content/Item.php:882
msgid "Unable to fetch user."
msgstr ""
-#: src/Content/Nav.php:120
+#: src/Content/Nav.php:121
msgid "Nothing new here"
msgstr "No hay nada nuevo"
-#: src/Content/Nav.php:124 src/Module/Special/HTTPException.php:77
+#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77
msgid "Go back"
msgstr "Regresar"
-#: src/Content/Nav.php:125
+#: src/Content/Nav.php:126
msgid "Clear notifications"
msgstr "Borrar notificaciones"
-#: src/Content/Nav.php:126 src/Content/Text/HTML.php:865
-msgid "@name, !forum, #tags, content"
-msgstr "@name, !forum, #tags, contenido"
+#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867
+msgid "@name, !group, #tags, content"
+msgstr ""
-#: src/Content/Nav.php:220 src/Module/Security/Login.php:157
+#: src/Content/Nav.php:222 src/Module/Security/Login.php:157
msgid "Logout"
msgstr "Salir"
-#: src/Content/Nav.php:220
+#: src/Content/Nav.php:222
msgid "End this session"
msgstr "Cerrar sesión"
-#: src/Content/Nav.php:222 src/Module/Bookmarklet.php:44
+#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44
#: src/Module/Security/Login.php:158
msgid "Login"
msgstr "Ingreso"
-#: src/Content/Nav.php:222
+#: src/Content/Nav.php:224
msgid "Sign in"
msgstr "Ingresar"
-#: src/Content/Nav.php:227 src/Module/BaseProfile.php:57
-#: src/Module/Contact.php:483
+#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57
+#: src/Module/Contact.php:512
msgid "Conversations"
msgstr ""
-#: src/Content/Nav.php:227
+#: src/Content/Nav.php:229
msgid "Conversations you started"
msgstr ""
-#: src/Content/Nav.php:228 src/Module/BaseProfile.php:49
-#: src/Module/BaseSettings.php:100 src/Module/Contact.php:475
-#: src/Module/Contact/Profile.php:392 src/Module/Profile/Profile.php:268
+#: 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:228 view/theme/frio/theme.php:230
+#: 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:229 src/Module/BaseProfile.php:65
+#: 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:229 view/theme/frio/theme.php:234
+#: src/Content/Nav.php:231 view/theme/frio/theme.php:234
msgid "Your photos"
msgstr "Tus fotos"
-#: src/Content/Nav.php:230 src/Module/BaseProfile.php:73
-#: src/Module/BaseProfile.php:76 src/Module/Contact.php:499
+#: 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:230 view/theme/frio/theme.php:235
+#: src/Content/Nav.php:232 view/theme/frio/theme.php:235
msgid "Your postings with media"
msgstr ""
-#: src/Content/Nav.php:231 src/Content/Nav.php:291
+#: 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:252 view/theme/frio/theme.php:236
+#: 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:231 view/theme/frio/theme.php:236
+#: src/Content/Nav.php:233 view/theme/frio/theme.php:236
msgid "Your calendar"
msgstr ""
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Personal notes"
msgstr "Notas personales"
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Your personal notes"
msgstr "Tus notas personales"
-#: src/Content/Nav.php:249 src/Content/Nav.php:306
+#: src/Content/Nav.php:251 src/Content/Nav.php:308
msgid "Home"
msgstr "Inicio"
-#: src/Content/Nav.php:249 src/Module/Settings/OAuth.php:73
+#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73
msgid "Home Page"
msgstr "Página de Inicio"
-#: src/Content/Nav.php:253 src/Module/Register.php:168
+#: src/Content/Nav.php:255 src/Module/Register.php:168
#: src/Module/Security/Login.php:124
msgid "Register"
msgstr "Registro"
-#: src/Content/Nav.php:253
+#: src/Content/Nav.php:255
msgid "Create an account"
msgstr "Crea una cuenta"
-#: src/Content/Nav.php:259 src/Module/Help.php:67
+#: 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:241
+#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240
msgid "Help"
msgstr "Ayuda"
-#: src/Content/Nav.php:259
+#: src/Content/Nav.php:261
msgid "Help and documentation"
msgstr "Ayuda y documentación"
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:265
msgid "Apps"
msgstr "Aplicaciones"
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:265
msgid "Addon applications, utilities, games"
msgstr "Aplicaciones, utilidades, juegos"
-#: src/Content/Nav.php:267 src/Content/Text/HTML.php:863
+#: 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:267
+#: src/Content/Nav.php:269
msgid "Search site content"
msgstr "Buscar contenido en el sitio"
-#: src/Content/Nav.php:270 src/Content/Text/HTML.php:872
+#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874
msgid "Full Text"
msgstr "Texto completo"
-#: src/Content/Nav.php:271 src/Content/Text/HTML.php:873
+#: 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:272 src/Content/Nav.php:327
-#: src/Content/Text/HTML.php:874 src/Module/BaseProfile.php:127
-#: src/Module/BaseProfile.php:130 src/Module/Contact.php:410
-#: src/Module/Contact.php:506 view/theme/frio/theme.php:243
+#: 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:287
+#: src/Content/Nav.php:289
msgid "Community"
msgstr "Comunidad"
-#: src/Content/Nav.php:287
+#: src/Content/Nav.php:289
msgid "Conversations on this and other servers"
msgstr "Conversaciones aquí y en otros servidores"
-#: src/Content/Nav.php:294
+#: src/Content/Nav.php:296
msgid "Directory"
msgstr "Directorio"
-#: src/Content/Nav.php:294
+#: src/Content/Nav.php:296
msgid "People directory"
msgstr "Directorio de usuarios"
-#: src/Content/Nav.php:296 src/Module/BaseAdmin.php:85
+#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85
#: src/Module/BaseModeration.php:108
msgid "Information"
msgstr "Información"
-#: src/Content/Nav.php:296
+#: src/Content/Nav.php:298
msgid "Information about this friendica instance"
msgstr "Información sobre esta instancia Friendica"
-#: src/Content/Nav.php:299 src/Module/Admin/Tos.php:78
+#: 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:100
+#: src/Module/Tos.php:101
msgid "Terms of Service"
msgstr "Términos de Servicio"
-#: src/Content/Nav.php:299
+#: 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:304 view/theme/frio/theme.php:239
+#: src/Content/Nav.php:306 view/theme/frio/theme.php:239
msgid "Network"
msgstr "Red"
-#: src/Content/Nav.php:304 view/theme/frio/theme.php:239
+#: 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:306 view/theme/frio/theme.php:229
+#: 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:310
+#: src/Content/Nav.php:312
msgid "Introductions"
msgstr "Presentaciones"
-#: src/Content/Nav.php:310
+#: src/Content/Nav.php:312
msgid "Friend Requests"
msgstr "Solicitudes de amistad"
-#: src/Content/Nav.php:311 src/Module/BaseNotifications.php:149
+#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149
#: src/Module/Notifications/Introductions.php:75
msgid "Notifications"
msgstr "Notificaciones"
-#: src/Content/Nav.php:312
+#: src/Content/Nav.php:314
msgid "See all notifications"
msgstr "Ver todas las notificaciones"
-#: src/Content/Nav.php:313 src/Module/Settings/Connectors.php:244
+#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244
msgid "Mark as seen"
msgstr "Marcar como leído"
-#: src/Content/Nav.php:313
+#: src/Content/Nav.php:315
msgid "Mark all system notifications as seen"
msgstr ""
-#: src/Content/Nav.php:316 view/theme/frio/theme.php:241
+#: src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Private mail"
msgstr "Correo privado"
-#: src/Content/Nav.php:317
+#: src/Content/Nav.php:319
msgid "Inbox"
msgstr "Entrada"
-#: src/Content/Nav.php:318
+#: src/Content/Nav.php:320
msgid "Outbox"
msgstr "Enviados"
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Accounts"
msgstr "Cuentas"
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Manage other pages"
msgstr "Administrar otras páginas"
-#: 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/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:325 view/theme/frio/theme.php:242
+#: src/Content/Nav.php:327 view/theme/frio/theme.php:242
msgid "Account settings"
msgstr "Configurar la cuenta"
-#: src/Content/Nav.php:327 view/theme/frio/theme.php:243
+#: 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:332 src/Module/BaseAdmin.php:119
+#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119
msgid "Admin"
msgstr "Admin"
-#: src/Content/Nav.php:332
+#: src/Content/Nav.php:334
msgid "Site setup and configuration"
msgstr "Opciones y configuración del sitio"
-#: src/Content/Nav.php:333 src/Module/BaseModeration.php:127
+#: 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/Summary.php:76
+#: 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
@@ -2028,23 +2193,23 @@ msgstr "Opciones y configuración del sitio"
msgid "Moderation"
msgstr ""
-#: src/Content/Nav.php:333
+#: src/Content/Nav.php:335
msgid "Content and user moderation"
msgstr ""
-#: src/Content/Nav.php:336
+#: src/Content/Nav.php:338
msgid "Navigation"
msgstr "Navegación"
-#: src/Content/Nav.php:336
+#: src/Content/Nav.php:338
msgid "Site map"
msgstr "Mapa del sitio"
-#: src/Content/OEmbed.php:317
+#: src/Content/OEmbed.php:316
msgid "Embedding disabled"
msgstr "Contenido incrustrado desabilitado"
-#: src/Content/OEmbed.php:441
+#: src/Content/OEmbed.php:440
msgid "Embedded content"
msgstr "Contenido integrado"
@@ -2064,51 +2229,51 @@ msgstr "sig."
msgid "last"
msgstr "última"
-#: src/Content/Text/BBCode.php:713 src/Content/Text/BBCode.php:1599
-#: src/Content/Text/BBCode.php:1600
+#: 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:931
+#: src/Content/Text/BBCode.php:914
#, php-format
msgid "%2$s %3$s"
msgstr "%2$s %3$s"
-#: src/Content/Text/BBCode.php:956 src/Model/Item.php:3607
-#: src/Model/Item.php:3613 src/Model/Item.php:3614
+#: 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:1506 src/Content/Text/HTML.php:902
+#: 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:1539
+#: src/Content/Text/BBCode.php:1576
msgid "$1 wrote:"
msgstr "$1 escribió:"
-#: src/Content/Text/BBCode.php:1604 src/Content/Text/BBCode.php:1605
+#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642
msgid "Encrypted content"
msgstr "Contenido cifrado"
-#: src/Content/Text/BBCode.php:1869
+#: src/Content/Text/BBCode.php:1901
msgid "Invalid source protocol"
msgstr "Protocolo de fuente inválido"
-#: src/Content/Text/BBCode.php:1888
+#: src/Content/Text/BBCode.php:1920
msgid "Invalid link protocol"
msgstr "Protocolo de enlace inválido"
-#: src/Content/Text/HTML.php:780
+#: src/Content/Text/HTML.php:782
msgid "Loading more entries..."
msgstr "Cargar mas artículos.."
-#: src/Content/Text/HTML.php:781
+#: src/Content/Text/HTML.php:783
msgid "The end"
msgstr "Final"
-#: src/Content/Text/HTML.php:857 src/Content/Widget/VCard.php:109
-#: src/Model/Profile.php:463 src/Module/Contact/Profile.php:437
+#: 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"
@@ -2136,88 +2301,92 @@ 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:194
+#: 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:195
+#: 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:197
+#: 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:432
-#: src/Module/Directory.php:96 view/theme/vier/theme.php:198
+#: 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:199
+#: view/theme/vier/theme.php:198
msgid "Friend Suggestions"
msgstr "Sugerencias de Amistad"
-#: src/Content/Widget.php:84 view/theme/vier/theme.php:200
+#: 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:201
+#: 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:202
+#: 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:203
+#: view/theme/vier/theme.php:202
msgid "Global Directory"
msgstr "Directorio Global"
-#: src/Content/Widget.php:89 view/theme/vier/theme.php:205
+#: src/Content/Widget.php:89 view/theme/vier/theme.php:204
msgid "Local Directory"
msgstr "Directorio Local"
-#: src/Content/Widget.php:215 src/Model/Group.php:587
-#: src/Module/Contact.php:394 src/Module/Welcome.php:76
-msgid "Groups"
-msgstr "Grupos"
+#: 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:246
+#: 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:248 src/Module/Contact.php:338
-#: src/Module/Group.php:291
+#: 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:287
+#: src/Content/Widget.php:288
msgid "Protocols"
msgstr "Protocolos"
-#: src/Content/Widget.php:289
+#: src/Content/Widget.php:290
msgid "All Protocols"
msgstr "Todos los Protocolos"
-#: src/Content/Widget.php:317
+#: src/Content/Widget.php:318
msgid "Saved Folders"
msgstr "Directorios guardados"
-#: src/Content/Widget.php:319 src/Content/Widget.php:350
+#: src/Content/Widget.php:320 src/Content/Widget.php:351
msgid "Everything"
msgstr "Todo"
-#: src/Content/Widget.php:348
+#: src/Content/Widget.php:349
msgid "Categories"
msgstr "Categorías"
-#: src/Content/Widget.php:405
+#: src/Content/Widget.php:406
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
@@ -2225,30 +2394,38 @@ 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:501
+#: src/Content/Widget.php:506
msgid "Archives"
msgstr "Archivos"
-#: src/Content/Widget.php:525
+#: src/Content/Widget.php:514
+msgid "On this date"
+msgstr ""
+
+#: src/Content/Widget.php:534
msgid "Persons"
msgstr "Personas"
-#: src/Content/Widget.php:526
+#: src/Content/Widget.php:535
msgid "Organisations"
msgstr "Organizaciones"
-#: src/Content/Widget.php:527 src/Model/Contact.php:1656
+#: src/Content/Widget.php:536 src/Model/Contact.php:1698
msgid "News"
msgstr "Noticias"
-#: src/Content/Widget.php:531 src/Module/Settings/Account.php:453
+#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454
msgid "Account Types"
msgstr "Tipos de cuenta"
-#: src/Content/Widget.php:532 src/Module/Moderation/BaseUsers.php:69
+#: 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"
@@ -2297,32 +2474,32 @@ msgstr[2] "Etiquetas tendencia (últimas %d horas)"
msgid "More Trending Tags"
msgstr "Mas tendencias"
-#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:378
-#: src/Module/Contact/Profile.php:381 src/Module/Profile/Profile.php:199
+#: 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:379
-#: src/Module/Contact/Profile.php:383 src/Module/Profile/Profile.php:203
+#: 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: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/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:107 src/Model/Profile.php:476
+#: 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:111 src/Model/Contact.php:1200
-#: src/Model/Contact.php:1211 src/Model/Profile.php:465
-#: src/Module/Contact/Profile.php:429
+#: 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"
@@ -2363,8 +2540,8 @@ msgstr "Este contenido se mostrará solo a personas en el primer recuadro, aexce
#: src/Core/ACL.php:324
msgid ""
-"Start typing the name of a contact or a group to show a filtered list. You "
-"can also mention the special groups \"Followers\" and \"Mutuals\"."
+"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
@@ -2706,161 +2883,172 @@ msgstr "Base de datos ya esta en uso"
msgid "Could not connect to database."
msgstr "No es posible conectar con Base Datos."
-#: src/Core/L10n.php:408 src/Model/Event.php:432
-#: src/Module/Settings/Display.php:222
+#: src/Core/L10n.php:476 src/Model/Event.php:430
+#: src/Module/Settings/Display.php:235
msgid "Monday"
msgstr "Lunes"
-#: src/Core/L10n.php:408 src/Model/Event.php:433
-#: src/Module/Settings/Display.php:223
+#: src/Core/L10n.php:476 src/Model/Event.php:431
+#: src/Module/Settings/Display.php:236
msgid "Tuesday"
msgstr "Martes"
-#: src/Core/L10n.php:408 src/Model/Event.php:434
-#: src/Module/Settings/Display.php:224
+#: 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:408 src/Model/Event.php:435
-#: src/Module/Settings/Display.php:225
+#: src/Core/L10n.php:476 src/Model/Event.php:433
+#: src/Module/Settings/Display.php:238
msgid "Thursday"
msgstr "Jueves"
-#: src/Core/L10n.php:408 src/Model/Event.php:436
-#: src/Module/Settings/Display.php:226
+#: src/Core/L10n.php:476 src/Model/Event.php:434
+#: src/Module/Settings/Display.php:239
msgid "Friday"
msgstr "Viernes"
-#: src/Core/L10n.php:408 src/Model/Event.php:437
-#: src/Module/Settings/Display.php:227
+#: 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:408 src/Model/Event.php:431
-#: src/Module/Settings/Display.php:221
+#: src/Core/L10n.php:476 src/Model/Event.php:429
+#: src/Module/Settings/Display.php:234
msgid "Sunday"
msgstr "Domingo"
-#: src/Core/L10n.php:412 src/Model/Event.php:452
+#: src/Core/L10n.php:480 src/Model/Event.php:450
msgid "January"
msgstr "Enero"
-#: src/Core/L10n.php:412 src/Model/Event.php:453
+#: src/Core/L10n.php:480 src/Model/Event.php:451
msgid "February"
msgstr "Febrero"
-#: src/Core/L10n.php:412 src/Model/Event.php:454
+#: src/Core/L10n.php:480 src/Model/Event.php:452
msgid "March"
msgstr "Marzo"
-#: src/Core/L10n.php:412 src/Model/Event.php:455
+#: src/Core/L10n.php:480 src/Model/Event.php:453
msgid "April"
msgstr "Abril"
-#: src/Core/L10n.php:412 src/Core/L10n.php:431 src/Model/Event.php:443
+#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441
msgid "May"
msgstr "Mayo"
-#: src/Core/L10n.php:412 src/Model/Event.php:456
+#: src/Core/L10n.php:480 src/Model/Event.php:454
msgid "June"
msgstr "Junio"
-#: src/Core/L10n.php:412 src/Model/Event.php:457
+#: src/Core/L10n.php:480 src/Model/Event.php:455
msgid "July"
msgstr "Julio"
-#: src/Core/L10n.php:412 src/Model/Event.php:458
+#: src/Core/L10n.php:480 src/Model/Event.php:456
msgid "August"
msgstr "Agosto"
-#: src/Core/L10n.php:412 src/Model/Event.php:459
+#: src/Core/L10n.php:480 src/Model/Event.php:457
msgid "September"
msgstr "Septiembre"
-#: src/Core/L10n.php:412 src/Model/Event.php:460
+#: src/Core/L10n.php:480 src/Model/Event.php:458
msgid "October"
msgstr "Octubre"
-#: src/Core/L10n.php:412 src/Model/Event.php:461
+#: src/Core/L10n.php:480 src/Model/Event.php:459
msgid "November"
msgstr "Noviembre"
-#: src/Core/L10n.php:412 src/Model/Event.php:462
+#: src/Core/L10n.php:480 src/Model/Event.php:460
msgid "December"
msgstr "Diciembre"
-#: src/Core/L10n.php:427 src/Model/Event.php:424
+#: src/Core/L10n.php:495 src/Model/Event.php:422
msgid "Mon"
msgstr "Lun"
-#: src/Core/L10n.php:427 src/Model/Event.php:425
+#: src/Core/L10n.php:495 src/Model/Event.php:423
msgid "Tue"
msgstr "Mar"
-#: src/Core/L10n.php:427 src/Model/Event.php:426
+#: src/Core/L10n.php:495 src/Model/Event.php:424
msgid "Wed"
msgstr "Mie"
-#: src/Core/L10n.php:427 src/Model/Event.php:427
+#: src/Core/L10n.php:495 src/Model/Event.php:425
msgid "Thu"
msgstr "Jue"
-#: src/Core/L10n.php:427 src/Model/Event.php:428
+#: src/Core/L10n.php:495 src/Model/Event.php:426
msgid "Fri"
msgstr "Vie"
-#: src/Core/L10n.php:427 src/Model/Event.php:429
+#: src/Core/L10n.php:495 src/Model/Event.php:427
msgid "Sat"
msgstr "Sab"
-#: src/Core/L10n.php:427 src/Model/Event.php:423
+#: src/Core/L10n.php:495 src/Model/Event.php:421
msgid "Sun"
msgstr "Dom"
-#: src/Core/L10n.php:431 src/Model/Event.php:439
+#: src/Core/L10n.php:499 src/Model/Event.php:437
msgid "Jan"
msgstr "Ene"
-#: src/Core/L10n.php:431 src/Model/Event.php:440
+#: src/Core/L10n.php:499 src/Model/Event.php:438
msgid "Feb"
msgstr "Feb"
-#: src/Core/L10n.php:431 src/Model/Event.php:441
+#: src/Core/L10n.php:499 src/Model/Event.php:439
msgid "Mar"
msgstr "Mar"
-#: src/Core/L10n.php:431 src/Model/Event.php:442
+#: src/Core/L10n.php:499 src/Model/Event.php:440
msgid "Apr"
msgstr "Abr"
-#: src/Core/L10n.php:431 src/Model/Event.php:444
+#: src/Core/L10n.php:499 src/Model/Event.php:442
msgid "Jun"
msgstr "Jun"
-#: src/Core/L10n.php:431 src/Model/Event.php:445
+#: src/Core/L10n.php:499 src/Model/Event.php:443
msgid "Jul"
msgstr "Jul"
-#: src/Core/L10n.php:431 src/Model/Event.php:446
+#: src/Core/L10n.php:499 src/Model/Event.php:444
msgid "Aug"
msgstr "Ago"
-#: src/Core/L10n.php:431
+#: src/Core/L10n.php:499
msgid "Sep"
msgstr "Sep"
-#: src/Core/L10n.php:431 src/Model/Event.php:448
+#: src/Core/L10n.php:499 src/Model/Event.php:446
msgid "Oct"
msgstr "Oct"
-#: src/Core/L10n.php:431 src/Model/Event.php:449
+#: src/Core/L10n.php:499 src/Model/Event.php:447
msgid "Nov"
msgstr "Nov"
-#: src/Core/L10n.php:431 src/Model/Event.php:450
+#: 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
@@ -2905,22 +3093,22 @@ msgid ""
" 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:197
+#: src/Core/Update.php:183
#, php-format
msgid "%s: executing pre update %d"
msgstr "%s: ejecutando pre update %d "
-#: src/Core/Update.php:239
+#: src/Core/Update.php:225
#, php-format
msgid "%s: executing post update %d"
msgstr "%s: ejecutando post update %d "
-#: src/Core/Update.php:313
+#: 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:353
+#: src/Core/Update.php:339
#, php-format
msgid ""
"\n"
@@ -2930,16 +3118,16 @@ 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:359
+#: 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:363 src/Core/Update.php:391
+#: 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:385
+#: src/Core/Update.php:371
#, php-format
msgid ""
"\n"
@@ -2951,28 +3139,28 @@ msgstr ""
msgid "The database version had been set to %s."
msgstr "Versión de la Base de Datos establecida 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 actualización de la publicación está en versión %d, debe estar en %d para eliminar las tablas de manera segura."
-#: src/Database/DBStructure.php:83
+#: src/Database/DBStructure.php:95
msgid "No unused tables found."
msgstr "No hay tablas sin usar."
-#: 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 "Estas tablas no se utilizan por friendica y se eliminarán cuando ejecute \"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 "No hay tablas en MyISAM o InnoDB con formato Antílope."
-#: src/Database/DBStructure.php:150
+#: src/Database/DBStructure.php:161
#, php-format
msgid ""
"\n"
@@ -2980,20 +3168,20 @@ msgid ""
"%s\n"
msgstr "\n\nError %d ocurrido durante la actualización de la base de datos:\n%s\n"
-#: src/Database/DBStructure.php:153
+#: src/Database/DBStructure.php:164
msgid "Errors encountered performing database changes: "
msgstr "Errores encontrados al realizar cambios en la base de datos: "
-#: src/Database/DBStructure.php:221
+#: src/Database/DBStructure.php:232
msgid "Another database update is currently running."
msgstr "Otro update de la BD esta corriendo."
-#: src/Database/DBStructure.php:225
+#: src/Database/DBStructure.php:236
#, php-format
msgid "%s: Database update"
msgstr "%s: Actualizar Base de Datos"
-#: src/Database/DBStructure.php:482
+#: src/Database/DBStructure.php:493
#, php-format
msgid "%s: updating %s table."
msgstr "%s: actualizando %s tabla."
@@ -3024,82 +3212,122 @@ msgstr "Error Interno del Servidor"
msgid "Legacy module file not found: %s"
msgstr "Modulo legado no encontrado: %s"
-#: src/Model/Contact.php:1217 src/Module/Moderation/Users/Pending.php:102
+#: 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 "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/Model/Contact.php:1652
+#: src/Model/Contact.php:1694
msgid "Organisation"
msgstr "Organización"
-#: src/Model/Contact.php:1660
-msgid "Forum"
-msgstr "Foro"
+#: src/Model/Contact.php:1702
+msgid "Group"
+msgstr ""
-#: src/Model/Contact.php:2947
+#: src/Model/Contact.php:3005
msgid "Disallowed profile URL."
msgstr "Dirección de perfil no permitida."
-#: src/Model/Contact.php:2952 src/Module/Friendica.php:83
+#: src/Model/Contact.php:3010 src/Module/Friendica.php:101
msgid "Blocked domain"
msgstr "Dominio bloqueado"
-#: src/Model/Contact.php:2957
+#: src/Model/Contact.php:3015
msgid "Connect URL missing."
msgstr "Falta el conector URL."
-#: src/Model/Contact.php:2966
+#: 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 "No pudo añadirse el contacto. Consulte las credenciales de red en Ajustes -> Redes Sociales."
-#: src/Model/Contact.php:2984
+#: src/Model/Contact.php:3042
#, php-format
msgid "Expected network %s does not match actual network %s"
msgstr ""
-#: src/Model/Contact.php:3001
+#: 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:3003
+#: 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:3006
+#: 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:3009
+#: 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:3012
+#: src/Model/Contact.php:3070
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:3013
+#: 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/Model/Contact.php:3019
+#: 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/Model/Contact.php:3024
+#: 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/Model/Contact.php:3089
+#: src/Model/Contact.php:3148
msgid "Unable to retrieve contact information."
msgstr "No ha sido posible recibir la información del contacto."
@@ -3107,54 +3335,54 @@ msgstr "No ha sido posible recibir la información del contacto."
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
+#: 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:472
-#: src/Model/Event.php:944
+#: 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:421
+#: src/Model/Event.php:419
msgid "all-day"
msgstr "todo el día"
-#: src/Model/Event.php:447
+#: src/Model/Event.php:445
msgid "Sept"
msgstr "Sept"
-#: src/Model/Event.php:464 src/Module/Calendar/Show.php:128
+#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128
#: src/Util/Temporal.php:343
msgid "today"
msgstr "hoy"
-#: src/Model/Event.php:465 src/Module/Calendar/Show.php:129
-#: src/Module/Settings/Display.php:232 src/Util/Temporal.php:353
+#: 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:466 src/Module/Calendar/Show.php:130
-#: src/Module/Settings/Display.php:233 src/Util/Temporal.php:354
+#: 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:467 src/Module/Calendar/Show.php:131
-#: src/Module/Settings/Display.php:234 src/Util/Temporal.php:355
+#: 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:469
+#: src/Model/Event.php:467
msgid "No events to display"
msgstr "No hay eventos a mostrar"
-#: src/Model/Event.php:518 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69
+#: 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:559 src/Module/Calendar/Event/Show.php:67
+#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67
msgid "Event not found."
msgstr ""
@@ -3186,110 +3414,66 @@ msgstr "D g:i A"
msgid "g:i A"
msgstr "g:i A"
-#: src/Model/Event.php:959 src/Model/Event.php:961
+#: src/Model/Event.php:964 src/Model/Event.php:966
msgid "Show map"
msgstr "Mostrar mapa"
-#: src/Model/Event.php:960
+#: src/Model/Event.php:965
msgid "Hide map"
msgstr "Ocultar mapa"
-#: src/Model/Event.php:1053
+#: src/Model/Event.php:1058
#, php-format
msgid "%s's birthday"
msgstr "Cumpleaños de %s"
-#: src/Model/Event.php:1054
+#: src/Model/Event.php:1059
#, php-format
msgid "Happy Birthday %s"
msgstr "Feliz cumpleaños %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 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:503
-msgid "Default privacy group for new contacts"
-msgstr "Grupo por defecto para nuevos contactos"
-
-#: src/Model/Group.php:535
-msgid "Everybody"
-msgstr "Todo el mundo"
-
-#: src/Model/Group.php:554
-msgid "edit"
-msgstr "editar"
-
-#: src/Model/Group.php:586
-msgid "add"
-msgstr "añadir"
-
-#: src/Model/Group.php:591
-msgid "Edit group"
-msgstr "Editar grupo"
-
-#: src/Model/Group.php:592 src/Module/Group.php:192
-msgid "Contacts not in any group"
-msgstr "Contactos sin grupo"
-
-#: src/Model/Group.php:594
-msgid "Create a new group"
-msgstr "Crear un nuevo grupo"
-
-#: src/Model/Group.php:595 src/Module/Group.php:177 src/Module/Group.php:200
-#: src/Module/Group.php:275
-msgid "Group Name: "
-msgstr "Nombre del grupo: "
-
-#: src/Model/Group.php:596
-msgid "Edit groups"
-msgstr "Editar grupo"
-
-#: src/Model/Item.php:2023
+#: 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:2926
+#: src/Model/Item.php:3007
msgid "activity"
msgstr "Actividad"
-#: src/Model/Item.php:2928
+#: src/Model/Item.php:3009
msgid "comment"
msgstr ""
-#: src/Model/Item.php:2931 src/Module/Post/Tag/Add.php:123
+#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123
msgid "post"
msgstr "Publicación"
-#: src/Model/Item.php:3093
+#: src/Model/Item.php:3182
#, php-format
msgid "%s is blocked"
msgstr ""
-#: src/Model/Item.php:3095
+#: src/Model/Item.php:3184
#, php-format
msgid "%s is ignored"
msgstr ""
-#: src/Model/Item.php:3097
+#: src/Model/Item.php:3186
#, php-format
msgid "Content from %s is collapsed"
msgstr ""
-#: src/Model/Item.php:3101
+#: src/Model/Item.php:3190
#, php-format
msgid "Content warning: %s"
msgstr "Advertencia de contenido: %s"
-#: src/Model/Item.php:3519
+#: src/Model/Item.php:3652
msgid "bytes"
msgstr "bytes"
-#: src/Model/Item.php:3550
+#: src/Model/Item.php:3683
#, php-format
msgid "%2$s (%3$d%%, %1$d vote)"
msgid_plural "%2$s (%3$d%%, %1$d votes)"
@@ -3297,7 +3481,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Model/Item.php:3552
+#: src/Model/Item.php:3685
#, php-format
msgid "%2$s (%1$d vote)"
msgid_plural "%2$s (%1$d votes)"
@@ -3305,7 +3489,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Model/Item.php:3557
+#: src/Model/Item.php:3690
#, php-format
msgid "%d voter. Poll end: %s"
msgid_plural "%d voters. Poll end: %s"
@@ -3313,7 +3497,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Model/Item.php:3559
+#: src/Model/Item.php:3692
#, php-format
msgid "%d voter."
msgid_plural "%d voters."
@@ -3321,12 +3505,12 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Model/Item.php:3561
+#: src/Model/Item.php:3694
#, php-format
msgid "Poll end: %s"
msgstr ""
-#: src/Model/Item.php:3595 src/Model/Item.php:3596
+#: src/Model/Item.php:3728 src/Model/Item.php:3729
msgid "View on separate page"
msgstr "Ver en pagina aparte"
@@ -3334,227 +3518,228 @@ msgstr "Ver en pagina aparte"
msgid "[no subject]"
msgstr "[sin asunto]"
-#: src/Model/Photo.php:1189 src/Module/Media/Photo/Upload.php:197
+#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170
msgid "Wall Photos"
msgstr "Foto del Perfil"
-#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:283
+#: 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:363
+#: src/Model/Profile.php:361
msgid "Change profile photo"
msgstr "Cambiar foto del perfil"
-#: src/Model/Profile.php:376 src/Module/Directory.php:152
+#: src/Model/Profile.php:374 src/Module/Directory.php:152
#: src/Module/Profile/Profile.php:209
msgid "Homepage:"
msgstr "Inicio:"
-#: src/Model/Profile.php:377 src/Module/Contact/Profile.php:385
+#: 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:467
+#: src/Model/Profile.php:465
msgid "Atom feed"
msgstr "Atom feed"
-#: src/Model/Profile.php:474
+#: src/Model/Profile.php:472
msgid "This website has been verified to belong to the same person."
msgstr ""
-#: src/Model/Profile.php:511
+#: src/Model/Profile.php:509
msgid "F d"
msgstr "F d"
-#: src/Model/Profile.php:575 src/Model/Profile.php:664
+#: src/Model/Profile.php:573 src/Model/Profile.php:662
msgid "[today]"
msgstr "[hoy]"
-#: src/Model/Profile.php:584
+#: src/Model/Profile.php:582
msgid "Birthday Reminders"
msgstr "Recordatorios de cumpleaños"
-#: src/Model/Profile.php:585
+#: src/Model/Profile.php:583
msgid "Birthdays this week:"
msgstr "Cumpleaños esta semana:"
-#: src/Model/Profile.php:613
+#: src/Model/Profile.php:611
msgid "g A l F d"
msgstr "g A l F d"
-#: src/Model/Profile.php:651
+#: src/Model/Profile.php:649
msgid "[No description]"
msgstr "[Sin descripción]"
-#: src/Model/Profile.php:677
+#: src/Model/Profile.php:675
msgid "Event Reminders"
msgstr "Recordatorios de eventos"
-#: src/Model/Profile.php:678
+#: src/Model/Profile.php:676
msgid "Upcoming events the next 7 days:"
msgstr "Eventos de los próximos 7 dias:"
-#: src/Model/Profile.php:875
+#: src/Model/Profile.php:873
#, php-format
msgid "OpenWebAuth: %1$s welcomes %2$s"
msgstr "OpenWebAuth: %1$s te da la bienvenida %2$s"
-#: src/Model/Profile.php:1015
+#: src/Model/Profile.php:1013
msgid "Hometown:"
msgstr "Ciudad de origen:"
-#: src/Model/Profile.php:1016
+#: src/Model/Profile.php:1014
msgid "Marital Status:"
msgstr "Estado civil:"
-#: src/Model/Profile.php:1017
+#: src/Model/Profile.php:1015
msgid "With:"
msgstr "Con:"
-#: src/Model/Profile.php:1018
+#: src/Model/Profile.php:1016
msgid "Since:"
msgstr "Desde:"
-#: src/Model/Profile.php:1019
+#: src/Model/Profile.php:1017
msgid "Sexual Preference:"
msgstr "Preferencia sexual:"
-#: src/Model/Profile.php:1020
+#: src/Model/Profile.php:1018
msgid "Political Views:"
msgstr "Ideas políticas:"
-#: src/Model/Profile.php:1021
+#: src/Model/Profile.php:1019
msgid "Religious Views:"
msgstr "Creencias religiosas:"
-#: src/Model/Profile.php:1022
+#: src/Model/Profile.php:1020
msgid "Likes:"
msgstr "Me gustan:"
-#: src/Model/Profile.php:1023
+#: src/Model/Profile.php:1021
msgid "Dislikes:"
msgstr "No me gustan:"
-#: src/Model/Profile.php:1024
+#: src/Model/Profile.php:1022
msgid "Title/Description:"
msgstr "Título/Descripción:"
-#: src/Model/Profile.php:1025 src/Module/Admin/Summary.php:221
+#: 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:1026
+#: src/Model/Profile.php:1024
msgid "Musical interests"
msgstr "Gustos musicales"
-#: src/Model/Profile.php:1027
+#: src/Model/Profile.php:1025
msgid "Books, literature"
msgstr "Libros, literatura"
-#: src/Model/Profile.php:1028
+#: src/Model/Profile.php:1026
msgid "Television"
msgstr "Televisión"
-#: src/Model/Profile.php:1029
+#: src/Model/Profile.php:1027
msgid "Film/dance/culture/entertainment"
msgstr "Películas/baile/cultura/entretenimiento"
-#: src/Model/Profile.php:1030
+#: src/Model/Profile.php:1028
msgid "Hobbies/Interests"
msgstr "Aficiones/Intereses"
-#: src/Model/Profile.php:1031
+#: src/Model/Profile.php:1029
msgid "Love/romance"
msgstr "Amor/Romance"
-#: src/Model/Profile.php:1032
+#: src/Model/Profile.php:1030
msgid "Work/employment"
msgstr "Trabajo/ocupación"
-#: src/Model/Profile.php:1033
+#: src/Model/Profile.php:1031
msgid "School/education"
msgstr "Escuela/estudios"
-#: src/Model/Profile.php:1034
+#: src/Model/Profile.php:1032
msgid "Contact information and Social Networks"
msgstr "Informacioń de contacto y Redes sociales"
-#: src/Model/User.php:214 src/Model/User.php:1120
+#: 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:572 src/Model/User.php:605
+#: src/Model/User.php:620 src/Model/User.php:653
msgid "Login failed"
msgstr "Ingreso fallido"
-#: src/Model/User.php:637
+#: src/Model/User.php:685
msgid "Not enough information to authenticate"
msgstr "Falta información para autenticación"
-#: src/Model/User.php:754
+#: src/Model/User.php:806
msgid "Password can't be empty"
msgstr "La contraseña es requerida"
-#: src/Model/User.php:796
+#: src/Model/User.php:848
msgid "Empty passwords are not allowed."
msgstr "No se permiten contraseñas vacias"
-#: src/Model/User.php:800
+#: 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:804
+#: src/Model/User.php:856
msgid "The password length is limited to 72 characters."
msgstr ""
-#: src/Model/User.php:808
+#: src/Model/User.php:860
msgid "The password can't contain white spaces nor accentuated letters"
msgstr ""
-#: src/Model/User.php:1003
+#: 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:1010
+#: src/Model/User.php:1076
msgid "An invitation is required."
msgstr "Se requiere de invitación."
-#: src/Model/User.php:1014
+#: src/Model/User.php:1080
msgid "Invitation could not be verified."
msgstr "No se puede verificar la invitación."
-#: src/Model/User.php:1022
+#: src/Model/User.php:1088
msgid "Invalid OpenID url"
msgstr "Dirección OpenID no válida"
-#: src/Model/User.php:1035 src/Security/Authentication.php:241
+#: 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:1035 src/Security/Authentication.php:241
+#: 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:1041
+#: src/Model/User.php:1107
msgid "Please enter the required information."
msgstr "Por favor, introduce la información necesaria."
-#: src/Model/User.php:1055
+#: 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:1062
+#: src/Model/User.php:1128
#, php-format
msgid "Username should be at least %s character."
msgid_plural "Username should be at least %s characters."
@@ -3562,7 +3747,7 @@ 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:1066
+#: src/Model/User.php:1132
#, php-format
msgid "Username should be at most %s character."
msgid_plural "Username should be at most %s characters."
@@ -3570,60 +3755,60 @@ 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:1074
+#: 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:1079
+#: 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:1083
+#: 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:1086
+#: 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:1090 src/Model/User.php:1096
+#: 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:1102
+#: 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:1110 src/Model/User.php:1167
+#: 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:1154 src/Model/User.php:1158
+#: 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:1181
+#: 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:1188
+#: 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:1193
+#: src/Model/User.php:1259
msgid "Friends"
msgstr "Amigos"
-#: src/Model/User.php:1197
+#: src/Model/User.php:1263
msgid ""
-"An error occurred creating your default contact group. Please try again."
-msgstr "Ocurrió un error creando el grupo Default. Vuleve a intentar."
+"An error occurred creating your default contact circle. Please try again."
+msgstr ""
-#: src/Model/User.php:1236
+#: src/Model/User.php:1307
msgid "Profile Photos"
msgstr "Fotos del perfil"
-#: src/Model/User.php:1431
+#: src/Model/User.php:1487
#, php-format
msgid ""
"\n"
@@ -3631,7 +3816,7 @@ msgid ""
"\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:1434
+#: src/Model/User.php:1490
#, php-format
msgid ""
"\n"
@@ -3663,12 +3848,12 @@ msgid ""
"\t\tThank you and welcome to %4$s."
msgstr ""
-#: src/Model/User.php:1467 src/Model/User.php:1574
+#: 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:1487
+#: src/Model/User.php:1543
#, php-format
msgid ""
"\n"
@@ -3683,12 +3868,12 @@ msgid ""
"\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:1506
+#: src/Model/User.php:1562
#, php-format
msgid "Registration at %s"
msgstr "Registro en %s"
-#: src/Model/User.php:1530
+#: src/Model/User.php:1586
#, php-format
msgid ""
"\n"
@@ -3697,7 +3882,7 @@ msgid ""
"\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:1538
+#: src/Model/User.php:1594
#, php-format
msgid ""
"\n"
@@ -3754,10 +3939,10 @@ msgid "Enable"
msgstr "Activar"
#: src/Module/Admin/Addons/Details.php:111
-#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:209
+#: 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:220
+#: 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
@@ -3767,7 +3952,7 @@ 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:134
+#: src/Module/BaseSettings.php:132
msgid "Addons"
msgstr "Añadidos"
@@ -3798,10 +3983,10 @@ 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:560 src/Module/Settings/Addons.php:78
+#: 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:169 src/Module/Settings/Display.php:247
+#: 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"
@@ -3886,15 +4071,17 @@ msgstr "Bloquear opción %s "
msgid "Manage Additional Features"
msgstr "Administrar opciones adicionales"
-#: src/Module/Admin/Federation.php:75
+#: 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:149 src/Module/Admin/Federation.php:398
+#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403
msgid "unknown"
msgstr "desconocido"
-#: src/Module/Admin/Federation.php:182
+#: src/Module/Admin/Federation.php:187
#, php-format
msgid "%2$s total system"
msgid_plural "%2$s total systems"
@@ -3902,7 +4089,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/Admin/Federation.php:183
+#: src/Module/Admin/Federation.php:188
#, php-format
msgid "%2$s active user last month"
msgid_plural "%2$s active users last month"
@@ -3910,7 +4097,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/Admin/Federation.php:184
+#: 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"
@@ -3918,7 +4105,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/Admin/Federation.php:185
+#: src/Module/Admin/Federation.php:190
#, php-format
msgid "%2$s registered user"
msgid_plural "%2$s registered users"
@@ -3926,7 +4113,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/Admin/Federation.php:186
+#: 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"
@@ -3934,7 +4121,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/Admin/Federation.php:189
+#: src/Module/Admin/Federation.php:194
#, php-format
msgid "%2$s post per user"
msgid_plural "%2$s posts per user"
@@ -3942,7 +4129,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/Admin/Federation.php:194
+#: src/Module/Admin/Federation.php:199
#, php-format
msgid "%2$s user per system"
msgid_plural "%2$s users per system"
@@ -3950,18 +4137,18 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/Admin/Federation.php:204
+#: 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:210 src/Module/BaseAdmin.php:87
+#: 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:214
+#: src/Module/Admin/Federation.php:219
#, php-format
msgid ""
"Currently this node is aware of %2$s node (%3$s active users last month, "
@@ -4155,7 +4342,8 @@ msgstr ""
msgid "Job Parameters"
msgstr "Parámetros del Job"
-#: src/Module/Admin/Queue.php:78 src/Module/Settings/OAuth.php:74
+#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95
+#: src/Module/Settings/OAuth.php:74
msgid "Created"
msgstr "Creado"
@@ -4168,11 +4356,11 @@ msgstr "Prioridad"
msgid "%s is no valid input for maximum image size"
msgstr ""
-#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:169
+#: 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/Admin/Site.php:330 src/Module/Settings/Display.php:179
+#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188
#, php-format
msgid "%s - (Experimental)"
msgstr "%s - (Experimental)"
@@ -4262,7 +4450,7 @@ msgid "Policies"
msgstr "Políticas"
#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252
-#: src/Module/Contact.php:516 src/Module/Profile/Profile.php:276
+#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276
msgid "Advanced"
msgstr "Avanzado"
@@ -4592,8 +4780,8 @@ 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 "
-"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."
+"circle rather than public."
+msgstr ""
#: src/Module/Admin/Site.php:456
msgid "Don't include post content in email notifications"
@@ -5007,13 +5195,13 @@ 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 group when calculating network count"
+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 groups the query can be very "
-"expensive."
+"On systems with users that heavily use contact circles the query can be very"
+" expensive."
msgstr ""
#: src/Module/Admin/Site.php:509
@@ -5057,7 +5245,7 @@ msgid ""
"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:286
+#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309
#: src/Module/Settings/TwoFactor/Index.php:125
msgid "Disabled"
msgstr "Deshabilitado"
@@ -5252,51 +5440,40 @@ msgid ""
"href=\"%s\">the installation page for help."
msgstr "%s no se alcanza en tu sistema. Es un error grave en la configuración que evita la comunicación de servidor a servidor. Ver la página de instalación como ayuda."
-#: src/Module/Admin/Summary.php:142
-#, 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/Module/Admin/Summary.php:156
-#, 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/Module/Admin/Summary.php:172
+#: 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:180
+#: 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:188
+#: 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:199
+#: src/Module/Admin/Summary.php:175
msgid "Message queues"
msgstr "Cola de mensajes"
-#: src/Module/Admin/Summary.php:205
+#: src/Module/Admin/Summary.php:181
msgid "Server Settings"
msgstr "Ajustes del Servidor"
-#: src/Module/Admin/Summary.php:223
+#: src/Module/Admin/Summary.php:199
msgid "Version"
msgstr "Versión"
-#: src/Module/Admin/Summary.php:227
+#: src/Module/Admin/Summary.php:203
msgid "Active addons"
msgstr "Añadidos Activos"
@@ -5449,11 +5626,11 @@ msgstr "Elemento no encontrado."
msgid "Please login to continue."
msgstr "Inicia sesión para continuar."
-#: src/Module/BaseAdmin.php:63 src/Module/BaseModeration.php:86
+#: src/Module/BaseAdmin.php:63
msgid "You don't have access to administration pages."
msgstr "No tienes acceso a las páginas de administración."
-#: src/Module/BaseAdmin.php:67 src/Module/BaseModeration.php:90
+#: src/Module/BaseAdmin.php:67
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
@@ -5463,11 +5640,11 @@ msgstr "La cuenta subadministrada no puede acceder a las páginas de administrac
msgid "Overview"
msgstr "Resumen"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:111
+#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
msgid "Configuration"
msgstr "Configuración"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:112
+#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
msgid "Additional features"
msgstr "Características adicionales"
@@ -5487,7 +5664,7 @@ msgstr "Workers diferidos Inspeccionados"
msgid "Inspect worker Queue"
msgstr "Inspeccionar Cola de Workers"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:119
+#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
msgid "Diagnostics"
msgstr "Diagnósticos"
@@ -5515,7 +5692,7 @@ msgstr "Conversión a ActivityPub"
msgid "Addon Features"
msgstr "Funciones de los Añadidos"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:128
+#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
msgid "User registrations waiting for confirmation"
msgstr "Registro de usuarios esperando la confirmación"
@@ -5550,32 +5727,46 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/BaseModeration.php:112 src/Module/Moderation/Users/Index.php:148
+#: 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 "Usuarios"
-#: src/Module/BaseModeration.php:114
+#: src/Module/BaseModeration.php:115
msgid "Tools"
msgstr "Herramientas"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:116
msgid "Contact Blocklist"
msgstr "Lista de Contactos Bloqueados"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:117
msgid "Server Blocklist"
msgstr "Lista de Bloqueo del Servidor"
-#: src/Module/BaseModeration.php:117 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
msgid "Delete Item"
msgstr "Eliminar Artículo"
-#: src/Module/BaseModeration.php:120 src/Module/Moderation/Item/Source.php:76
+#: 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:478
+#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507
msgid "Profile Details"
msgstr "Detalles del Perfil"
@@ -5599,15 +5790,15 @@ msgstr ""
msgid "Tips for New Members"
msgstr "Consejos para nuevos miembros"
-#: src/Module/BaseSearch.php:69
+#: src/Module/BaseSearch.php:71
#, php-format
msgid "People Search - %s"
msgstr "Buscar personas - %s"
-#: src/Module/BaseSearch.php:79
+#: src/Module/BaseSearch.php:75
#, php-format
-msgid "Forum Search - %s"
-msgstr "Búsqueda de Foros - %s"
+msgid "Group Search - %s"
+msgstr ""
#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139
msgid "No matches"
@@ -5627,36 +5818,40 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/BaseSettings.php:80
+#: src/Module/BaseSettings.php:78
msgid "Account"
msgstr "Cuenta"
-#: src/Module/BaseSettings.php:87 src/Module/Security/TwoFactor/Verify.php:96
+#: 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/BaseSettings.php:120
+#: src/Module/BaseSettings.php:118
msgid "Display"
msgstr "Interfaz del usuario"
-#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:204
+#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204
msgid "Social Networks"
msgstr "Redes sociales"
-#: src/Module/BaseSettings.php:141 src/Module/Settings/Delegation.php:170
+#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172
msgid "Manage Accounts"
msgstr "Gestionar cuentas"
-#: src/Module/BaseSettings.php:148
+#: src/Module/BaseSettings.php:146
msgid "Connected apps"
msgstr "Aplicaciones conectadas"
-#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:98
+#: 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 "Exportación de datos personales"
-#: src/Module/BaseSettings.php:162
+#: src/Module/BaseSettings.php:167
msgid "Remove account"
msgstr "Eliminar cuenta"
@@ -5776,10 +5971,113 @@ msgstr "Vista"
msgid "Create New Event"
msgstr "Crea un evento nuevo"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:235
+#: 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 "Contacto no encontrado."
+
+#: 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/Circle.php:111 src/Module/Contact/Revoke.php:73
+msgid "Contact is deleted."
+msgstr "El contacto se borra."
+
+#: 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 "Petición no reconocida"
+
+#: 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 "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."
@@ -5788,159 +6086,146 @@ msgstr[0] "%d contacto editado."
msgstr[1] "%d contactos editados."
msgstr[2] "%d contactos editados."
-#: src/Module/Contact.php:341
+#: src/Module/Contact.php:348
msgid "Show all contacts"
msgstr "Mostrar todos los contactos"
-#: src/Module/Contact.php:346 src/Module/Contact.php:414
+#: src/Module/Contact.php:353 src/Module/Contact.php:432
#: src/Module/Moderation/BaseUsers.php:85
msgid "Pending"
msgstr "Pendiente"
-#: src/Module/Contact.php:349
+#: src/Module/Contact.php:356
msgid "Only show pending contacts"
msgstr "Solo mostrar contactos pendientes"
-#: src/Module/Contact.php:354 src/Module/Contact.php:415
+#: src/Module/Contact.php:361 src/Module/Contact.php:435
#: src/Module/Moderation/BaseUsers.php:93
msgid "Blocked"
msgstr "Bloqueados"
-#: src/Module/Contact.php:357
+#: src/Module/Contact.php:364
msgid "Only show blocked contacts"
msgstr "Mostrar solo contactos bloqueados"
-#: src/Module/Contact.php:362 src/Module/Contact.php:417
-#: src/Object/Post.php:345
+#: 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:365
+#: src/Module/Contact.php:372
msgid "Only show ignored contacts"
msgstr "Mostrar solo contactos ignorados"
-#: src/Module/Contact.php:370 src/Module/Contact.php:418
+#: src/Module/Contact.php:377 src/Module/Contact.php:444
msgid "Collapsed"
msgstr ""
-#: src/Module/Contact.php:373
+#: src/Module/Contact.php:380
msgid "Only show collapsed contacts"
msgstr ""
-#: src/Module/Contact.php:378 src/Module/Contact.php:419
+#: src/Module/Contact.php:385 src/Module/Contact.php:447
msgid "Archived"
msgstr "Archivados"
-#: src/Module/Contact.php:381
+#: src/Module/Contact.php:388
msgid "Only show archived contacts"
msgstr "Mostrar solo contactos archivados"
-#: src/Module/Contact.php:386 src/Module/Contact.php:416
+#: src/Module/Contact.php:393 src/Module/Contact.php:438
msgid "Hidden"
msgstr "Ocultos"
-#: src/Module/Contact.php:389
+#: src/Module/Contact.php:396
msgid "Only show hidden contacts"
msgstr "Mostrar solo contactos ocultos"
-#: src/Module/Contact.php:397
-msgid "Organize your contact groups"
-msgstr "Organizar tus grupos de contactos"
+#: src/Module/Contact.php:404
+msgid "Organize your contact circles"
+msgstr ""
-#: src/Module/Contact.php:430
+#: src/Module/Contact.php:459
msgid "Search your contacts"
msgstr "Buscar en tus contactos"
-#: src/Module/Contact.php:431 src/Module/Search/Index.php:207
+#: 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:438
+#: src/Module/Contact.php:467
msgid "Update"
msgstr "Actualizar"
-#: src/Module/Contact.php:439 src/Module/Contact/Profile.php:477
+#: 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:440 src/Module/Contact/Profile.php:485
+#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519
msgid "Unignore"
msgstr "Quitar de Ignorados"
-#: src/Module/Contact.php:441 src/Module/Contact/Profile.php:493
+#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527
msgid "Uncollapse"
msgstr ""
-#: src/Module/Contact.php:443
+#: src/Module/Contact.php:472
msgid "Batch Actions"
msgstr "Acciones en lote"
-#: src/Module/Contact.php:486
+#: src/Module/Contact.php:515
msgid "Conversations started by this contact"
msgstr "Se iniciaron conversaciones con el contacto"
-#: src/Module/Contact.php:491
+#: src/Module/Contact.php:520
msgid "Posts and Comments"
msgstr "Artículos y Comentarios"
-#: src/Module/Contact.php:494
+#: src/Module/Contact.php:523
msgid "Individual Posts and Replies"
msgstr ""
-#: src/Module/Contact.php:502
+#: src/Module/Contact.php:531
msgid "Posts containing media objects"
msgstr ""
-#: src/Module/Contact.php:509
+#: src/Module/Contact.php:539
msgid "View all known contacts"
msgstr "Ver contactos conocidos"
-#: src/Module/Contact.php:519
+#: src/Module/Contact.php:550
msgid "Advanced Contact Settings"
msgstr "Configuración avanzada"
-#: src/Module/Contact.php:555
+#: src/Module/Contact.php:586
msgid "Mutual Friendship"
msgstr "Amistad común"
-#: src/Module/Contact.php:559
+#: src/Module/Contact.php:590
msgid "is a fan of yours"
msgstr "es tu seguidor"
-#: src/Module/Contact.php:563
+#: src/Module/Contact.php:594
msgid "you are a fan of"
msgstr "eres seguidor de"
-#: src/Module/Contact.php:581
+#: src/Module/Contact.php:612
msgid "Pending outgoing contact request"
msgstr "Solicitud de Contacto pendiente"
-#: src/Module/Contact.php:583
+#: src/Module/Contact.php:614
msgid "Pending incoming contact request"
msgstr "Solicitud de Contacto pendiente"
-#: src/Module/Contact.php:596 src/Module/Contact/Profile.php:346
+#: 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: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
-#: src/Module/Group.php:97 src/Module/Group.php:106
-msgid "Contact not found."
-msgstr "Contacto no encontrado."
-
#: src/Module/Contact/Advanced.php:99
msgid "Contact update failed."
msgstr "Error al actualizar el Contacto."
@@ -5951,6 +6236,7 @@ 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
@@ -5977,11 +6263,6 @@ msgstr "Dirección de Sondeo/Fuente"
msgid "New photo from this URL"
msgstr "Nueva foto de esta URL"
-#: src/Module/Contact/Contacts.php:66 src/Module/Conversation/Network.php:189
-#: src/Module/Group.php:101
-msgid "Invalid contact."
-msgstr "Contacto erróneo."
-
#: src/Module/Contact/Contacts.php:89
msgid "No known contacts."
msgstr "No hay contactos conocidos."
@@ -6043,7 +6324,7 @@ 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:194
+#: 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
@@ -6081,15 +6362,16 @@ msgstr "Por favor responde lo siguiente:"
msgid "Your Identity Address:"
msgstr "Dirección de tu Identidad:"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:375
+#: 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:387
+#: 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:"
@@ -6115,8 +6397,8 @@ 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:82 src/Module/Media/Photo/Upload.php:87
-#: src/Module/Media/Photo/Upload.php:136
+#: 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"
@@ -6128,248 +6410,312 @@ msgstr "No hay etiquetas, añade etiquetas a tu perfil."
msgid "Profile Match"
msgstr "Coincidencia de Perfil"
-#: src/Module/Contact/Profile.php:128
+#: src/Module/Contact/Profile.php:140
msgid "Failed to update contact record."
msgstr "Error al actualizar el contacto."
-#: src/Module/Contact/Profile.php:178
+#: src/Module/Contact/Profile.php:190
msgid "Contact has been unblocked"
msgstr "Contacto ha sido desbloqueado"
-#: src/Module/Contact/Profile.php:182
+#: src/Module/Contact/Profile.php:194
msgid "Contact has been blocked"
msgstr "Contacto ha sido bloqueado"
-#: src/Module/Contact/Profile.php:194
+#: src/Module/Contact/Profile.php:206
msgid "Contact has been unignored"
msgstr "El contacto ya no está ignorado"
-#: src/Module/Contact/Profile.php:198
+#: src/Module/Contact/Profile.php:210
msgid "Contact has been ignored"
msgstr "Contacto ha sido ignorado"
-#: src/Module/Contact/Profile.php:210
+#: src/Module/Contact/Profile.php:222
msgid "Contact has been uncollapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:214
+#: src/Module/Contact/Profile.php:226
msgid "Contact has been collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:242
+#: 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/Profile.php:243
+#: src/Module/Contact/Profile.php:255
#, php-format
msgid "You are sharing with %s"
msgstr "Estás compartiendo con %s"
-#: src/Module/Contact/Profile.php:244
+#: src/Module/Contact/Profile.php:256
#, php-format
msgid "%s is sharing with you"
msgstr "%s está compartiendo contigo"
-#: src/Module/Contact/Profile.php:260
+#: 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/Profile.php:262
+#: 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/Profile.php:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was not successful)"
msgstr "(La actualización no se completo)"
-#: src/Module/Contact/Profile.php:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was successful)"
msgstr "(Actualización exitosa)"
-#: src/Module/Contact/Profile.php:267 src/Module/Contact/Profile.php:448
+#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482
msgid "Suggest friends"
msgstr "Sugerir amigos"
-#: src/Module/Contact/Profile.php:271
+#: src/Module/Contact/Profile.php:294
#, php-format
msgid "Network type: %s"
msgstr "Tipo de red: %s"
-#: src/Module/Contact/Profile.php:276
+#: 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/Profile.php:282
+#: src/Module/Contact/Profile.php:305
msgid "Fetch further information for feeds"
msgstr "Recaudar información complementaria de los feeds"
-#: src/Module/Contact/Profile.php:284
+#: 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/Profile.php:287
+#: src/Module/Contact/Profile.php:310
msgid "Fetch information"
msgstr "Recuperar información"
-#: src/Module/Contact/Profile.php:288
+#: src/Module/Contact/Profile.php:311
msgid "Fetch keywords"
msgstr "Recuperar etiquetas"
-#: src/Module/Contact/Profile.php:289
+#: src/Module/Contact/Profile.php:312
msgid "Fetch information and keywords"
msgstr "Recuperar información y palabras claves"
-#: src/Module/Contact/Profile.php:299 src/Module/Contact/Profile.php:304
-#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:315
+#: 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/Profile.php:300 src/Module/Contact/Profile.php:310
-#: src/Module/Contact/Profile.php:316
+#: 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/Profile.php:305 src/Module/Contact/Profile.php:311
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334
msgid "Native reshare"
msgstr "Reenviar (nativo)"
-#: src/Module/Contact/Profile.php:328
+#: src/Module/Contact/Profile.php:353
msgid "Contact Information / Notes"
msgstr "Información del Contacto / Notas"
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:354
msgid "Contact Settings"
msgstr "Ajustes del contacto"
-#: src/Module/Contact/Profile.php:337
+#: src/Module/Contact/Profile.php:362
msgid "Contact"
msgstr "Contacto"
-#: src/Module/Contact/Profile.php:341
+#: src/Module/Contact/Profile.php:366
msgid "Their personal note"
msgstr "Su nota personal"
-#: src/Module/Contact/Profile.php:343
+#: src/Module/Contact/Profile.php:368
msgid "Edit contact notes"
msgstr "Editar notas del contacto"
-#: src/Module/Contact/Profile.php:347
+#: src/Module/Contact/Profile.php:372
msgid "Block/Unblock contact"
msgstr "Boquear/Desbloquear contacto"
-#: src/Module/Contact/Profile.php:348
+#: src/Module/Contact/Profile.php:373
+#: src/Module/Moderation/Report/Create.php:293
msgid "Ignore contact"
msgstr "Ignorar contacto"
-#: src/Module/Contact/Profile.php:349
+#: src/Module/Contact/Profile.php:374
msgid "View conversations"
msgstr "Ver conversaciones"
-#: src/Module/Contact/Profile.php:354
+#: src/Module/Contact/Profile.php:379
msgid "Last update:"
msgstr "Última actualización:"
-#: src/Module/Contact/Profile.php:356
+#: src/Module/Contact/Profile.php:381
msgid "Update public posts"
msgstr "Actualizar publicaciones públicas"
-#: src/Module/Contact/Profile.php:358 src/Module/Contact/Profile.php:458
+#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492
msgid "Update now"
msgstr "Actualizar ahora"
-#: src/Module/Contact/Profile.php:360
+#: src/Module/Contact/Profile.php:385
msgid "Awaiting connection acknowledge"
msgstr "Esperando respuesta de conexión"
-#: src/Module/Contact/Profile.php:361
+#: src/Module/Contact/Profile.php:386
msgid "Currently blocked"
msgstr "Bloqueados"
-#: src/Module/Contact/Profile.php:362
+#: src/Module/Contact/Profile.php:387
msgid "Currently ignored"
msgstr "Ignorados"
-#: src/Module/Contact/Profile.php:363
+#: src/Module/Contact/Profile.php:388
msgid "Currently collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:364
+#: src/Module/Contact/Profile.php:389
msgid "Currently archived"
msgstr "Archivados"
-#: src/Module/Contact/Profile.php:367
+#: 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:367
+#: 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/Profile.php:368
+#: src/Module/Contact/Profile.php:395
msgid "Notification for new posts"
msgstr "Notificación de nuevos temas."
-#: src/Module/Contact/Profile.php:368
+#: 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/Profile.php:370
+#: src/Module/Contact/Profile.php:397
msgid "Keyword Deny List"
msgstr "Lista de Etiquetas Prohibidas"
-#: src/Module/Contact/Profile.php:370
+#: 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/Profile.php:388
+#: src/Module/Contact/Profile.php:415
#: src/Module/Settings/TwoFactor/Index.php:139
msgid "Actions"
msgstr "Acciones"
-#: src/Module/Contact/Profile.php:390
+#: 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/Profile.php:396
+#: src/Module/Contact/Profile.php:423
msgid "Mirror postings from this contact"
msgstr "Espejar publicaciones de este contacto"
-#: src/Module/Contact/Profile.php:398
+#: 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/Profile.php:468
+#: 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 "Recuperar datos del contacto."
-#: src/Module/Contact/Profile.php:479
+#: src/Module/Contact/Profile.php:513
msgid "Toggle Blocked status"
msgstr "Cambiar Estatus de Bloqueado"
-#: src/Module/Contact/Profile.php:487
+#: src/Module/Contact/Profile.php:521
msgid "Toggle Ignored status"
msgstr "Cambiar ignorados"
-#: src/Module/Contact/Profile.php:495
+#: src/Module/Contact/Profile.php:529
msgid "Toggle Collapsed status"
msgstr ""
-#: src/Module/Contact/Profile.php:502 src/Module/Contact/Revoke.php:106
+#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106
msgid "Revoke Follow"
msgstr ""
-#: src/Module/Contact/Profile.php:504
+#: src/Module/Contact/Profile.php:538
msgid "Revoke the follow from this contact"
msgstr ""
@@ -6381,10 +6727,6 @@ msgstr "Petición errónea"
msgid "Unknown contact."
msgstr ""
-#: src/Module/Contact/Revoke.php:73 src/Module/Group.php:110
-msgid "Contact is deleted."
-msgstr "El contacto se borra."
-
#: src/Module/Contact/Revoke.php:77
msgid "Contact is being deleted."
msgstr ""
@@ -6432,102 +6774,54 @@ msgstr ""
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr ""
-#: src/Module/Conversation/Community.php:74
+#: 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:87
-msgid "Local Community"
-msgstr "Comunidad Local"
-
-#: src/Module/Conversation/Community.php:90
-msgid "Posts from local users on this server"
-msgstr "Artículos de usuarios charla! MX"
-
-#: src/Module/Conversation/Community.php:98
-msgid "Global Community"
-msgstr "Comunidad Global"
-
-#: src/Module/Conversation/Community.php:101
-msgid "Posts from users of the whole federated network"
-msgstr "Artículos de usuarios del Fediverso"
-
-#: src/Module/Conversation/Community.php:134
-msgid "Own Contacts"
-msgstr "Contactos propios"
-
-#: src/Module/Conversation/Community.php:138
-msgid "Include"
-msgstr "Incluir"
-
-#: src/Module/Conversation/Community.php:139
-msgid "Hide"
-msgstr "Ocultar"
-
-#: src/Module/Conversation/Community.php:156 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
-msgid "No results."
-msgstr "Sin resultados."
-
-#: src/Module/Conversation/Community.php:212
+#: src/Module/Conversation/Community.php:179
msgid "Community option not available."
msgstr "Fediverso no disponible"
-#: src/Module/Conversation/Community.php:228
+#: src/Module/Conversation/Community.php:195
msgid "Not available."
msgstr "No disponible"
-#: src/Module/Conversation/Network.php:175
-msgid "No such group"
-msgstr "No existe grupo"
+#: src/Module/Conversation/Network.php:218
+msgid "No such circle"
+msgstr ""
-#: src/Module/Conversation/Network.php:179
+#: src/Module/Conversation/Network.php:222
#, php-format
-msgid "Group: %s"
-msgstr "Grupo: %s"
-
-#: src/Module/Conversation/Network.php:257
-msgid "Latest Activity"
-msgstr "Actividad Reciente"
-
-#: src/Module/Conversation/Network.php:260
-msgid "Sort by latest activity"
-msgstr "Ordenar por actividad reciente"
-
-#: src/Module/Conversation/Network.php:265
-msgid "Latest Posts"
-msgstr "Artículos Recientes"
-
-#: src/Module/Conversation/Network.php:268
-msgid "Sort by post received date"
-msgstr "Ordenar por fecha de artículo"
-
-#: src/Module/Conversation/Network.php:273
-msgid "Latest Creation"
+msgid "Circle: %s"
msgstr ""
-#: src/Module/Conversation/Network.php:276
-msgid "Sort by post creation date"
+#: src/Module/Conversation/Network.php:317
+msgid "Network feed not available."
msgstr ""
-#: src/Module/Conversation/Network.php:281
-#: src/Module/Settings/Profile/Index.php:235
-msgid "Personal"
-msgstr "Personal"
+#: src/Module/Conversation/Timeline.php:158
+msgid "Own Contacts"
+msgstr "Contactos propios"
-#: src/Module/Conversation/Network.php:284
-msgid "Posts that mention or involve you"
-msgstr "Publicaciones que te mencionan o involucran"
+#: src/Module/Conversation/Timeline.php:162
+msgid "Include"
+msgstr "Incluir"
-#: src/Module/Conversation/Network.php:289 src/Object/Post.php:357
-msgid "Starred"
-msgstr "Destacados"
-
-#: src/Module/Conversation/Network.php:292
-msgid "Favourite Posts"
-msgstr "Artículos favoritos"
+#: src/Module/Conversation/Timeline.php:163
+msgid "Hide"
+msgstr "Ocultar"
#: src/Module/Credits.php:44
msgid "Credits"
@@ -6746,7 +7040,7 @@ msgid "Twitter Source / Tweet URL (requires API key)"
msgstr "Fuente Twitter / Tweet URL (requiere API key)"
#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47
-#: src/Module/Settings/Profile/Index.php:144
+#: 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"
@@ -6875,138 +7169,58 @@ msgstr "Sugerencias de amistad"
msgid "Suggest a friend for %s"
msgstr "Recomienda un amigo a %s"
-#: src/Module/Friendica.php:64
+#: src/Module/Friendica.php:82
msgid "Installed addons/apps:"
msgstr "Añadidos/apps Instalados:"
-#: src/Module/Friendica.php:69
+#: src/Module/Friendica.php:87
msgid "No installed addons/apps"
msgstr "Añadidos/apps no instalados"
-#: src/Module/Friendica.php:74
+#: 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:81
+#: 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: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 "Razón para el bloqueo"
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:104
msgid "Download this list in CSV format"
msgstr ""
-#: src/Module/Friendica.php:100
+#: 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:105
+#: 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:106
+#: 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:106
+#: src/Module/Friendica.php:124
msgid "the bugtracker at github"
msgstr "aviso de fallas (bugs) en github"
-#: src/Module/Friendica.php:107
+#: 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/Group.php:56
-msgid "Could not create group."
-msgstr "Imposible crear el grupo."
-
-#: src/Module/Group.php:67 src/Module/Group.php:213 src/Module/Group.php:237
-msgid "Group not found."
-msgstr "Grupo no encontrado."
-
-#: src/Module/Group.php:73
-msgid "Group name was not changed."
-msgstr "Nombre de Grupo no modificado."
-
-#: src/Module/Group.php:91
-msgid "Unknown group."
-msgstr "Grupo no existe."
-
-#: src/Module/Group.php:116
-msgid "Unable to add the contact to the group."
-msgstr "No es posible añadir contacto al grupo."
-
-#: src/Module/Group.php:119
-msgid "Contact successfully added to group."
-msgstr "Se añadió el contacto el grupo."
-
-#: src/Module/Group.php:123
-msgid "Unable to remove the contact from the group."
-msgstr "No es posible borrar contacto del grupo."
-
-#: src/Module/Group.php:126
-msgid "Contact successfully removed from group."
-msgstr "Contacto borrado del grupo."
-
-#: src/Module/Group.php:130
-msgid "Bad request."
-msgstr "Petición no reconocida"
-
-#: src/Module/Group.php:169
-msgid "Save Group"
-msgstr "Guardar grupo"
-
-#: src/Module/Group.php:170
-msgid "Filter"
-msgstr "Filtro"
-
-#: src/Module/Group.php:176
-msgid "Create a group of contacts/friends."
-msgstr "Crea un grupo de contactos/amigos."
-
-#: src/Module/Group.php:218
-msgid "Unable to remove group."
-msgstr "No se puede eliminar el grupo."
-
-#: src/Module/Group.php:269
-msgid "Delete Group"
-msgstr "Borrar grupo"
-
-#: src/Module/Group.php:279
-msgid "Edit Group Name"
-msgstr "Editar nombre de grupo"
-
-#: src/Module/Group.php:289
-msgid "Members"
-msgstr "Miembros"
-
-#: src/Module/Group.php:292
-msgid "Group is empty"
-msgstr "Grupo está vacío"
-
-#: src/Module/Group.php:305
-msgid "Remove contact from group"
-msgstr "Borrar contacto del grupo"
-
-#: src/Module/Group.php:326
-msgid "Click on a contact to add or remove."
-msgstr "Pulsa en un contacto para añadirlo o eliminarlo."
-
-#: src/Module/Group.php:340
-msgid "Add contact to group"
-msgstr "Añadir contacto a grupo"
-
#: src/Module/HCard.php:45
msgid "No profile"
msgstr "Ningún perfil"
@@ -7299,30 +7513,26 @@ msgstr "Generar nuevo artículo"
msgid "Visibility"
msgstr "Visibilidad"
-#: src/Module/Item/Compose.php:201
+#: src/Module/Item/Compose.php:203
msgid "Clear the location"
msgstr "Borrar ubicación"
-#: src/Module/Item/Compose.php:202
+#: 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:203
+#: 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: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/Display.php:136 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/Item/Feed.php:86
msgid "The feed for this item is unavailable."
msgstr "El hilo de este artículo no se encontró"
@@ -7378,20 +7588,13 @@ msgstr "El archivo excede Tamaño de %s"
msgid "File upload failed."
msgstr "Ha fallado la subida del archivo."
-#: src/Module/Media/Photo/Upload.php:153 src/Module/Media/Photo/Upload.php:154
+#: 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/Media/Photo/Upload.php:187 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/Media/Photo/Upload.php:205 src/Module/Profile/Photos.php:243
+#: 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."
@@ -7424,41 +7627,41 @@ msgstr "Borrados"
msgid "List of pending user deletions"
msgstr "Lista de borrados de usuario pendientes"
-#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:491
+#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:492
msgid "Normal Account Page"
msgstr "Página de Cuenta Normal"
-#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:498
+#: src/Module/Moderation/BaseUsers.php:120 src/Module/Settings/Account.php:499
msgid "Soapbox Page"
msgstr "Página de Tribuna"
-#: src/Module/Moderation/BaseUsers.php:121 src/Module/Settings/Account.php:505
-msgid "Public Forum"
-msgstr "Foro Público"
+#: 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:512
+#: 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/Moderation/BaseUsers.php:123
-msgid "Private Forum"
-msgstr "Foro Privado"
+msgid "Private Group"
+msgstr ""
-#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:463
+#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:464
msgid "Personal Page"
msgstr "Página personal"
-#: src/Module/Moderation/BaseUsers.php:127 src/Module/Settings/Account.php:470
+#: 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:477
+#: 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:484
-msgid "Community Forum"
-msgstr "Foro de la Comunidad"
+#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485
+msgid "Community Group"
+msgstr ""
#: src/Module/Moderation/BaseUsers.php:130
msgid "Relay"
@@ -7515,6 +7718,7 @@ 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"
@@ -7590,6 +7794,8 @@ 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 ""
@@ -7876,6 +8082,238 @@ msgstr ""
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"
@@ -7885,8 +8323,8 @@ msgid "Automatic Follower Account"
msgstr "Cuenta de Seguimiento Automático"
#: src/Module/Moderation/Summary.php:55
-msgid "Public Forum Account"
-msgstr "Cuenta del Foro Pública"
+msgid "Public Group Account"
+msgstr ""
#: src/Module/Moderation/Summary.php:56
msgid "Automatic Friend Account"
@@ -7897,8 +8335,8 @@ msgid "Blog Account"
msgstr "Cuenta de blog"
#: src/Module/Moderation/Summary.php:58
-msgid "Private Forum Account"
-msgstr "Cuenta del Foro Privada"
+msgid "Private Group Account"
+msgstr ""
#: src/Module/Moderation/Summary.php:78
msgid "Registered users"
@@ -8203,11 +8641,11 @@ msgstr "Notificaciones de Inicio"
msgid "Show unread"
msgstr "Mostrar no leído"
-#: src/Module/Notifications/Ping.php:245
+#: src/Module/Notifications/Ping.php:246
msgid "{0} requested registration"
msgstr "{0} solicita registro"
-#: src/Module/Notifications/Ping.php:254
+#: src/Module/Notifications/Ping.php:255
#, php-format
msgid "{0} and %d others requested registration"
msgstr "{0} y %d otros solicitaron registro"
@@ -8226,7 +8664,7 @@ msgstr "¿Quieres autorizar a esta aplicación el acceso a tus mensajes y contac
msgid "Unsupported or missing response type"
msgstr ""
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:77
+#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78
msgid "Incomplete request data"
msgstr ""
@@ -8237,11 +8675,11 @@ 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:104
+#: src/Module/OAuth/Token.php:108
msgid "Unsupported or missing grant type"
msgstr ""
@@ -8366,21 +8804,21 @@ msgstr ""
msgid "Attributed To: %s
"
msgstr ""
-#: src/Module/Photo.php:129
+#: src/Module/Photo.php:130
msgid "The Photo is not available."
msgstr ""
-#: src/Module/Photo.php:154
+#: 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:191
+#: src/Module/Photo.php:192
#, php-format
msgid "Invalid external resource with url %s."
msgstr ""
-#: src/Module/Photo.php:193
+#: src/Module/Photo.php:194
#, php-format
msgid "Invalid photo with id %s."
msgstr "Foto no válida de Id %s."
@@ -8421,7 +8859,7 @@ msgstr "Eliminar etiqueta"
msgid "Select a tag to remove: "
msgstr "Selecciona etiqueta a eliminar: "
-#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:178
+#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180
#: src/Module/Settings/TwoFactor/Trusted.php:144
msgid "Remove"
msgstr "Eliminar"
@@ -8432,24 +8870,31 @@ 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:1032
-#: src/Protocol/OStatus.php:1007
+#: 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:1036 src/Protocol/OStatus.php:1012
+#: 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:1039 src/Protocol/OStatus.php:1016
+#: 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"
@@ -8468,7 +8913,7 @@ msgstr "El servidor no puede aceptar la carga de archivos nuevos en este momento
msgid "Image file is empty."
msgstr "El archivo de imagen está vacío."
-#: src/Module/Profile/Photos.php:376
+#: src/Module/Profile/Photos.php:356
msgid "View Album"
msgstr "Ver Álbum"
@@ -8483,7 +8928,7 @@ msgid ""
"class=\"btn btn-sm pull-right\">Cancel"
msgstr "Actualmente estás viendo tu perfil como %s Cancelar"
-#: src/Module/Profile/Profile.php:167 src/Module/Settings/Account.php:575
+#: src/Module/Profile/Profile.php:167
msgid "Full Name:"
msgstr "Nombre Completo:"
@@ -8504,12 +8949,12 @@ msgid "Birthday:"
msgstr "Fecha de Nac:"
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: 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:253 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -8518,13 +8963,13 @@ msgstr[1] "%d Años"
msgstr[2] "%d Años"
#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:246
+#: src/Module/Settings/Profile/Index.php:284
msgid "Description:"
msgstr "Descripción:"
#: src/Module/Profile/Profile.php:261
-msgid "Forums:"
-msgstr "Foros:"
+msgid "Groups:"
+msgstr ""
#: src/Module/Profile/Profile.php:273
msgid "View profile as:"
@@ -8694,7 +9139,7 @@ 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:566
+#: src/Module/Settings/Account.php:567
msgid "New Password:"
msgstr "Contraseña Nueva:"
@@ -8703,7 +9148,7 @@ 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:567
+#: src/Module/Settings/Account.php:568
msgid "Confirm:"
msgstr "Confirmar:"
@@ -8730,11 +9175,11 @@ msgstr "Importar tu perfil a esta instancia de friendica"
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:154
+#: 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:154
+#: 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."
@@ -8921,24 +9366,24 @@ msgid "Update Password"
msgstr ""
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: src/Module/Settings/Account.php:569
msgid "Current Password:"
msgstr "Contraseña actual:"
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: 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:552
+#: 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:553
+#: src/Module/Settings/Account.php:554
msgid "Password length is limited to 72 characters."
msgstr ""
@@ -9062,99 +9507,99 @@ msgstr "Corréo no válido."
msgid "Cannot change to that email."
msgstr "Imposible cambiar a ese correo."
-#: 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
+#: 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:363
+#: src/Module/Settings/Account.php:364
msgid "Contact CSV file upload error"
msgstr "Error al subir archivo CSV"
-#: src/Module/Settings/Account.php:382
+#: src/Module/Settings/Account.php:383
msgid "Importing Contacts done"
msgstr "Importación del contacto completada"
-#: src/Module/Settings/Account.php:395
+#: 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:412
+#: 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:454
+#: src/Module/Settings/Account.php:455
msgid "Personal Page Subtypes"
msgstr "Subtipos de Página Personal"
-#: src/Module/Settings/Account.php:455
-msgid "Community Forum Subtypes"
-msgstr "Subtipos de Foro de Comunidad"
+#: src/Module/Settings/Account.php:456
+msgid "Community Group Subtypes"
+msgstr ""
-#: src/Module/Settings/Account.php:465
+#: src/Module/Settings/Account.php:466
msgid "Account for a personal profile."
msgstr "Cuenta para un perfil personal."
-#: src/Module/Settings/Account.php:472
+#: 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:479
+#: 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:486
+#: src/Module/Settings/Account.php:487
msgid "Account for community discussions."
msgstr "Cuenta para discusiones de la comunidad."
-#: src/Module/Settings/Account.php:493
+#: 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:500
+#: 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:507
+#: 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:514
+#: 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:519
-msgid "Private Forum [Experimental]"
-msgstr "Foro privado [Experimental]"
+#: src/Module/Settings/Account.php:520
+msgid "Private Group [Experimental]"
+msgstr ""
-#: src/Module/Settings/Account.php:521
+#: 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:530
+#: src/Module/Settings/Account.php:531
msgid "OpenID:"
msgstr "OpenID:"
-#: src/Module/Settings/Account.php:530
+#: 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:538
+#: 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:538
+#: src/Module/Settings/Account.php:539
#, php-format
msgid ""
"Your profile will be published in this node's local "
@@ -9162,89 +9607,94 @@ msgid ""
" system settings."
msgstr "Tu perfil se publicará en el directorio de nodo local . Los detalles de tu perfil pueden ser públicos según los ajustes del sistema."
-#: src/Module/Settings/Account.php:544
+#: 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:557
+#: src/Module/Settings/Account.php:558
msgid "Account Settings"
msgstr "Configuración de Cuenta"
-#: src/Module/Settings/Account.php:558
+#: 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:565
+#: src/Module/Settings/Account.php:566
msgid "Password Settings"
msgstr "Configuración de Contraseña"
-#: src/Module/Settings/Account.php:567
+#: 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:569
+#: src/Module/Settings/Account.php:570
msgid "Password:"
msgstr "Contraseña:"
-#: 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 "Tu contraseña actual para confirmar los cambios de cuenta de corréo."
-#: src/Module/Settings/Account.php:572
+#: src/Module/Settings/Account.php:573
msgid "Delete OpenID URL"
msgstr "Borrar URL de OpenID"
-#: src/Module/Settings/Account.php:574
+#: 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:577
+#: src/Module/Settings/Account.php:578
msgid "Your Timezone:"
msgstr "Zona horaria:"
-#: src/Module/Settings/Account.php:578
+#: src/Module/Settings/Account.php:579
msgid "Your Language:"
msgstr "Tu idioma:"
-#: 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 "Selecciona el idioma que usará la interfaz Friendica y para enviarte correos."
-#: src/Module/Settings/Account.php:579
+#: src/Module/Settings/Account.php:580
msgid "Default Post Location:"
msgstr "Ubicación predeterminada:"
-#: src/Module/Settings/Account.php:580
+#: src/Module/Settings/Account.php:581
msgid "Use Browser Location:"
msgstr "Usar localización del navegador:"
-#: src/Module/Settings/Account.php:582
+#: src/Module/Settings/Account.php:583
msgid "Security and Privacy Settings"
msgstr "Configuración de Seguridad y Privacidad"
-#: src/Module/Settings/Account.php:584
+#: 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: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 "(para prevenir abuso de basura)"
-#: src/Module/Settings/Account.php:586
+#: 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: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 "
@@ -9252,43 +9702,43 @@ msgid ""
"indexed or not."
msgstr "Activa esta configuración si quieres que otros te encuentren y sigan fácilmente. Tu perfil se podrá buscar en sistemas remotos. Esta configuración también determina si Friendica informará a los motores de búsqueda que tu perfil debe ser indexado o no."
-#: src/Module/Settings/Account.php:587
+#: 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: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 "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:588
+#: src/Module/Settings/Account.php:589
msgid "Hide your public content from anonymous viewers"
msgstr ""
-#: src/Module/Settings/Account.php:588
+#: 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:589
+#: src/Module/Settings/Account.php:590
msgid "Make public posts unlisted"
msgstr "No listar mis artículos públicos"
-#: 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 "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:590
+#: src/Module/Settings/Account.php:591
msgid "Make all posted pictures accessible"
msgstr "Hacer accesibles todas las fotos"
-#: 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 "
@@ -9296,233 +9746,241 @@ msgid ""
"public on your photo albums though."
msgstr "Esta opción hace accesibles todas las imágenes a través del enlace directo. Este es una solución al problema que la mayoría de las redes no pueden manejar permisos en las imágenes. Las imágenes no públicas aún no serán visibles para elpúblico en tus álbumes de fotos."
-#: src/Module/Settings/Account.php:591
+#: 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: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 "Tus contactos pueden escribir artículos en tu perfil. Estas publicaciones se distribuirán a tus contactos"
-#: src/Module/Settings/Account.php:592
+#: 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:592
+#: 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:593
+#: 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: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 "Usuarios de Friendica pueden enviarte mensajes privados incluso si no están en tu lista de contactos."
-#: src/Module/Settings/Account.php:594
+#: 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:600
+#: src/Module/Settings/Account.php:602
msgid "Expiration settings"
msgstr "Configuración de Expiración"
-#: src/Module/Settings/Account.php:601
+#: 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:601
+#: 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:602
+#: src/Module/Settings/Account.php:604
msgid "Expire posts"
msgstr "Caducar artículos"
-#: src/Module/Settings/Account.php:602
+#: 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:603
+#: src/Module/Settings/Account.php:605
msgid "Expire personal notes"
msgstr "Caducar Anotaciones"
-#: 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 "Si se activa, las Anotaciones en tu Perfil caducarán."
-#: src/Module/Settings/Account.php:604
+#: src/Module/Settings/Account.php:606
msgid "Expire starred posts"
msgstr "Caducar artículos Destacados"
-#: 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 "Destacar las publicaciones evita que caduquen. Ese comportamiento cambiacon este ajuste."
-#: src/Module/Settings/Account.php:605
+#: src/Module/Settings/Account.php:607
msgid "Only expire posts by others"
msgstr "Solo caducar artículos de otros"
-#: 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 "Cuando se activa, publicaciones propias nunca caducan. Esta configuración solo es válida para las artículos recibidas."
-#: src/Module/Settings/Account.php:608
+#: src/Module/Settings/Account.php:610
msgid "Notification Settings"
msgstr "Configuración de Notificaciones"
-#: src/Module/Settings/Account.php:609
+#: src/Module/Settings/Account.php:611
msgid "Send a notification email when:"
msgstr "Enviar notificación por correo cuando:"
-#: src/Module/Settings/Account.php:610
+#: src/Module/Settings/Account.php:612
msgid "You receive an introduction"
msgstr "Recibas una presentación"
-#: src/Module/Settings/Account.php:611
+#: src/Module/Settings/Account.php:613
msgid "Your introductions are confirmed"
msgstr "Tu presentación sea confirmada"
-#: src/Module/Settings/Account.php:612
+#: src/Module/Settings/Account.php:614
msgid "Someone writes on your profile wall"
msgstr "Alguien escriba en tu perfil"
-#: src/Module/Settings/Account.php:613
+#: 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:614
+#: src/Module/Settings/Account.php:616
msgid "You receive a private message"
msgstr "Recibas un mensaje privado"
-#: src/Module/Settings/Account.php:615
+#: src/Module/Settings/Account.php:617
msgid "You receive a friend suggestion"
msgstr "Recibas una sugerencia de amistad"
-#: src/Module/Settings/Account.php:616
+#: 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:618
+#: src/Module/Settings/Account.php:620
msgid "Create a desktop notification when:"
msgstr ""
-#: src/Module/Settings/Account.php:619
+#: src/Module/Settings/Account.php:621
msgid "Someone tagged you"
msgstr ""
-#: src/Module/Settings/Account.php:620
+#: src/Module/Settings/Account.php:622
msgid "Someone directly commented on your post"
msgstr ""
-#: src/Module/Settings/Account.php:621
+#: src/Module/Settings/Account.php:623
msgid "Someone liked your content"
msgstr ""
-#: src/Module/Settings/Account.php:621 src/Module/Settings/Account.php:622
+#: 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:622
+#: src/Module/Settings/Account.php:624
msgid "Someone shared your content"
msgstr ""
-#: src/Module/Settings/Account.php:623
+#: src/Module/Settings/Account.php:625
msgid "Someone commented in your thread"
msgstr ""
-#: src/Module/Settings/Account.php:624
+#: src/Module/Settings/Account.php:626
msgid "Someone commented in a thread where you commented"
msgstr ""
-#: src/Module/Settings/Account.php:625
+#: src/Module/Settings/Account.php:627
msgid "Someone commented in a thread where you interacted"
msgstr ""
-#: src/Module/Settings/Account.php:627
+#: src/Module/Settings/Account.php:629
msgid "Activate desktop notifications"
msgstr "Activar notificaciones"
-#: src/Module/Settings/Account.php:627
+#: 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:631
+#: src/Module/Settings/Account.php:633
msgid "Text-only notification emails"
msgstr "Notificaciones de correo solo en texto"
-#: src/Module/Settings/Account.php:633
+#: 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:637
+#: src/Module/Settings/Account.php:639
msgid "Show detailled notifications"
msgstr "Mostrar notificaciones detalladas"
-#: src/Module/Settings/Account.php:639
+#: 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:643
+#: src/Module/Settings/Account.php:645
msgid "Show notifications of ignored contacts"
msgstr "Mostrar notificación de Contactos Ignorados"
-#: src/Module/Settings/Account.php:645
+#: 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:648
+#: 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:649
+#: 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:652
+#: src/Module/Settings/Account.php:654
msgid "Import Contacts"
msgstr "Importar contactos"
-#: src/Module/Settings/Account.php:653
+#: 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:654
+#: src/Module/Settings/Account.php:656
msgid "Upload File"
msgstr "Subir archivo"
-#: src/Module/Settings/Account.php:657
+#: src/Module/Settings/Account.php:659
msgid "Relocate"
msgstr "Relocalizar"
-#: src/Module/Settings/Account.php:658
+#: 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:659
+#: src/Module/Settings/Account.php:661
msgid "Resend relocate message to contacts"
msgstr "Reenviar mensaje de relocalización a contactos"
@@ -9731,224 +10189,250 @@ msgstr "Mover a un folder"
msgid "Move to folder:"
msgstr "Mover al folder:"
-#: src/Module/Settings/Delegation.php:52
+#: src/Module/Settings/Delegation.php:54
msgid "Delegation successfully granted."
msgstr "Se autorizó delegación."
-#: src/Module/Settings/Delegation.php:54
+#: 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:58
+#: src/Module/Settings/Delegation.php:60
msgid "Delegation successfully revoked."
msgstr "Delegación revocada con éxito."
-#: src/Module/Settings/Delegation.php:80
-#: src/Module/Settings/Delegation.php:102
+#: 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:94
+#: src/Module/Settings/Delegation.php:96
msgid "Delegate user not found."
msgstr "Usuario delegado no encontrado."
-#: src/Module/Settings/Delegation.php:142
+#: src/Module/Settings/Delegation.php:144
msgid "No parent user"
msgstr "No hay usuario padre"
-#: src/Module/Settings/Delegation.php:153
-#: src/Module/Settings/Delegation.php:164
+#: src/Module/Settings/Delegation.php:155
+#: src/Module/Settings/Delegation.php:166
msgid "Parent User"
msgstr "Usuario Padre"
-#: src/Module/Settings/Delegation.php:161
+#: src/Module/Settings/Delegation.php:163
msgid "Additional Accounts"
msgstr "Cuentas adicionales"
-#: src/Module/Settings/Delegation.php:162
+#: 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:163
+#: src/Module/Settings/Delegation.php:165
msgid "Register an additional account"
msgstr "Registrar cuenta adicional"
-#: src/Module/Settings/Delegation.php:167
+#: 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:171
+#: src/Module/Settings/Delegation.php:173
msgid "Delegates"
msgstr "Delegados"
-#: src/Module/Settings/Delegation.php:173
+#: 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:174
+#: src/Module/Settings/Delegation.php:176
msgid "Existing Page Delegates"
msgstr "Delegados actuales de la página"
-#: src/Module/Settings/Delegation.php:176
+#: src/Module/Settings/Delegation.php:178
msgid "Potential Delegates"
msgstr "Delegados potenciales"
-#: src/Module/Settings/Delegation.php:179
+#: src/Module/Settings/Delegation.php:181
msgid "Add"
msgstr "Añadir"
-#: src/Module/Settings/Delegation.php:180
+#: src/Module/Settings/Delegation.php:182
msgid "No entries."
msgstr "Sin entradas."
-#: src/Module/Settings/Display.php:137
+#: 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:177
+#: src/Module/Settings/Display.php:186
#, php-format
msgid "%s - (Unsupported)"
msgstr "%s – (No puede usarse)"
-#: src/Module/Settings/Display.php:212
+#: src/Module/Settings/Display.php:221
msgid "No preview"
msgstr ""
-#: src/Module/Settings/Display.php:213
+#: src/Module/Settings/Display.php:222
msgid "No image"
msgstr ""
-#: src/Module/Settings/Display.php:214
+#: src/Module/Settings/Display.php:223
msgid "Small Image"
msgstr ""
-#: src/Module/Settings/Display.php:215
+#: src/Module/Settings/Display.php:224
msgid "Large Image"
msgstr ""
-#: src/Module/Settings/Display.php:246
+#: src/Module/Settings/Display.php:259
msgid "Display Settings"
msgstr "Configuración Tema/Visualización"
-#: src/Module/Settings/Display.php:248
+#: src/Module/Settings/Display.php:261
msgid "General Theme Settings"
msgstr "Ajustes generales de tema"
-#: src/Module/Settings/Display.php:249
+#: src/Module/Settings/Display.php:262
msgid "Custom Theme Settings"
msgstr "Ajustes personalizados de tema"
-#: src/Module/Settings/Display.php:250
+#: src/Module/Settings/Display.php:263
msgid "Content Settings"
msgstr "Ajustes de contenido"
-#: src/Module/Settings/Display.php:251 view/theme/duepuntozero/config.php:86
+#: 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:257
+#: 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:258
+#: src/Module/Settings/Display.php:273
msgid "Mobile Theme:"
msgstr "Tema móvil:"
-#: src/Module/Settings/Display.php:261
+#: 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:261 src/Module/Settings/Display.php:262
+#: 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:262
+#: 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:263
+#: src/Module/Settings/Display.php:278
msgid "Update browser every xx seconds"
msgstr "Actualizar navegador cada xx segundos"
-#: src/Module/Settings/Display.php:263
+#: 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:264
+#: src/Module/Settings/Display.php:279
msgid "Display emoticons"
msgstr ""
-#: src/Module/Settings/Display.php:264
+#: src/Module/Settings/Display.php:279
msgid "When enabled, emoticons are replaced with matching symbols."
msgstr ""
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:280
msgid "Infinite scroll"
msgstr "Pagina infinita (scroll)"
-#: src/Module/Settings/Display.php:265
+#: 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:266
+#: src/Module/Settings/Display.php:281
msgid "Enable Smart Threading"
msgstr ""
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:281
msgid "Enable the automatic suppression of extraneous thread indentation."
msgstr ""
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:282
msgid "Display the Dislike feature"
msgstr ""
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:282
msgid ""
"Display the Dislike button and dislike reactions on posts and comments."
msgstr ""
-#: src/Module/Settings/Display.php:268
+#: src/Module/Settings/Display.php:283
msgid "Display the resharer"
msgstr "Desplegar reenviar"
-#: src/Module/Settings/Display.php:268
+#: 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:269
+#: src/Module/Settings/Display.php:284
msgid "Stay local"
msgstr "Quedarse Local"
-#: src/Module/Settings/Display.php:269
+#: 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:270
+#: src/Module/Settings/Display.php:285
msgid "Link preview mode"
msgstr ""
-#: src/Module/Settings/Display.php:270
+#: 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:272
+#: 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:273
+#: 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"
@@ -9961,155 +10445,151 @@ msgstr "Aplicaciones conectadas"
msgid "Remove authorization"
msgstr "Quitar autorización"
-#: src/Module/Settings/Profile/Index.php:84
-msgid "Profile Name is required."
-msgstr "Se necesita un nombre de perfil."
+#: src/Module/Settings/Profile/Index.php:116
+msgid "Display Name is required."
+msgstr ""
-#: src/Module/Settings/Profile/Index.php:134
+#: src/Module/Settings/Profile/Index.php:167
msgid "Profile couldn't be updated."
msgstr "No puede actualizarse perfil."
-#: src/Module/Settings/Profile/Index.php:175
-#: src/Module/Settings/Profile/Index.php:195
+#: src/Module/Settings/Profile/Index.php:205
+#: src/Module/Settings/Profile/Index.php:226
msgid "Label:"
msgstr "Etiqueta:"
-#: src/Module/Settings/Profile/Index.php:176
-#: src/Module/Settings/Profile/Index.php:196
+#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:227
msgid "Value:"
msgstr "Valor:"
-#: src/Module/Settings/Profile/Index.php:186
-#: src/Module/Settings/Profile/Index.php:206
+#: 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:187
-#: src/Module/Settings/Profile/Index.php:207
+#: 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:193
+#: 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:216
+#: 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:218
+#: 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:228
+#: src/Module/Settings/Profile/Index.php:255
msgid "Profile Actions"
msgstr "Acciones de perfil"
-#: src/Module/Settings/Profile/Index.php:229
+#: src/Module/Settings/Profile/Index.php:256
msgid "Edit Profile Details"
msgstr "Editar detalles de tu perfil"
-#: src/Module/Settings/Profile/Index.php:231
+#: src/Module/Settings/Profile/Index.php:258
msgid "Change Profile Photo"
msgstr "Cambiar imagen del Perfil"
-#: src/Module/Settings/Profile/Index.php:236
+#: src/Module/Settings/Profile/Index.php:261
msgid "Profile picture"
msgstr "Imagen del perfil"
-#: src/Module/Settings/Profile/Index.php:237
+#: src/Module/Settings/Profile/Index.php:262
msgid "Location"
msgstr "Ubicación"
-#: src/Module/Settings/Profile/Index.php:238 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 "Varios"
-#: src/Module/Settings/Profile/Index.php:239
+#: src/Module/Settings/Profile/Index.php:264
msgid "Custom Profile Fields"
msgstr "Campos personalizados de perfil"
-#: src/Module/Settings/Profile/Index.php:241 src/Module/Welcome.php:58
+#: 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:245
-msgid "Display name:"
-msgstr "Nombre desplegable:"
-
-#: src/Module/Settings/Profile/Index.php:248
-msgid "Street Address:"
-msgstr "Dirección"
-
-#: src/Module/Settings/Profile/Index.php:249
-msgid "Locality/City:"
-msgstr "Localidad/Ciudad:"
-
-#: src/Module/Settings/Profile/Index.php:250
-msgid "Region/State:"
-msgstr "Región/Estado:"
-
-#: src/Module/Settings/Profile/Index.php:251
-msgid "Postal/Zip Code:"
-msgstr "Código/Zona postal:"
-
-#: src/Module/Settings/Profile/Index.php:252
-msgid "Country:"
-msgstr "País"
-
-#: src/Module/Settings/Profile/Index.php:254
-msgid "XMPP (Jabber) address:"
-msgstr "Dirección XMPP (Jabber):"
-
-#: 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 "Dirección de tu página:"
-
-#: src/Module/Settings/Profile/Index.php:257
-msgid "Public Keywords:"
-msgstr "Palabras clave públicas:"
-
-#: src/Module/Settings/Profile/Index.php:257
-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:258
-msgid "Private Keywords:"
-msgstr "Palabras clave privadas:"
-
-#: src/Module/Settings/Profile/Index.php:258
-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:259
+#: src/Module/Settings/Profile/Index.php:266
#, php-format
msgid ""
"Custom fields appear on your profile page.
\n"
"\t\t\t\tYou can use BBCodes in the field values.
\n"
"\t\t\t\tReorder by dragging the field title.
\n"
"\t\t\t\tEmpty the label field to remove a custom field.
\n"
-"\t\t\t\tNon-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\tPuedes usar BBCode en los campos.
\n\t\t\t\tReordenar para arrastrar campo título.
\n\t\t\t\tVacie la etiqueta para quitar un campo personalizado.
\n\t\t\t\tCampos no públicos solo pueden verse por contactos Friendica seleccionados o contactos Friendica en grupos selecionados.
"
+"\t\t\t\tNon-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
@@ -10221,6 +10701,42 @@ msgstr "Esto eliminará por completo tu cuenta. Una vez hecho no puede deshacers
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
@@ -10542,20 +11058,41 @@ msgid ""
" 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 "Not Found"
+msgid ""
+"This node has blocked the top-level author or the author of the shared post."
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"
-"
"
+"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
@@ -10567,7 +11104,7 @@ msgstr "Seguimiento de pila:"
msgid "Exception thrown in %s:%d"
msgstr "Excepción lanzada en %s:%d"
-#: src/Module/Tos.php:57 src/Module/Tos.php:106
+#: 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"
@@ -10580,14 +11117,14 @@ 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:58 src/Module/Tos.php:107
+#: 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:59 src/Module/Tos.php:108
+#: 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"
@@ -10598,11 +11135,11 @@ msgid ""
"from the nodes of the communication partners."
msgstr ""
-#: src/Module/Tos.php:62 src/Module/Tos.php:105
+#: src/Module/Tos.php:63 src/Module/Tos.php:106
msgid "Privacy Statement"
msgstr "Declaración de Privacidad"
-#: src/Module/Tos.php:102
+#: src/Module/Tos.php:103
msgid "Rules"
msgstr ""
@@ -10610,6 +11147,10 @@ msgstr ""
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."
@@ -10658,11 +11199,11 @@ msgstr "Error! No hay datos de versión en el archivo! ¿Es esto de una cuenta f
msgid "User '%s' already exists on this server!"
msgstr "La cuenta '%s' ya existe en este servidor!"
-#: src/Module/User/Import.php:263
+#: src/Module/User/Import.php:267
msgid "User creation error"
msgstr "Error al crear la cuenta"
-#: src/Module/User/Import.php:312
+#: src/Module/User/Import.php:316
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
@@ -10670,11 +11211,11 @@ msgstr[0] "%d contacto no importado"
msgstr[1] "%d contactos no importados"
msgstr[2] "%d contactos no importados"
-#: src/Module/User/Import.php:361
+#: src/Module/User/Import.php:365
msgid "User profile creation error"
msgstr "Error al crear Perfil de Usuario"
-#: src/Module/User/Import.php:412
+#: 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."
@@ -10808,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?"
@@ -11323,199 +11864,208 @@ msgstr "Por favor contacta con el remitente respondiendo a este mensaje si no de
msgid "%s posted an update."
msgstr "%s publicó una actualización."
-#: src/Object/Post.php:135
+#: src/Object/Post.php:138
msgid "Private Message"
msgstr "Mensaje privado"
-#: 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:181
msgid "This entry was edited"
msgstr "Esta entrada fue editada"
-#: src/Object/Post.php:206
+#: 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 "Editar"
-#: src/Object/Post.php:248
+#: src/Object/Post.php:261
msgid "Delete globally"
msgstr "Borrar Globalmente"
-#: src/Object/Post.php:248
+#: src/Object/Post.php:261
msgid "Remove locally"
msgstr "Borrar localmente"
-#: src/Object/Post.php:265
+#: src/Object/Post.php:268
#, php-format
msgid "Block %s"
msgstr "Bloquear %s"
-#: src/Object/Post.php:270
+#: src/Object/Post.php:273
#, php-format
msgid "Ignore %s"
msgstr ""
-#: src/Object/Post.php:275
+#: 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:310
+#: src/Object/Post.php:333
msgid "I will attend"
msgstr "Asistiré"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I will not attend"
msgstr "No asistiré"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I might attend"
msgstr "Podría asistir"
-#: src/Object/Post.php:340
+#: src/Object/Post.php:363
msgid "Ignore thread"
msgstr ""
-#: src/Object/Post.php:341
+#: src/Object/Post.php:364
msgid "Unignore thread"
msgstr ""
-#: src/Object/Post.php:342
+#: src/Object/Post.php:365
msgid "Toggle ignore status"
msgstr ""
-#: src/Object/Post.php:352
+#: src/Object/Post.php:375
msgid "Add star"
msgstr ""
-#: src/Object/Post.php:353
+#: src/Object/Post.php:376
msgid "Remove star"
msgstr ""
-#: src/Object/Post.php:354
+#: src/Object/Post.php:377
msgid "Toggle star status"
msgstr ""
-#: src/Object/Post.php:365
+#: src/Object/Post.php:388
msgid "Pin"
msgstr ""
-#: src/Object/Post.php:366
+#: src/Object/Post.php:389
msgid "Unpin"
msgstr ""
-#: src/Object/Post.php:367
+#: src/Object/Post.php:390
msgid "Toggle pin status"
msgstr ""
-#: src/Object/Post.php:370
+#: src/Object/Post.php:393
msgid "Pinned"
msgstr ""
-#: src/Object/Post.php:375
+#: src/Object/Post.php:398
msgid "Add tag"
msgstr ""
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote share this"
msgstr "Compartir Comentado esto"
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote Share"
msgstr "Compartir comentado"
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare this"
msgstr "Compartir esto"
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare"
msgstr "Compartir"
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Cancel your Reshare"
msgstr "Cancelar Compartir"
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Unshare"
msgstr "Dejar de Compartir"
-#: src/Object/Post.php:443
+#: src/Object/Post.php:466
#, php-format
msgid "%s (Received %s)"
msgstr "%s (Recibido %s)"
-#: src/Object/Post.php:448
+#: src/Object/Post.php:472
msgid "Comment this item on your system"
msgstr "Comentarlo en mi estado"
-#: src/Object/Post.php:448
+#: src/Object/Post.php:472
msgid "Remote comment"
msgstr ""
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via ..."
msgstr ""
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via external services"
msgstr ""
-#: src/Object/Post.php:498
+#: src/Object/Post.php:523
msgid "to"
msgstr "a"
-#: src/Object/Post.php:499
+#: src/Object/Post.php:524
msgid "via"
msgstr "vía"
-#: src/Object/Post.php:500
+#: src/Object/Post.php:525
msgid "Wall-to-Wall"
msgstr "Perfil-a-Perfil"
-#: src/Object/Post.php:501
+#: src/Object/Post.php:526
msgid "via Wall-To-Wall:"
msgstr "via Perfil-a-Perfil:"
-#: src/Object/Post.php:545
+#: src/Object/Post.php:573
#, php-format
msgid "Reply to %s"
msgstr "Responder a %s"
-#: src/Object/Post.php:548
+#: src/Object/Post.php:576
msgid "More"
msgstr "Mas"
-#: src/Object/Post.php:566
+#: src/Object/Post.php:595
msgid "Notifier task is pending"
msgstr "Notificador tarea pendiente"
-#: src/Object/Post.php:567
+#: src/Object/Post.php:596
msgid "Delivery to remote servers is pending"
msgstr "Entrega remota pendiente"
-#: src/Object/Post.php:568
+#: src/Object/Post.php:597
msgid "Delivery to remote servers is underway"
msgstr "Entrega remota en camino"
-#: src/Object/Post.php:569
+#: src/Object/Post.php:598
msgid "Delivery to remote servers is mostly done"
msgstr "Entrega remota casi completada"
-#: src/Object/Post.php:570
+#: src/Object/Post.php:599
msgid "Delivery to remote servers is done"
msgstr "Entrega remota completada"
-#: src/Object/Post.php:590
+#: src/Object/Post.php:619
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
@@ -11523,50 +12073,50 @@ msgstr[0] "%d comentario"
msgstr[1] "%d comentarios"
msgstr[2] "%d comentarios"
-#: src/Object/Post.php:591
+#: src/Object/Post.php:620
msgid "Show more"
msgstr "Mostrar mas"
-#: src/Object/Post.php:592
+#: src/Object/Post.php:621
msgid "Show fewer"
msgstr "Mostrar menos"
-#: src/Object/Post.php:628
+#: src/Object/Post.php:657
#, php-format
msgid "Reshared by: %s"
msgstr ""
-#: src/Object/Post.php:633
+#: src/Object/Post.php:662
#, php-format
msgid "Viewed by: %s"
msgstr ""
-#: src/Object/Post.php:638
+#: src/Object/Post.php:667
#, php-format
msgid "Liked by: %s"
msgstr ""
-#: src/Object/Post.php:643
+#: src/Object/Post.php:672
#, php-format
msgid "Disliked by: %s"
msgstr ""
-#: src/Object/Post.php:648
+#: src/Object/Post.php:677
#, php-format
msgid "Attended by: %s"
msgstr ""
-#: src/Object/Post.php:653
+#: src/Object/Post.php:682
#, php-format
msgid "Maybe attended by: %s"
msgstr ""
-#: src/Object/Post.php:658
+#: src/Object/Post.php:687
#, php-format
msgid "Not attended by: %s"
msgstr ""
-#: src/Object/Post.php:663
+#: src/Object/Post.php:692
#, php-format
msgid "Reacted with %s by: %s"
msgstr ""
@@ -11575,21 +12125,21 @@ msgstr ""
msgid "(no subject)"
msgstr "(sin asunto)"
-#: src/Protocol/OStatus.php:1388
+#: src/Protocol/OStatus.php:1390
#, php-format
msgid "%s is now following %s."
msgstr "%s sigue ahora a %s."
-#: src/Protocol/OStatus.php:1389
+#: src/Protocol/OStatus.php:1391
msgid "following"
msgstr "siguiendo"
-#: src/Protocol/OStatus.php:1392
+#: src/Protocol/OStatus.php:1394
#, php-format
msgid "%s stopped following %s."
msgstr "%s dejó de seguir a %s."
-#: src/Protocol/OStatus.php:1393
+#: src/Protocol/OStatus.php:1395
msgid "stopped following"
msgstr "dejó de seguir"
@@ -11947,8 +12497,8 @@ msgid "Textareas font size"
msgstr "Tamaño de letra de áreas de texto"
#: view/theme/vier/config.php:91
-msgid "Comma separated list of helper forums"
-msgstr "Lista separada por comas de foros de ayuda."
+msgid "Comma separated list of helper groups"
+msgstr ""
#: view/theme/vier/config.php:131
msgid "don't show"
@@ -11966,7 +12516,7 @@ msgstr "Definir estilo"
msgid "Community Pages"
msgstr "Páginas de Comunidad"
-#: view/theme/vier/config.php:139 view/theme/vier/theme.php:149
+#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148
msgid "Community Profiles"
msgstr "Perfiles de la Comunidad"
@@ -11974,7 +12524,7 @@ msgstr "Perfiles de la Comunidad"
msgid "Help or @NewHere ?"
msgstr "¿Ayuda o @NewHere?"
-#: view/theme/vier/config.php:141 view/theme/vier/theme.php:320
+#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319
msgid "Connect Services"
msgstr "Conectar Servicios"
@@ -11982,10 +12532,10 @@ msgstr "Conectar Servicios"
msgid "Find Friends"
msgstr "Buscar amistades"
-#: view/theme/vier/config.php:143 view/theme/vier/theme.php:176
+#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175
msgid "Last users"
msgstr "Últimos usuarios"
-#: view/theme/vier/theme.php:235
+#: view/theme/vier/theme.php:234
msgid "Quick Start"
msgstr "Inicio rápido"
diff --git a/view/lang/es/strings.php b/view/lang/es/strings.php
index 27ee0b7248..4aca4b5c00 100644
--- a/view/lang/es/strings.php
+++ b/view/lang/es/strings.php
@@ -287,11 +287,6 @@ $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['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['remove'] = 'eliminar';
$a->strings['Delete Selected Items'] = 'Eliminar los seleccionados';
$a->strings['You had been addressed (%s).'] = 'Has sido mencionado (%s).';
@@ -300,28 +295,39 @@ $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['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['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['event'] = 'evento';
@@ -342,7 +348,6 @@ $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['@name, !forum, #tags, content'] = '@name, !forum, #tags, contenido';
$a->strings['Logout'] = 'Salir';
$a->strings['End this session'] = 'Cerrar sesión';
$a->strings['Login'] = 'Ingreso';
@@ -430,7 +435,6 @@ $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['Groups'] = 'Grupos';
$a->strings['Everyone'] = 'Todos';
$a->strings['Relationships'] = 'Relaciones';
$a->strings['All Contacts'] = 'Todos los contactos';
@@ -581,6 +585,8 @@ $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!';
@@ -624,9 +630,11 @@ $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['Forum'] = 'Foro';
$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.';
@@ -661,16 +669,6 @@ $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['Contacts not in any group'] = 'Contactos sin grupo';
-$a->strings['Create a new group'] = 'Crear un nuevo grupo';
-$a->strings['Group Name: '] = 'Nombre del grupo: ';
-$a->strings['Edit groups'] = 'Editar grupo';
$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';
@@ -748,7 +746,6 @@ $a->strings['An error occurred during registration. Please try again.'] = 'Se pr
$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['Profile Photos'] = 'Fotos del perfil';
$a->strings['
Dear %1$s,
@@ -918,7 +915,6 @@ $a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Habilitar
$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.';
@@ -1014,8 +1010,6 @@ $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.'] = '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.';
@@ -1083,7 +1077,6 @@ $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['Forum Search - %s'] = 'Búsqueda de Foros - %s';
$a->strings['No matches'] = 'Sin resultados';
$a->strings['Account'] = 'Cuenta';
$a->strings['Two-factor authentication'] = 'Ingreso de 2 factores';
@@ -1112,6 +1105,13 @@ $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.',
@@ -1128,7 +1128,6 @@ $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['Organize your contact groups'] = 'Organizar tus grupos de contactos';
$a->strings['Search your contacts'] = 'Buscar en tus contactos';
$a->strings['Results for: %s'] = 'Resultados para: %s';
$a->strings['Update'] = 'Actualizar';
@@ -1145,7 +1144,6 @@ $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 not found.'] = 'Contacto no encontrado.';
$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';
@@ -1153,7 +1151,6 @@ $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['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)'] = [
@@ -1251,33 +1248,18 @@ $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['Contact is deleted.'] = 'El contacto se borra.';
$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['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['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['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['No results.'] = 'Sin resultados.';
-$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['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! ';
@@ -1374,26 +1356,6 @@ $a->strings['Please visit Friendi.ca to learn m
$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['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['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['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['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['No profile'] = 'Ningún perfil';
$a->strings['Method Not Allowed.'] = 'Método no Permitido';
$a->strings['Help:'] = 'Ayuda:';
@@ -1459,7 +1421,6 @@ $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 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['Unable to follow this item.'] = 'Imposible seguir este artículo.';
$a->strings['System down for maintenance'] = 'Servicio suspendido por mantenimiento';
@@ -1472,7 +1433,6 @@ $a->strings['Or - did you try to upload an empty file?'] = 'O - intentó subir u
$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 exceeds size limit of %s'] = 'Imagen excede el tamaño de %s';
$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';
@@ -1483,13 +1443,10 @@ $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['%s contact unblocked'] = [
0 => '%s Contacto desbloqueado',
@@ -1542,10 +1499,8 @@ $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['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['Registered users'] = 'Usuarios registrados';
$a->strings['Pending registrations'] = 'Pendientes de registro';
$a->strings['%s user blocked'] = [
@@ -1655,6 +1610,7 @@ $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';
@@ -1674,7 +1630,6 @@ $a->strings['%d year old'] = [
2 => '%d Años',
];
$a->strings['Description:'] = 'Descripción:';
-$a->strings['Forums:'] = 'Foros:';
$a->strings['View profile as:'] = 'Ver perfil como:';
$a->strings['View as'] = 'Ver como';
$a->strings['Profile unavailable.'] = 'Perfil no disponible.';
@@ -1769,7 +1724,6 @@ $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['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".';
@@ -1778,7 +1732,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".'] = '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.';
@@ -1793,6 +1746,7 @@ $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:';
@@ -1919,7 +1873,6 @@ $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 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:';
@@ -1934,7 +1887,6 @@ $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['Display name:'] = 'Nombre desplegable:';
$a->strings['Street Address:'] = 'Dirección';
$a->strings['Locality/City:'] = 'Localidad/Ciudad:';
$a->strings['Region/State:'] = 'Región/Estado:';
@@ -1946,15 +1898,6 @@ $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['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';
@@ -2076,6 +2019,7 @@ $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.';
@@ -2117,8 +2061,6 @@ $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';
@@ -2305,7 +2247,6 @@ $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';
diff --git a/view/lang/et/messages.po b/view/lang/et/messages.po
index 7b52f42b92..e22d3e3b2d 100644
--- a/view/lang/et/messages.po
+++ b/view/lang/et/messages.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-18 20:49+0000\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"
@@ -18,46 +18,46 @@ msgstr ""
"Language: et\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: mod/item.php:102 mod/item.php:105 mod/item.php:171 mod/item.php:174
+#: 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:139
+#: mod/item.php:138
msgid "Post updated."
msgstr ""
-#: mod/item.php:204 mod/item.php:208
+#: mod/item.php:203 mod/item.php:207
msgid "Item wasn't stored."
msgstr ""
-#: mod/item.php:218
+#: mod/item.php:217
msgid "Item couldn't be fetched."
msgstr ""
-#: mod/item.php:256 mod/item.php:260
+#: mod/item.php:255 mod/item.php:259
msgid "Empty post discarded."
msgstr "Tühi postitus eiratud."
-#: mod/item.php:412 src/Module/Admin/Themes/Details.php:39
+#: 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:436 mod/message.php:69 mod/message.php:114 mod/notes.php:45
-#: mod/photos.php:152 mod/photos.php:669 src/Model/Event.php:522
-#: src/Module/Attach.php:55 src/Module/BaseApi.php:95
-#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:52
+#: 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/Contact/Advanced.php:60 src/Module/Contact/Follow.php:86
-#: src/Module/Contact/Follow.php:159 src/Module/Contact/MatchInterests.php:86
+#: 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/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/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
@@ -67,9 +67,9 @@ msgstr "Elementi ei leitud"
#: 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:69
-#: src/Module/Settings/Display.php:69 src/Module/Settings/Display.php:151
+#: 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
@@ -147,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:161
+#: mod/lostpass.php:130 src/Module/Security/Login.php:160
msgid "Nickname or Email: "
msgstr "Hüüdnimi või email:"
@@ -155,7 +155,7 @@ msgstr "Hüüdnimi või email:"
msgid "Reset"
msgstr "Lähtesta"
-#: mod/lostpass.php:146 src/Module/Security/Login.php:173
+#: mod/lostpass.php:146 src/Module/Security/Login.php:172
msgid "Password Reset"
msgstr "Lähtesta parool"
@@ -215,90 +215,90 @@ msgstr ""
msgid "Your password has been changed at %s"
msgstr ""
-#: mod/message.php:46 mod/message.php:129 src/Content/Nav.php:321
+#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321
msgid "New Message"
msgstr "Uus sõnum"
-#: 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 "Ühtegi saajat pole valitud."
-#: mod/message.php:88
+#: mod/message.php:87
msgid "Unable to locate contact information."
msgstr "Ei leia kontakti infot."
-#: 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 "Sõnumit ei saanud saata."
-#: 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 "Sõnumi vastuvõtmise viga."
-#: 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 "Eira"
-#: mod/message.php:136 src/Content/Nav.php:318 view/theme/frio/theme.php:241
+#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Messages"
msgstr "Sõnumid"
-#: mod/message.php:149
+#: mod/message.php:148
msgid "Conversation not found."
msgstr "Vestlust ei leitud."
-#: 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 "Palun sisesta lingi URL: "
-#: 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 "Saada privaatsõnum"
-#: 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 "Teema:"
-#: 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 "Sinu sõnum:"
-#: mod/message.php:201 mod/message.php:357 src/Content/Conversation.php:352
-#: src/Module/Post/Edit.php:128
+#: 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:202 mod/message.php:358 src/Module/Post/Edit.php:132
-#: src/Module/Profile/UnkMail.php:154
+#: 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:203 mod/message.php:360 mod/photos.php:1291
-#: src/Content/Conversation.php:381 src/Content/Conversation.php:727
-#: src/Module/Item/Compose.php:204 src/Module/Post/Edit.php:142
-#: src/Module/Profile/UnkMail.php:155 src/Object/Post.php:545
+#: 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:204 mod/message.php:359 mod/photos.php:702
-#: mod/photos.php:819 mod/photos.php:1097 mod/photos.php:1138
-#: mod/photos.php:1194 mod/photos.php:1268
+#: 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:340
+#: 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
@@ -306,59 +306,64 @@ msgstr "Palun oota"
#: 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:156
-#: src/Module/Settings/Profile/Index.php:231 src/Object/Post.php:1058
+#: 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:225
+#: mod/message.php:223
msgid "No messages."
msgstr "Sõnumeid pole."
-#: mod/message.php:281
+#: mod/message.php:279
msgid "Message not available."
msgstr "Sõnum pole saadaval. "
-#: mod/message.php:326
+#: mod/message.php:323
msgid "Delete message"
msgstr "Kustuta sõnum"
-#: 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 "Kustuta vestlus"
-#: 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 "Turvaline suhtlus pole saadaval. Vastamine võib õnnestuda saatja profiili lehel. "
-#: mod/message.php:348
+#: mod/message.php:345
msgid "Send Reply"
msgstr "Saada vastus"
-#: mod/message.php:430
+#: mod/message.php:427
#, php-format
msgid "Unknown sender - %s"
msgstr "Tundmatu saatja - %s"
-#: mod/message.php:432
+#: mod/message.php:429
#, php-format
msgid "You and %s"
msgstr "Sina ja %s "
-#: mod/message.php:434
+#: mod/message.php:431
#, php-format
msgid "%s and You"
msgstr "%s ja Sina"
-#: mod/message.php:462
+#: mod/message.php:459
#, php-format
msgid "%d message"
msgid_plural "%d messages"
@@ -373,14 +378,14 @@ msgstr "Isiklikud märkmed"
msgid "Personal notes are visible only by yourself."
msgstr ""
-#: mod/notes.php:57 src/Content/Text/HTML.php:884
+#: 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:126
+#: src/Module/Post/Edit.php:129
msgid "Save"
msgstr "Salvesta"
-#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:577
-#: src/Model/Event.php:514 src/Model/Profile.php:234
+#: 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
@@ -392,22 +397,22 @@ msgid "User not found."
msgstr ""
#: mod/photos.php:106 src/Module/BaseProfile.php:68
-#: src/Module/Profile/Photos.php:399
+#: src/Module/Profile/Photos.php:379
msgid "Photo Albums"
msgstr "Foto albumid"
-#: mod/photos.php:107 src/Module/Profile/Photos.php:400
-#: src/Module/Profile/Photos.php:420
+#: 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:109 mod/photos.php:867 src/Module/Profile/Photos.php:402
-#: src/Module/Profile/Photos.php:422
+#: 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:121 src/Module/BaseSettings.php:74
-#: src/Module/Profile/Photos.php:383
+#: mod/photos.php:121 src/Module/BaseSettings.php:72
+#: src/Module/Profile/Photos.php:363
msgid "everybody"
msgstr "igaüks"
@@ -419,239 +424,241 @@ msgstr "Kontakti infot pole saadaval"
msgid "Album not found."
msgstr "Albumit ei leitud"
-#: mod/photos.php:242
+#: mod/photos.php:244
msgid "Album successfully deleted"
msgstr ""
-#: mod/photos.php:244
+#: mod/photos.php:246
msgid "Album was empty."
msgstr ""
-#: mod/photos.php:276
+#: mod/photos.php:277
msgid "Failed to delete the photo."
msgstr ""
-#: mod/photos.php:544
+#: mod/photos.php:545
msgid "a photo"
msgstr "see foto"
-#: mod/photos.php:544
+#: 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:581 src/Module/Conversation/Community.php:188
-#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:315
+#: 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:586
+#: mod/photos.php:587
msgid "No photos selected"
msgstr "Fotosid pole valitud"
-#: mod/photos.php:718
+#: mod/photos.php:721
#, php-format
msgid "The maximum accepted image size is %s"
msgstr ""
-#: mod/photos.php:725
+#: mod/photos.php:728
msgid "Upload Photos"
msgstr "Lae fotod üles"
-#: mod/photos.php:729 mod/photos.php:815
+#: mod/photos.php:732 mod/photos.php:820
msgid "New album name: "
msgstr "Uus albuminimi"
-#: mod/photos.php:730
+#: mod/photos.php:733
msgid "or select existing album:"
msgstr "või vali olemasolev album:"
-#: mod/photos.php:731
+#: 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:733 mod/photos.php:1093 src/Content/Conversation.php:383
-#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:179
+#: 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:796
+#: 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:797 mod/photos.php:820
+#: mod/photos.php:802 mod/photos.php:825
msgid "Delete Album"
msgstr "Kustuta album"
-#: mod/photos.php:798 mod/photos.php:899 src/Content/Conversation.php:399
-#: src/Module/Contact/Follow.php:172 src/Module/Contact/Revoke.php:109
+#: 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:164
+#: 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:824
+#: mod/photos.php:829
msgid "Edit Album"
msgstr "Muuda Albumit"
-#: mod/photos.php:825
+#: mod/photos.php:830
msgid "Drop Album"
msgstr ""
-#: mod/photos.php:829
+#: mod/photos.php:834
msgid "Show Newest First"
msgstr "Uusimad esmalt"
-#: mod/photos.php:831
+#: mod/photos.php:836
msgid "Show Oldest First"
msgstr "Vanimad esmalt"
-#: mod/photos.php:852 src/Module/Profile/Photos.php:370
+#: mod/photos.php:857 src/Module/Profile/Photos.php:350
msgid "View Photo"
msgstr "Kuva foto"
-#: mod/photos.php:885
+#: 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:887
+#: mod/photos.php:891
msgid "Photo not available"
msgstr "Foto ei ole saadaval"
-#: mod/photos.php:897
+#: mod/photos.php:901
msgid "Do you really want to delete this photo?"
msgstr "Kas soovid tõesti selle foto kustutada?"
-#: mod/photos.php:898 mod/photos.php:1098
+#: mod/photos.php:902 mod/photos.php:1102
msgid "Delete Photo"
msgstr "Kustuta foto"
-#: mod/photos.php:996
+#: mod/photos.php:1000
msgid "View photo"
msgstr "Kuva foto"
-#: mod/photos.php:998
+#: mod/photos.php:1002
msgid "Edit photo"
msgstr "Muuda foto"
-#: mod/photos.php:999
+#: mod/photos.php:1003
msgid "Delete photo"
msgstr ""
-#: mod/photos.php:1000
+#: mod/photos.php:1004
msgid "Use as profile photo"
msgstr "Kasuta profiilipildina"
-#: mod/photos.php:1007
+#: mod/photos.php:1011
msgid "Private Photo"
msgstr ""
-#: mod/photos.php:1013
+#: mod/photos.php:1017
msgid "View Full Size"
msgstr "Kuva täismõõdus"
-#: mod/photos.php:1066
+#: mod/photos.php:1070
msgid "Tags: "
msgstr ""
-#: mod/photos.php:1069
+#: mod/photos.php:1073
msgid "[Select tags to remove]"
msgstr "[vali tag` id mida eemaldada]"
-#: mod/photos.php:1084
+#: mod/photos.php:1088
msgid "New album name"
msgstr "Uus albuminimi"
-#: mod/photos.php:1085
+#: mod/photos.php:1089
msgid "Caption"
msgstr ""
-#: mod/photos.php:1086
+#: mod/photos.php:1090
msgid "Add a Tag"
msgstr "Lisa Tag"
-#: mod/photos.php:1086
+#: 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:1087
+#: mod/photos.php:1091
msgid "Do not rotate"
msgstr "Ära pööra"
-#: mod/photos.php:1088
+#: mod/photos.php:1092
msgid "Rotate CW (right)"
msgstr "Pööra CW (paremale)"
-#: mod/photos.php:1089
+#: mod/photos.php:1093
msgid "Rotate CCW (left)"
msgstr "Pööra CCW (vasakule)"
-#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1265
-#: src/Module/Contact.php:589 src/Module/Item/Compose.php:188
-#: src/Object/Post.php:1055
+#: 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:1137 mod/photos.php:1193 mod/photos.php:1267
-#: src/Object/Post.php:539 src/Object/Post.php:1057
+#: 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:1139 mod/photos.php:1195 mod/photos.php:1269
-#: src/Content/Conversation.php:396 src/Module/Calendar/Event/Form.php:248
-#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:162
-#: src/Object/Post.php:1069
+#: 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:1140 src/Content/Conversation.php:351
-#: src/Module/Post/Edit.php:127 src/Object/Post.php:1059
+#: 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:1226 src/Content/Conversation.php:643
-#: src/Object/Post.php:256
+#: mod/photos.php:1236 src/Content/Conversation.php:1464
+#: src/Object/Post.php:260
msgid "Select"
msgstr "Vali"
-#: mod/photos.php:1227 src/Content/Conversation.php:644
+#: 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:241
+#: src/Module/Settings/Connectors.php:244
+#: src/Module/Settings/Server/Index.php:109
msgid "Delete"
msgstr "Kustuta"
-#: mod/photos.php:1288 src/Object/Post.php:384
+#: mod/photos.php:1298 src/Object/Post.php:408
msgid "Like"
msgstr ""
-#: mod/photos.php:1289 src/Object/Post.php:384
+#: mod/photos.php:1299 src/Object/Post.php:408
msgid "I like this (toggle)"
msgstr "Mulle meeldib see (toggle)"
-#: mod/photos.php:1290 src/Object/Post.php:385
+#: mod/photos.php:1300 src/Object/Post.php:409
msgid "Dislike"
msgstr ""
-#: mod/photos.php:1292 src/Object/Post.php:385
+#: 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:1314
+#: mod/photos.php:1324
msgid "Map"
msgstr "Kaart"
-#: src/App.php:470
+#: src/App.php:473
msgid "No system theme config value set."
msgstr ""
-#: src/App.php:574
+#: src/App.php:580
msgid "Apologies but the website is unavailable at the moment."
msgstr ""
@@ -671,7 +678,92 @@ msgid ""
"notifications."
msgstr ""
-#: src/App/Page.php:320
+#: 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"
@@ -688,33 +780,33 @@ msgstr ""
msgid "You must be logged in to use addons. "
msgstr "Lisade kasutamiseks peate sisse logima"
-#: src/BaseModule.php:400
+#: 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:427
+#: src/BaseModule.php:428
msgid "All contacts"
msgstr ""
-#: src/BaseModule.php:432 src/Content/Widget.php:235 src/Core/ACL.php:194
-#: src/Module/Contact.php:408 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 "Jälgijad"
-#: src/BaseModule.php:437 src/Content/Widget.php:236
-#: src/Module/Contact.php:409
+#: src/BaseModule.php:438 src/Content/Widget.php:240
+#: src/Module/Contact.php:418
msgid "Following"
msgstr ""
-#: src/BaseModule.php:442 src/Content/Widget.php:237
-#: src/Module/Contact.php:410
+#: src/BaseModule.php:443 src/Content/Widget.php:241
+#: src/Module/Contact.php:421
msgid "Mutual friends"
msgstr "Ühised sõbrad"
-#: src/BaseModule.php:450
+#: src/BaseModule.php:451
msgid "Common"
msgstr ""
@@ -864,7 +956,7 @@ msgstr ""
msgid "Enter user nickname: "
msgstr ""
-#: src/Console/User.php:182 src/Model/User.php:662
+#: 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
@@ -975,7 +1067,7 @@ 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:73
+#: 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
@@ -1035,363 +1127,504 @@ 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:220
-#, php-format
-msgid "%s likes this."
-msgstr ""
-
-#: src/Content/Conversation.php:223
-#, php-format
-msgid "%s doesn't like this."
-msgstr ""
-
#: src/Content/Conversation.php:226
-#, php-format
-msgid "%s attends."
-msgstr ""
-
-#: src/Content/Conversation.php:229
-#, php-format
-msgid "%s doesn't attend."
-msgstr ""
-
-#: src/Content/Conversation.php:232
-#, php-format
-msgid "%s attends maybe."
-msgstr ""
-
-#: src/Content/Conversation.php:235 src/Content/Conversation.php:273
-#: src/Content/Conversation.php:887
-#, php-format
-msgid "%s reshared this."
-msgstr ""
-
-#: src/Content/Conversation.php:241
msgid "and"
msgstr "ja"
-#: src/Content/Conversation.php:244
+#: src/Content/Conversation.php:229
#, php-format
msgid "and %d other people"
msgstr ""
-#: src/Content/Conversation.php:252
+#: src/Content/Conversation.php:235
#, php-format
-msgid " like this"
-msgstr ""
+msgid "%2$s likes this."
+msgid_plural "%2$s like this."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:253
+#: src/Content/Conversation.php:237
#, php-format
-msgid "%s like this."
-msgstr ""
+msgid "%2$s doesn't like this."
+msgid_plural "%2$s don't like this."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:256
+#: src/Content/Conversation.php:239
#, php-format
-msgid " don't like this"
-msgstr ""
+msgid "%2$s attends."
+msgid_plural "%2$s attend."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:257
+#: src/Content/Conversation.php:241
#, php-format
-msgid "%s don't like this."
-msgstr ""
+msgid "%2$s doesn't attend."
+msgid_plural "%2$s don't attend."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:260
+#: src/Content/Conversation.php:243
#, php-format
-msgid " attend"
-msgstr ""
+msgid "%2$s attends maybe."
+msgid_plural "%2$s attend maybe."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:261
+#: src/Content/Conversation.php:245
#, php-format
-msgid "%s attend."
-msgstr ""
+msgid "%2$s reshared this."
+msgid_plural "%2$s reshared this."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:264
+#: src/Content/Conversation.php:274
#, php-format
-msgid " don't attend"
-msgstr ""
+msgid " likes this"
+msgid_plural " like this"
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:265
+#: src/Content/Conversation.php:277
#, php-format
-msgid "%s don't attend."
-msgstr ""
+msgid " doesn't like this"
+msgid_plural " don't like this"
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:268
+#: src/Content/Conversation.php:280
#, php-format
-msgid " attend maybe"
-msgstr ""
+msgid " attends"
+msgid_plural " attend"
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:269
+#: src/Content/Conversation.php:283
#, php-format
-msgid "%s attend maybe."
-msgstr ""
+msgid " doesn't attend"
+msgid_plural " don't attend"
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:272
+#: src/Content/Conversation.php:286
#, php-format
-msgid " reshared this"
-msgstr ""
+msgid " attends maybe"
+msgid_plural " attend maybe"
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:320
+#: 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:321 src/Module/Item/Compose.php:198
-#: src/Object/Post.php:1068
+#: 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:322
+#: src/Content/Conversation.php:338
msgid "Tag term:"
msgstr "Tag`i tingimus:"
-#: src/Content/Conversation.php:323 src/Module/Filer/SaveTag.php:73
+#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73
msgid "Save to Folder:"
msgstr "Salvesta kausta:"
-#: src/Content/Conversation.php:324
+#: src/Content/Conversation.php:340
msgid "Where are you right now?"
msgstr "Kus sa hetkel oled?"
-#: src/Content/Conversation.php:325
+#: src/Content/Conversation.php:341
msgid "Delete item(s)?"
msgstr "Kustutada element(id)?"
-#: src/Content/Conversation.php:337 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:347
+#: src/Content/Conversation.php:363
msgid "New Post"
msgstr "Uus postitus"
-#: src/Content/Conversation.php:350
+#: src/Content/Conversation.php:366
msgid "Share"
msgstr "Jaga"
-#: src/Content/Conversation.php:353 src/Module/Post/Edit.php:129
+#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132
msgid "upload photo"
msgstr "lae foto üles"
-#: src/Content/Conversation.php:354 src/Module/Post/Edit.php:130
+#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133
msgid "Attach file"
msgstr "Manusta fail"
-#: src/Content/Conversation.php:355 src/Module/Post/Edit.php:131
+#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134
msgid "attach file"
msgstr "manusta fail"
-#: src/Content/Conversation.php:356 src/Module/Item/Compose.php:190
-#: src/Module/Post/Edit.php:168 src/Object/Post.php:1060
+#: 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:357 src/Module/Item/Compose.php:191
-#: src/Module/Post/Edit.php:169 src/Object/Post.php:1061
+#: 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:358 src/Module/Item/Compose.php:192
-#: src/Module/Post/Edit.php:170 src/Object/Post.php:1062
+#: 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:359 src/Module/Item/Compose.php:193
-#: src/Module/Post/Edit.php:171 src/Object/Post.php:1063
+#: 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:360 src/Module/Item/Compose.php:194
-#: src/Module/Post/Edit.php:172 src/Object/Post.php:1064
+#: 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:361 src/Module/Item/Compose.php:195
-#: src/Object/Post.php:1065
+#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197
+#: src/Object/Post.php:1104
msgid "Image"
msgstr "Pilt"
-#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:196
-#: src/Module/Post/Edit.php:173 src/Object/Post.php:1066
+#: 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:363 src/Module/Item/Compose.php:197
-#: src/Module/Post/Edit.php:174 src/Object/Post.php:1067
+#: 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:364
+#: src/Content/Conversation.php:382
msgid "Video"
msgstr ""
-#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:200
-#: src/Module/Post/Edit.php:138
+#: 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:366 src/Module/Post/Edit.php:139
+#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142
msgid "set location"
msgstr "vali asukoht"
-#: src/Content/Conversation.php:367 src/Module/Post/Edit.php:140
+#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143
msgid "Clear browser location"
msgstr "Kustuta sirviku asukoht"
-#: src/Content/Conversation.php:368 src/Module/Post/Edit.php:141
+#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144
msgid "clear location"
msgstr "kustuta asukoht"
-#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:205
-#: src/Module/Post/Edit.php:154
+#: 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:372 src/Module/Item/Compose.php:206
-#: src/Module/Post/Edit.php:156
+#: 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:377 src/Module/Item/Compose.php:222
+#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224
msgid "Scheduled at"
msgstr "Ajastatud"
-#: src/Content/Conversation.php:382 src/Module/Post/Edit.php:143
+#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146
msgid "Permission settings"
msgstr "Õiguste sätted"
-#: src/Content/Conversation.php:392 src/Module/Post/Edit.php:152
+#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155
msgid "Public post"
msgstr "Avalik postitus"
-#: src/Content/Conversation.php:406 src/Content/Widget/VCard.php:113
-#: src/Model/Profile.php:469 src/Module/Admin/Logs/View.php:93
-#: src/Module/Post/Edit.php:177
+#: 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:407 src/Module/Post/Edit.php:178
+#: 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:409 src/Module/Post/Edit.php:181
+#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185
msgid "Open Compose page"
msgstr ""
-#: src/Content/Conversation.php:671 src/Object/Post.php:243
-msgid "Pinned item"
-msgstr ""
-
-#: src/Content/Conversation.php:687 src/Object/Post.php:491
-#: src/Object/Post.php:492
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr ""
-
-#: src/Content/Conversation.php:700 src/Object/Post.php:479
-msgid "Categories:"
-msgstr "Kategooriad:"
-
-#: src/Content/Conversation.php:701 src/Object/Post.php:480
-msgid "Filed under:"
-msgstr ""
-
-#: src/Content/Conversation.php:709 src/Object/Post.php:505
-#, php-format
-msgid "%s from %s"
-msgstr ""
-
-#: src/Content/Conversation.php:725
-msgid "View in context"
-msgstr ""
-
-#: src/Content/Conversation.php:790
+#: src/Content/Conversation.php:595
msgid "remove"
msgstr "eemalda"
-#: src/Content/Conversation.php:794
+#: src/Content/Conversation.php:599
msgid "Delete Selected Items"
msgstr "Kustuta valitud elemendid"
-#: src/Content/Conversation.php:859 src/Content/Conversation.php:862
-#: src/Content/Conversation.php:865 src/Content/Conversation.php:868
+#: 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:871
+#: src/Content/Conversation.php:769
#, php-format
msgid "You are following %s."
msgstr ""
-#: src/Content/Conversation.php:874
+#: 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:889
+#: 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:889
+#: src/Content/Conversation.php:798
#, php-format
msgid "Reshared by %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:892
+#: src/Content/Conversation.php:801
#, php-format
msgid "%s is participating in this thread."
msgstr ""
-#: src/Content/Conversation.php:895
+#: src/Content/Conversation.php:804
msgid "Stored for general reasons"
msgstr ""
-#: src/Content/Conversation.php:898
+#: src/Content/Conversation.php:807
msgid "Global post"
msgstr ""
-#: src/Content/Conversation.php:901
+#: src/Content/Conversation.php:810
msgid "Sent via an relay server"
msgstr ""
-#: src/Content/Conversation.php:901
+#: src/Content/Conversation.php:810
#, php-format
msgid "Sent via the relay server %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:904
+#: src/Content/Conversation.php:813
msgid "Fetched"
msgstr ""
-#: src/Content/Conversation.php:904
+#: src/Content/Conversation.php:813
#, php-format
msgid "Fetched because of %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:907
+#: src/Content/Conversation.php:816
msgid "Stored because of a child post to complete this thread."
msgstr ""
-#: src/Content/Conversation.php:910
+#: src/Content/Conversation.php:819
msgid "Local delivery"
msgstr ""
-#: src/Content/Conversation.php:913
+#: src/Content/Conversation.php:822
msgid "Stored because of your activity (like, comment, star, ...)"
msgstr ""
-#: src/Content/Conversation.php:916
+#: src/Content/Conversation.php:825
msgid "Distributed"
msgstr ""
-#: src/Content/Conversation.php:919
+#: 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"
@@ -1421,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
@@ -1467,11 +1700,11 @@ msgid "Advanced Profile Settings"
msgstr "Täpsemad profiili sätted"
#: src/Content/Feature.php:119
-msgid "List Forums"
-msgstr "Foorumite nimistu"
+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
@@ -1504,127 +1737,137 @@ msgid ""
"Contact birthday events are private to you."
msgstr ""
-#: src/Content/ForumManager.php:151 src/Content/Nav.php:278
-#: src/Content/Text/HTML.php:905 src/Content/Widget.php:524
-msgid "Forums"
-msgstr "Foorumid"
+#: 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/ForumManager.php:153
-msgid "External link to forum"
-msgstr "Välimine link foorumisse"
+#: src/Content/GroupManager.php:154
+msgid "External link to group"
+msgstr ""
-#: src/Content/ForumManager.php:156 src/Content/Widget.php:503
+#: 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 "näita veel"
-#: src/Content/Item.php:326 src/Model/Item.php:2900
+#: src/Content/GroupManager.php:160
+msgid "Create new group"
+msgstr ""
+
+#: src/Content/Item.php:331 src/Model/Item.php:3003
msgid "event"
msgstr "sündmus"
-#: src/Content/Item.php:329 src/Content/Item.php:339
+#: src/Content/Item.php:334 src/Content/Item.php:344
msgid "status"
msgstr "staatus"
-#: src/Content/Item.php:335 src/Model/Item.php:2902
+#: 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:349 src/Module/Post/Tag/Add.php:141
+#: 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:419 view/theme/frio/theme.php:262
+#: src/Content/Item.php:428 view/theme/frio/theme.php:262
msgid "Follow Thread"
msgstr "Jälgi vestlust"
-#: src/Content/Item.php:420 src/Model/Contact.php:1204
+#: src/Content/Item.php:429 src/Model/Contact.php:1227
msgid "View Status"
msgstr "Vaata staatust"
-#: src/Content/Item.php:421 src/Content/Item.php:440
-#: src/Model/Contact.php:1148 src/Model/Contact.php:1196
-#: src/Model/Contact.php:1205 src/Module/Directory.php:157
-#: src/Module/Settings/Profile/Index.php:234
+#: 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:422 src/Model/Contact.php:1206
+#: src/Content/Item.php:431 src/Model/Contact.php:1229
msgid "View Photos"
msgstr "Vaata fotosid"
-#: src/Content/Item.php:423 src/Model/Contact.php:1197
-#: src/Model/Contact.php:1207
+#: 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:424 src/Model/Contact.php:1198
-#: src/Model/Contact.php:1208
+#: 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:425 src/Model/Contact.php:1209
+#: src/Content/Item.php:434 src/Model/Contact.php:1232
msgid "Send PM"
msgstr "Saada privaatsõnum"
-#: src/Content/Item.php:426 src/Module/Contact.php:440
-#: src/Module/Contact/Profile.php:478
+#: 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:427 src/Module/Contact.php:441
-#: src/Module/Contact/Profile.php:486
+#: 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:428 src/Module/Contact.php:442
-#: src/Module/Contact/Profile.php:494
+#: src/Content/Item.php:437 src/Module/Contact.php:470
+#: src/Module/Contact/Profile.php:527
msgid "Collapse"
msgstr ""
-#: src/Content/Item.php:432 src/Object/Post.php:460
+#: 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:437 src/Content/Widget.php:80
-#: src/Model/Contact.php:1199 src/Model/Contact.php:1210
-#: src/Module/Contact/Follow.php:166 view/theme/vier/theme.php:196
+#: 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/Item.php:862
+#: src/Content/Item.php:882
msgid "Unable to fetch user."
msgstr ""
-#: src/Content/Nav.php:120
+#: src/Content/Nav.php:121
msgid "Nothing new here"
msgstr "Ei midagi uut siin"
-#: src/Content/Nav.php:124 src/Module/Special/HTTPException.php:77
+#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77
msgid "Go back"
msgstr ""
-#: src/Content/Nav.php:125
+#: src/Content/Nav.php:126
msgid "Clear notifications"
msgstr "Puhasta teated"
-#: src/Content/Nav.php:126 src/Content/Text/HTML.php:892
-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:222 src/Module/Security/Login.php:158
+#: src/Content/Nav.php:222 src/Module/Security/Login.php:157
msgid "Logout"
msgstr "Logi välja"
@@ -1633,7 +1876,7 @@ msgid "End this session"
msgstr "Lõpeta see sessioon"
#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44
-#: src/Module/Security/Login.php:159
+#: src/Module/Security/Login.php:158
msgid "Login"
msgstr ""
@@ -1642,7 +1885,7 @@ msgid "Sign in"
msgstr "Logi sisse"
#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57
-#: src/Module/Contact.php:484
+#: src/Module/Contact.php:512
msgid "Conversations"
msgstr ""
@@ -1651,8 +1894,8 @@ msgid "Conversations you started"
msgstr ""
#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49
-#: src/Module/BaseSettings.php:100 src/Module/Contact.php:476
-#: src/Module/Contact/Profile.php:393 src/Module/Profile/Profile.php:268
+#: 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"
@@ -1671,7 +1914,7 @@ msgid "Your photos"
msgstr "Sinu fotod"
#: src/Content/Nav.php:232 src/Module/BaseProfile.php:73
-#: src/Module/BaseProfile.php:76 src/Module/Contact.php:500
+#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528
#: view/theme/frio/theme.php:235
msgid "Media"
msgstr ""
@@ -1683,7 +1926,7 @@ 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:252 view/theme/frio/theme.php:236
+#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236
#: view/theme/frio/theme.php:240
msgid "Calendar"
msgstr "Kalender"
@@ -1704,7 +1947,7 @@ msgstr "Sinu personaalsed märkmed"
msgid "Home"
msgstr "Kodu"
-#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:74
+#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73
msgid "Home Page"
msgstr "Koduleht"
@@ -1721,7 +1964,7 @@ msgstr "Loo konto"
#: 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:241
+#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240
msgid "Help"
msgstr "Abi"
@@ -1737,8 +1980,8 @@ msgstr "Rakendused"
msgid "Addon applications, utilities, games"
msgstr "Lisarakendused, utiliidid, mängud"
-#: src/Content/Nav.php:269 src/Content/Text/HTML.php:890
-#: 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 "Otsi"
@@ -1746,19 +1989,19 @@ msgstr "Otsi"
msgid "Search site content"
msgstr "Otsi lehe sisust"
-#: src/Content/Nav.php:272 src/Content/Text/HTML.php:899
+#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874
msgid "Full Text"
msgstr "Täistekst"
-#: src/Content/Nav.php:273 src/Content/Text/HTML.php:900
+#: 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:274 src/Content/Nav.php:329
-#: src/Content/Text/HTML.php:901 src/Module/BaseProfile.php:127
-#: src/Module/BaseProfile.php:130 src/Module/Contact.php:411
-#: src/Module/Contact.php:507 view/theme/frio/theme.php:243
+#: 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"
@@ -1789,7 +2032,7 @@ msgstr "Info selle friendica instantsi kohta"
#: 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:100
+#: src/Module/Tos.php:101
msgid "Terms of Service"
msgstr ""
@@ -1826,7 +2069,7 @@ msgstr "Teavitused"
msgid "See all notifications"
msgstr "Vaata kõiki teavitusi"
-#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:241
+#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244
msgid "Mark as seen"
msgstr "Märgi loetuks"
@@ -1855,7 +2098,7 @@ msgid "Manage other pages"
msgstr "Halda teisi lehti"
#: src/Content/Nav.php:327 src/Module/Admin/Addons/Details.php:114
-#: src/Module/Admin/Themes/Details.php:93 src/Module/BaseSettings.php:170
+#: 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"
@@ -1876,13 +2119,13 @@ msgstr ""
msgid "Site setup and configuration"
msgstr "Saidi seadmine ja sätted"
-#: src/Content/Nav.php:335 src/Module/BaseModeration.php:127
+#: 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/Summary.php:76
+#: 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
@@ -1902,11 +2145,11 @@ msgstr "Navigatsioon"
msgid "Site map"
msgstr "Lehekaart"
-#: 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 ""
@@ -1926,51 +2169,51 @@ msgstr "järgmine"
msgid "last"
msgstr "viimane"
-#: src/Content/Text/BBCode.php:949 src/Content/Text/BBCode.php:1811
-#: src/Content/Text/BBCode.php:1812
+#: 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:1166
+#: src/Content/Text/BBCode.php:914
#, php-format
msgid "%2$s %3$s"
msgstr ""
-#: src/Content/Text/BBCode.php:1191 src/Model/Item.php:3573
-#: src/Model/Item.php:3579 src/Model/Item.php:3580
+#: 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:1729 src/Content/Text/HTML.php:929
+#: 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:1760
+#: src/Content/Text/BBCode.php:1576
msgid "$1 wrote:"
msgstr ""
-#: src/Content/Text/BBCode.php:1816 src/Content/Text/BBCode.php:1817
+#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642
msgid "Encrypted content"
msgstr "Krüptitud sisu"
-#: src/Content/Text/BBCode.php:2044
+#: src/Content/Text/BBCode.php:1901
msgid "Invalid source protocol"
msgstr ""
-#: src/Content/Text/BBCode.php:2059
+#: src/Content/Text/BBCode.php:1920
msgid "Invalid link protocol"
msgstr ""
-#: src/Content/Text/HTML.php:807
+#: src/Content/Text/HTML.php:782
msgid "Loading more entries..."
msgstr ""
-#: src/Content/Text/HTML.php:808
+#: src/Content/Text/HTML.php:783
msgid "The end"
msgstr "Lõpp"
-#: src/Content/Text/HTML.php:884 src/Content/Widget/VCard.php:109
-#: src/Model/Profile.php:463 src/Module/Contact/Profile.php:438
+#: 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"
@@ -1997,118 +2240,130 @@ msgid_plural "%d invitations available"
msgstr[0] "%d kutset saadaval"
msgstr[1] "%d kutset saadaval"
-#: src/Content/Widget.php:78 view/theme/vier/theme.php:194
+#: src/Content/Widget.php:78 view/theme/vier/theme.php:193
msgid "Find People"
msgstr "Leia inimesi"
-#: src/Content/Widget.php:79 view/theme/vier/theme.php:195
+#: 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:81 view/theme/vier/theme.php:197
+#: 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:433
-#: src/Module/Directory.php:96 view/theme/vier/theme.php:198
+#: 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:83 src/Module/Contact/Suggestions.php:73
-#: view/theme/vier/theme.php:199
+#: view/theme/vier/theme.php:198
msgid "Friend Suggestions"
msgstr "Sõbrasoovitused"
-#: src/Content/Widget.php:84 view/theme/vier/theme.php:200
+#: src/Content/Widget.php:84 view/theme/vier/theme.php:199
msgid "Similar Interests"
msgstr "Sarnased huvid"
-#: src/Content/Widget.php:85 view/theme/vier/theme.php:201
+#: src/Content/Widget.php:85 view/theme/vier/theme.php:200
msgid "Random Profile"
msgstr "Suvaline profiil"
-#: src/Content/Widget.php:86 view/theme/vier/theme.php:202
+#: src/Content/Widget.php:86 view/theme/vier/theme.php:201
msgid "Invite Friends"
msgstr "Kutsu sõpru"
#: src/Content/Widget.php:87 src/Module/Directory.php:88
-#: view/theme/vier/theme.php:203
+#: view/theme/vier/theme.php:202
msgid "Global Directory"
msgstr "Globaalne kataloog"
-#: src/Content/Widget.php:89 view/theme/vier/theme.php:205
+#: src/Content/Widget.php:89 view/theme/vier/theme.php:204
msgid "Local Directory"
msgstr "Kohalik kataloog"
-#: src/Content/Widget.php:211 src/Model/Group.php:587
-#: src/Module/Contact.php:395 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:213
+#: src/Content/Widget.php:217
msgid "Everyone"
msgstr ""
-#: 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 "Suhted"
-#: src/Content/Widget.php:244 src/Module/Contact.php:339
-#: src/Module/Group.php:291
+#: 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:283
+#: src/Content/Widget.php:288
msgid "Protocols"
msgstr "Protokollid"
-#: src/Content/Widget.php:285
+#: src/Content/Widget.php:290
msgid "All Protocols"
msgstr "Kõik protokollid"
-#: src/Content/Widget.php:313
+#: src/Content/Widget.php:318
msgid "Saved Folders"
msgstr "Salvestatud kaustad"
-#: src/Content/Widget.php:315 src/Content/Widget.php:346
+#: src/Content/Widget.php:320 src/Content/Widget.php:351
msgid "Everything"
msgstr "Kõikvõimalik"
-#: src/Content/Widget.php:344
+#: src/Content/Widget.php:349
msgid "Categories"
msgstr "Kategooriad"
-#: 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 ühine kontakt"
msgstr[1] "%d ühine kontakt"
-#: src/Content/Widget.php:497
+#: src/Content/Widget.php:506
msgid "Archives"
msgstr "Arhiivid"
-#: src/Content/Widget.php:521
+#: src/Content/Widget.php:514
+msgid "On this date"
+msgstr ""
+
+#: src/Content/Widget.php:534
msgid "Persons"
msgstr "Isikud"
-#: src/Content/Widget.php:522
+#: src/Content/Widget.php:535
msgid "Organisations"
msgstr "Organisatsioonid"
-#: src/Content/Widget.php:523 src/Model/Contact.php:1656
+#: src/Content/Widget.php:536 src/Model/Contact.php:1698
msgid "News"
msgstr "Uudised"
-#: src/Content/Widget.php:527 src/Module/Settings/Account.php:453
+#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454
msgid "Account Types"
msgstr "Kontode tüübid"
-#: src/Content/Widget.php:528 src/Module/Moderation/BaseUsers.php:69
+#: 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 "Eksport"
@@ -2155,93 +2410,93 @@ msgstr[1] ""
msgid "More Trending Tags"
msgstr "Veel trendikaid silte"
-#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:378
-#: src/Module/Contact/Profile.php:382 src/Module/Profile/Profile.php:199
+#: 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:103 src/Model/Profile.php:379
-#: src/Module/Contact/Profile.php:384 src/Module/Profile/Profile.php:203
+#: 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: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:380
+#: 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:107 src/Model/Profile.php:476
+#: 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:111 src/Model/Contact.php:1200
-#: src/Model/Contact.php:1211 src/Model/Profile.php:465
-#: src/Module/Contact/Profile.php:430
+#: 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:269
+#: 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 "Postita meilile"
-#: 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 "Avalik"
-#: 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 "Piiratud/Privaatne"
-#: 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 "
"anywhere public."
msgstr ""
-#: src/Core/ACL.php:323
-msgid ""
-"Start typing the name of a contact or a group to show a filtered list. You "
-"can also mention the special groups \"Followers\" and \"Mutuals\"."
-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:326 src/Module/Post/Edit.php:151
+#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154
msgid "CC: email addresses"
msgstr "CC: emaili addressid"
-#: src/Core/ACL.php:327 src/Module/Post/Edit.php:157
+#: src/Core/ACL.php:328 src/Module/Post/Edit.php:160
msgid "Example: bob@example.com, mary@example.com"
msgstr ""
-#: src/Core/ACL.php:328
+#: src/Core/ACL.php:329
msgid "Connectors"
msgstr ""
@@ -2564,161 +2819,172 @@ msgstr ""
msgid "Could not connect to database."
msgstr ""
-#: src/Core/L10n.php:408 src/Model/Event.php:432
-#: src/Module/Settings/Display.php:222
+#: 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:408 src/Model/Event.php:433
-#: src/Module/Settings/Display.php:223
+#: 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:408 src/Model/Event.php:434
-#: src/Module/Settings/Display.php:224
+#: 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:408 src/Model/Event.php:435
-#: src/Module/Settings/Display.php:225
+#: 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:408 src/Model/Event.php:436
-#: src/Module/Settings/Display.php:226
+#: src/Core/L10n.php:476 src/Model/Event.php:434
+#: src/Module/Settings/Display.php:239
msgid "Friday"
msgstr "Reede"
-#: src/Core/L10n.php:408 src/Model/Event.php:437
-#: src/Module/Settings/Display.php:227
+#: 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:408 src/Model/Event.php:431
-#: src/Module/Settings/Display.php:221
+#: 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:412 src/Model/Event.php:452
+#: src/Core/L10n.php:480 src/Model/Event.php:450
msgid "January"
msgstr "Jaanuar"
-#: src/Core/L10n.php:412 src/Model/Event.php:453
+#: src/Core/L10n.php:480 src/Model/Event.php:451
msgid "February"
msgstr "Veebruar"
-#: src/Core/L10n.php:412 src/Model/Event.php:454
+#: src/Core/L10n.php:480 src/Model/Event.php:452
msgid "March"
msgstr "Märts"
-#: src/Core/L10n.php:412 src/Model/Event.php:455
+#: src/Core/L10n.php:480 src/Model/Event.php:453
msgid "April"
msgstr "Aprill"
-#: src/Core/L10n.php:412 src/Core/L10n.php:431 src/Model/Event.php:443
+#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441
msgid "May"
msgstr "Mai"
-#: src/Core/L10n.php:412 src/Model/Event.php:456
+#: src/Core/L10n.php:480 src/Model/Event.php:454
msgid "June"
msgstr "Juuni"
-#: src/Core/L10n.php:412 src/Model/Event.php:457
+#: src/Core/L10n.php:480 src/Model/Event.php:455
msgid "July"
msgstr "Juuli"
-#: src/Core/L10n.php:412 src/Model/Event.php:458
+#: src/Core/L10n.php:480 src/Model/Event.php:456
msgid "August"
msgstr "August"
-#: src/Core/L10n.php:412 src/Model/Event.php:459
+#: src/Core/L10n.php:480 src/Model/Event.php:457
msgid "September"
msgstr ""
-#: src/Core/L10n.php:412 src/Model/Event.php:460
+#: src/Core/L10n.php:480 src/Model/Event.php:458
msgid "October"
msgstr "Oktoober"
-#: src/Core/L10n.php:412 src/Model/Event.php:461
+#: src/Core/L10n.php:480 src/Model/Event.php:459
msgid "November"
msgstr ""
-#: src/Core/L10n.php:412 src/Model/Event.php:462
+#: src/Core/L10n.php:480 src/Model/Event.php:460
msgid "December"
msgstr "Detsember"
-#: src/Core/L10n.php:427 src/Model/Event.php:424
+#: src/Core/L10n.php:495 src/Model/Event.php:422
msgid "Mon"
msgstr "Esm"
-#: src/Core/L10n.php:427 src/Model/Event.php:425
+#: src/Core/L10n.php:495 src/Model/Event.php:423
msgid "Tue"
msgstr "Tei"
-#: src/Core/L10n.php:427 src/Model/Event.php:426
+#: src/Core/L10n.php:495 src/Model/Event.php:424
msgid "Wed"
msgstr "Kol"
-#: src/Core/L10n.php:427 src/Model/Event.php:427
+#: src/Core/L10n.php:495 src/Model/Event.php:425
msgid "Thu"
msgstr "Nel"
-#: src/Core/L10n.php:427 src/Model/Event.php:428
+#: src/Core/L10n.php:495 src/Model/Event.php:426
msgid "Fri"
msgstr "Ree"
-#: src/Core/L10n.php:427 src/Model/Event.php:429
+#: src/Core/L10n.php:495 src/Model/Event.php:427
msgid "Sat"
msgstr "Lau"
-#: src/Core/L10n.php:427 src/Model/Event.php:423
+#: src/Core/L10n.php:495 src/Model/Event.php:421
msgid "Sun"
msgstr "Püh"
-#: src/Core/L10n.php:431 src/Model/Event.php:439
+#: src/Core/L10n.php:499 src/Model/Event.php:437
msgid "Jan"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:440
+#: src/Core/L10n.php:499 src/Model/Event.php:438
msgid "Feb"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:441
+#: src/Core/L10n.php:499 src/Model/Event.php:439
msgid "Mar"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:442
+#: src/Core/L10n.php:499 src/Model/Event.php:440
msgid "Apr"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:444
+#: src/Core/L10n.php:499 src/Model/Event.php:442
msgid "Jun"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:445
+#: src/Core/L10n.php:499 src/Model/Event.php:443
msgid "Jul"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:446
+#: src/Core/L10n.php:499 src/Model/Event.php:444
msgid "Aug"
msgstr ""
-#: src/Core/L10n.php:431
+#: src/Core/L10n.php:499
msgid "Sep"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:448
+#: src/Core/L10n.php:499 src/Model/Event.php:446
msgid "Oct"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:449
+#: src/Core/L10n.php:499 src/Model/Event.php:447
msgid "Nov"
msgstr ""
-#: src/Core/L10n.php:431 src/Model/Event.php:450
+#: 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
@@ -2763,22 +3029,22 @@ msgid ""
" to version 2021.01 and wait until the postupdate finished version 1383."
msgstr ""
-#: src/Core/Update.php:197
+#: src/Core/Update.php:183
#, php-format
msgid "%s: executing pre update %d"
msgstr ""
-#: src/Core/Update.php:239
+#: src/Core/Update.php:225
#, php-format
msgid "%s: executing post update %d"
msgstr ""
-#: src/Core/Update.php:313
+#: src/Core/Update.php:299
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
-#: src/Core/Update.php:353
+#: src/Core/Update.php:339
#, php-format
msgid ""
"\n"
@@ -2788,16 +3054,16 @@ msgid ""
"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
msgstr ""
-#: src/Core/Update.php:359
+#: src/Core/Update.php:345
#, php-format
msgid "The error message is\\n[pre]%s[/pre]"
msgstr ""
-#: src/Core/Update.php:363 src/Core/Update.php:391
+#: src/Core/Update.php:349 src/Core/Update.php:377
msgid "[Friendica Notify] Database update"
msgstr ""
-#: src/Core/Update.php:385
+#: src/Core/Update.php:371
#, php-format
msgid ""
"\n"
@@ -2809,28 +3075,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"
@@ -2838,20 +3104,20 @@ 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:221
+#: src/Database/DBStructure.php:232
msgid "Another database update is currently running."
msgstr ""
-#: src/Database/DBStructure.php:225
+#: src/Database/DBStructure.php:236
#, php-format
msgid "%s: Database update"
msgstr ""
-#: src/Database/DBStructure.php:482
+#: src/Database/DBStructure.php:493
#, php-format
msgid "%s: updating %s table."
msgstr ""
@@ -2882,82 +3148,122 @@ msgstr ""
msgid "Legacy module file not found: %s"
msgstr ""
-#: src/Model/Contact.php:1217 src/Module/Moderation/Users/Pending.php:102
+#: 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 "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:1652
+#: src/Model/Contact.php:1694
msgid "Organisation"
msgstr "Organisatsioon"
-#: src/Model/Contact.php:1660
-msgid "Forum"
-msgstr "Foorum"
+#: src/Model/Contact.php:1702
+msgid "Group"
+msgstr ""
-#: src/Model/Contact.php:2942
+#: src/Model/Contact.php:3005
msgid "Disallowed profile URL."
msgstr "Mittelubatud profiili URL."
-#: src/Model/Contact.php:2947 src/Module/Friendica.php:83
+#: src/Model/Contact.php:3010 src/Module/Friendica.php:101
msgid "Blocked domain"
msgstr ""
-#: src/Model/Contact.php:2952
+#: src/Model/Contact.php:3015
msgid "Connect URL missing."
msgstr ""
-#: src/Model/Contact.php:2961
+#: 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:2979
+#: src/Model/Contact.php:3042
#, php-format
msgid "Expected network %s does not match actual network %s"
msgstr ""
-#: src/Model/Contact.php:2996
+#: src/Model/Contact.php:3059
msgid "The profile address specified does not provide adequate information."
msgstr ""
-#: src/Model/Contact.php:2998
+#: src/Model/Contact.php:3061
msgid "No compatible communication protocols or feeds were discovered."
msgstr ""
-#: src/Model/Contact.php:3001
+#: src/Model/Contact.php:3064
msgid "An author or name was not found."
msgstr ""
-#: src/Model/Contact.php:3004
+#: src/Model/Contact.php:3067
msgid "No browser URL could be matched to this address."
msgstr ""
-#: src/Model/Contact.php:3007
+#: src/Model/Contact.php:3070
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr ""
-#: src/Model/Contact.php:3008
+#: src/Model/Contact.php:3071
msgid "Use mailto: in front of address to force email check."
msgstr ""
-#: src/Model/Contact.php:3014
+#: 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:3019
+#: 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:3084
+#: src/Model/Contact.php:3148
msgid "Unable to retrieve contact information."
msgstr ""
@@ -2965,54 +3271,54 @@ msgstr ""
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
+#: 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:78 src/Model/Event.php:98 src/Model/Event.php:472
-#: src/Model/Event.php:944
+#: 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:421
+#: src/Model/Event.php:419
msgid "all-day"
msgstr "terve päev"
-#: src/Model/Event.php:447
+#: src/Model/Event.php:445
msgid "Sept"
msgstr ""
-#: src/Model/Event.php:464 src/Module/Calendar/Show.php:128
+#: 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:465 src/Module/Calendar/Show.php:129
-#: src/Module/Settings/Display.php:232 src/Util/Temporal.php:353
+#: 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:466 src/Module/Calendar/Show.php:130
-#: src/Module/Settings/Display.php:233 src/Util/Temporal.php:354
+#: 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:467 src/Module/Calendar/Show.php:131
-#: src/Module/Settings/Display.php:234 src/Util/Temporal.php:355
+#: 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:469
+#: src/Model/Event.php:467
msgid "No events to display"
msgstr "Pole üritusi kuvamiseks"
-#: src/Model/Event.php:518 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69
+#: 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:559 src/Module/Calendar/Event/Show.php:67
+#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67
msgid "Event not found."
msgstr ""
@@ -3044,210 +3350,166 @@ msgstr ""
msgid "g:i A"
msgstr ""
-#: src/Model/Event.php:959 src/Model/Event.php:961
+#: src/Model/Event.php:964 src/Model/Event.php:966
msgid "Show map"
msgstr "Näita kaarti"
-#: src/Model/Event.php:960
+#: src/Model/Event.php:965
msgid "Hide map"
msgstr "Peida kaart"
-#: src/Model/Event.php:1053
+#: src/Model/Event.php:1058
#, php-format
msgid "%s's birthday"
msgstr "%s sünnipäev"
-#: src/Model/Event.php:1054
+#: src/Model/Event.php:1059
#, php-format
msgid "Happy Birthday %s"
msgstr "Palju Õnne %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 "Baas turvalisuse grupp uutele kontaktidele"
-
-#: src/Model/Group.php:535
-msgid "Everybody"
-msgstr "Igaüks"
-
-#: src/Model/Group.php:554
-msgid "edit"
-msgstr "muuda"
-
-#: src/Model/Group.php:586
-msgid "add"
-msgstr "lisa"
-
-#: src/Model/Group.php:591
-msgid "Edit group"
-msgstr "Muuda gruppi"
-
-#: src/Model/Group.php:592 src/Module/Group.php:192
-msgid "Contacts not in any group"
-msgstr "Mitteüheski grupis olevad kontaktid"
-
-#: src/Model/Group.php:594
-msgid "Create a new group"
-msgstr "Loo uus grupp"
-
-#: src/Model/Group.php:595 src/Module/Group.php:177 src/Module/Group.php:200
-#: src/Module/Group.php:275
-msgid "Group Name: "
-msgstr "Grupi nimi:"
-
-#: src/Model/Group.php:596
-msgid "Edit groups"
-msgstr "Muuda gruppe"
-
-#: src/Model/Item.php:2001
+#: src/Model/Item.php:2062
#, php-format
msgid "Detected languages in this post:\\n%s"
msgstr ""
-#: src/Model/Item.php:2904
+#: src/Model/Item.php:3007
msgid "activity"
msgstr "tegevused"
-#: src/Model/Item.php:2906
+#: src/Model/Item.php:3009
msgid "comment"
msgstr ""
-#: src/Model/Item.php:2909 src/Module/Post/Tag/Add.php:123
+#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123
msgid "post"
msgstr "postitus"
-#: src/Model/Item.php:3059
+#: src/Model/Item.php:3182
#, php-format
msgid "%s is blocked"
msgstr ""
-#: src/Model/Item.php:3061
+#: src/Model/Item.php:3184
#, php-format
msgid "%s is ignored"
msgstr ""
-#: src/Model/Item.php:3063
+#: src/Model/Item.php:3186
#, php-format
msgid "Content from %s is collapsed"
msgstr ""
-#: src/Model/Item.php:3067
+#: src/Model/Item.php:3190
#, php-format
msgid "Content warning: %s"
msgstr ""
-#: src/Model/Item.php:3485
+#: src/Model/Item.php:3652
msgid "bytes"
msgstr ""
-#: src/Model/Item.php:3516
+#: 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:3518
+#: 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:3523
+#: 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:3525
+#: src/Model/Item.php:3692
#, php-format
msgid "%d voter."
msgid_plural "%d voters."
msgstr[0] ""
msgstr[1] ""
-#: src/Model/Item.php:3527
+#: src/Model/Item.php:3694
#, php-format
msgid "Poll end: %s"
msgstr ""
-#: src/Model/Item.php:3561 src/Model/Item.php:3562
+#: src/Model/Item.php:3728 src/Model/Item.php:3729
msgid "View on separate page"
msgstr "Kuva eraldi lehel"
-#: src/Model/Mail.php:136 src/Model/Mail.php:264
+#: src/Model/Mail.php:137 src/Model/Mail.php:266
msgid "[no subject]"
msgstr "[teema puudub] "
-#: src/Model/Photo.php:1189 src/Module/Media/Photo/Upload.php:198
+#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170
msgid "Wall Photos"
msgstr "Seina fotod"
-#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:283
+#: 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:363
+#: src/Model/Profile.php:361
msgid "Change profile photo"
msgstr "Muuda profiilifoto"
-#: src/Model/Profile.php:376 src/Module/Directory.php:152
+#: src/Model/Profile.php:374 src/Module/Directory.php:152
#: src/Module/Profile/Profile.php:209
msgid "Homepage:"
msgstr "Koduleht:"
-#: src/Model/Profile.php:377 src/Module/Contact/Profile.php:386
+#: 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:467
+#: src/Model/Profile.php:465
msgid "Atom feed"
msgstr ""
-#: src/Model/Profile.php:474
+#: src/Model/Profile.php:472
msgid "This website has been verified to belong to the same person."
msgstr ""
-#: src/Model/Profile.php:511
+#: src/Model/Profile.php:509
msgid "F d"
msgstr ""
-#: src/Model/Profile.php:575 src/Model/Profile.php:664
+#: src/Model/Profile.php:573 src/Model/Profile.php:662
msgid "[today]"
msgstr "[täna]"
-#: src/Model/Profile.php:584
+#: src/Model/Profile.php:582
msgid "Birthday Reminders"
msgstr "Sünnipäeva meeldetuletused"
-#: src/Model/Profile.php:585
+#: src/Model/Profile.php:583
msgid "Birthdays this week:"
msgstr "Sünnipäevad sel nädalal:"
-#: src/Model/Profile.php:613
+#: src/Model/Profile.php:611
msgid "g A l F d"
msgstr ""
-#: src/Model/Profile.php:651
+#: src/Model/Profile.php:649
msgid "[No description]"
msgstr "[kirjeldus puudub]"
-#: src/Model/Profile.php:677
+#: src/Model/Profile.php:675
msgid "Event Reminders"
msgstr "Sündmuste meeldetuletused"
-#: src/Model/Profile.php:678
+#: src/Model/Profile.php:676
msgid "Upcoming events the next 7 days:"
msgstr "Eelseisvad sündmused järgneval 7 päeval: "
@@ -3296,7 +3558,8 @@ msgstr "Mittemeeldimised:"
msgid "Title/Description:"
msgstr "Tiitel/Kirjeldus:"
-#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:221
+#: 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"
@@ -3337,145 +3600,145 @@ msgstr "Kool/Haridus"
msgid "Contact information and Social Networks"
msgstr "Kontaktinfo ja Sotsiaalvõrgustikud"
-#: src/Model/User.php:213 src/Model/User.php:1119
+#: 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:753
+#: src/Model/User.php:806
msgid "Password can't be empty"
msgstr "Parool ei saa olla tühi "
-#: src/Model/User.php:795
+#: src/Model/User.php:848
msgid "Empty passwords are not allowed."
msgstr "Tühjad paroolid pole lubatud"
-#: src/Model/User.php:799
+#: 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:803
+#: src/Model/User.php:856
msgid "The password length is limited to 72 characters."
msgstr ""
-#: src/Model/User.php:807
+#: src/Model/User.php:860
msgid "The password can't contain white spaces nor accentuated letters"
msgstr ""
-#: src/Model/User.php:1002
+#: src/Model/User.php:1069
msgid "Passwords do not match. Password unchanged."
msgstr "Paroolid ei kattu"
-#: src/Model/User.php:1009
+#: src/Model/User.php:1076
msgid "An invitation is required."
msgstr "Kutse on nõutav."
-#: src/Model/User.php:1013
+#: src/Model/User.php:1080
msgid "Invitation could not be verified."
msgstr "Kutset ei õnnestu kontrollida."
-#: src/Model/User.php:1021
+#: src/Model/User.php:1088
msgid "Invalid OpenID url"
msgstr ""
-#: src/Model/User.php:1034 src/Security/Authentication.php:241
+#: 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:1034 src/Security/Authentication.php:241
+#: src/Model/User.php:1101 src/Security/Authentication.php:241
msgid "The error message was:"
msgstr ""
-#: src/Model/User.php:1040
+#: src/Model/User.php:1107
msgid "Please enter the required information."
msgstr ""
-#: src/Model/User.php:1054
+#: 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:1061
+#: 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:1065
+#: 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:1073
+#: src/Model/User.php:1140
msgid "That doesn't appear to be your full (First Last) name."
msgstr ""
-#: src/Model/User.php:1078
+#: src/Model/User.php:1145
msgid "Your email domain is not among those allowed on this site."
msgstr ""
-#: src/Model/User.php:1082
+#: src/Model/User.php:1149
msgid "Not a valid email address."
msgstr ""
-#: src/Model/User.php:1085
+#: src/Model/User.php:1152
msgid "The nickname was blocked from registration by the nodes admin."
msgstr ""
-#: src/Model/User.php:1089 src/Model/User.php:1095
+#: src/Model/User.php:1156 src/Model/User.php:1162
msgid "Cannot use that email."
msgstr ""
-#: src/Model/User.php:1101
+#: src/Model/User.php:1168
msgid "Your nickname can only contain a-z, 0-9 and _."
msgstr ""
-#: src/Model/User.php:1109 src/Model/User.php:1166
+#: src/Model/User.php:1176 src/Model/User.php:1233
msgid "Nickname is already registered. Please choose another."
msgstr ""
-#: src/Model/User.php:1153 src/Model/User.php:1157
+#: src/Model/User.php:1220 src/Model/User.php:1224
msgid "An error occurred during registration. Please try again."
msgstr ""
-#: src/Model/User.php:1180
+#: src/Model/User.php:1247
msgid "An error occurred creating your default profile. Please try again."
msgstr ""
-#: src/Model/User.php:1187
+#: src/Model/User.php:1254
msgid "An error occurred creating your self contact. Please try again."
msgstr ""
-#: src/Model/User.php:1192
+#: src/Model/User.php:1259
msgid "Friends"
msgstr "Sõbrad"
-#: src/Model/User.php:1196
+#: 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:1235
+#: src/Model/User.php:1307
msgid "Profile Photos"
msgstr "Profiilifotod"
-#: src/Model/User.php:1428
+#: src/Model/User.php:1487
#, php-format
msgid ""
"\n"
@@ -3483,7 +3746,7 @@ msgid ""
"\t\t\tthe administrator of %2$s has set up an account for you."
msgstr ""
-#: src/Model/User.php:1431
+#: src/Model/User.php:1490
#, php-format
msgid ""
"\n"
@@ -3515,12 +3778,12 @@ msgid ""
"\t\tThank you and welcome to %4$s."
msgstr ""
-#: src/Model/User.php:1464 src/Model/User.php:1571
+#: src/Model/User.php:1523 src/Model/User.php:1630
#, php-format
msgid "Registration details for %s"
msgstr ""
-#: src/Model/User.php:1484
+#: src/Model/User.php:1543
#, php-format
msgid ""
"\n"
@@ -3535,12 +3798,12 @@ msgid ""
"\t\t"
msgstr ""
-#: src/Model/User.php:1503
+#: src/Model/User.php:1562
#, php-format
msgid "Registration at %s"
msgstr ""
-#: src/Model/User.php:1527
+#: src/Model/User.php:1586
#, php-format
msgid ""
"\n"
@@ -3549,7 +3812,7 @@ msgid ""
"\t\t\t"
msgstr ""
-#: src/Model/User.php:1535
+#: src/Model/User.php:1594
#, php-format
msgid ""
"\n"
@@ -3606,10 +3869,10 @@ msgid "Enable"
msgstr ""
#: src/Module/Admin/Addons/Details.php:111
-#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:207
-#: 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:389
-#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:220
+#: 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
@@ -3619,7 +3882,7 @@ msgstr ""
#: src/Module/Admin/Addons/Details.php:112
#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92
-#: src/Module/BaseSettings.php:134
+#: src/Module/BaseSettings.php:132
msgid "Addons"
msgstr "Lisad"
@@ -3628,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 ""
@@ -3647,13 +3910,13 @@ msgstr ""
msgid "Addon %s failed to install."
msgstr ""
-#: 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:392
+#: 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:158
-#: src/Module/Settings/Connectors.php:243
-#: src/Module/Settings/Delegation.php:169 src/Module/Settings/Display.php:247
+#: 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"
@@ -3662,7 +3925,7 @@ msgstr "Salvesta Sätted"
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 "
@@ -3704,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 ""
@@ -3734,79 +3997,81 @@ 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:73
+#: 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:147 src/Module/Admin/Federation.php:396
+#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403
msgid "unknown"
msgstr ""
-#: src/Module/Admin/Federation.php:180
+#: 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:181
+#: 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:182
+#: 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:183
+#: 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:184
+#: 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:187
+#: 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:192
+#: 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:202
+#: 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:208 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:212
+#: src/Module/Admin/Federation.php:219
#, php-format
msgid ""
"Currently this node is aware of %2$s node (%3$s active users last month, "
@@ -3824,46 +4089,53 @@ msgstr[1] ""
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:102
+#: 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 "
@@ -3886,77 +4158,77 @@ msgid ""
"is readable."
msgstr ""
-#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:104
+#: 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 "Näita kõik"
-#: 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:97 src/Module/Calendar/Event/Form.php:207
+#: 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:98
+#: 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 ""
@@ -3992,7 +4264,8 @@ msgstr ""
msgid "Job Parameters"
msgstr ""
-#: src/Module/Admin/Queue.php:78 src/Module/Settings/OAuth.php:75
+#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95
+#: src/Module/Settings/OAuth.php:74
msgid "Created"
msgstr "Loodud"
@@ -4000,269 +4273,269 @@ msgstr "Loodud"
msgid "Priority"
msgstr ""
-#: src/Module/Admin/Site.php:207
+#: src/Module/Admin/Site.php:212
#, php-format
msgid "%s is no valid input for maximum image size"
msgstr ""
-#: src/Module/Admin/Site.php:304 src/Module/Settings/Display.php:169
+#: 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:321 src/Module/Settings/Display.php:179
+#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188
#, php-format
msgid "%s - (Experimental)"
msgstr ""
-#: src/Module/Admin/Site.php:333
+#: src/Module/Admin/Site.php:342
msgid "No community page"
msgstr ""
-#: src/Module/Admin/Site.php:334
+#: src/Module/Admin/Site.php:343
msgid "No community page for visitors"
msgstr ""
-#: src/Module/Admin/Site.php:335
+#: src/Module/Admin/Site.php:344
msgid "Public postings from users of this site"
msgstr ""
-#: src/Module/Admin/Site.php:336
+#: src/Module/Admin/Site.php:345
msgid "Public postings from the federated network"
msgstr ""
-#: src/Module/Admin/Site.php:337
+#: src/Module/Admin/Site.php:346
msgid "Public postings from local users and the federated network"
msgstr ""
-#: src/Module/Admin/Site.php:343
+#: src/Module/Admin/Site.php:352
msgid "Multi user instance"
msgstr ""
-#: src/Module/Admin/Site.php:366
+#: src/Module/Admin/Site.php:375
msgid "Closed"
msgstr "Suletud"
-#: src/Module/Admin/Site.php:367
+#: src/Module/Admin/Site.php:376
msgid "Requires approval"
msgstr "Vajab heakskiitu"
-#: src/Module/Admin/Site.php:368
+#: src/Module/Admin/Site.php:377
msgid "Open"
msgstr "Avatud"
-#: src/Module/Admin/Site.php:372
+#: src/Module/Admin/Site.php:381
msgid "Don't check"
msgstr "Ära kontrolli"
-#: src/Module/Admin/Site.php:373
+#: src/Module/Admin/Site.php:382
msgid "check the stable version"
msgstr "kontrolli stabiilset versiooni"
-#: src/Module/Admin/Site.php:374
+#: src/Module/Admin/Site.php:383
msgid "check the development version"
msgstr ""
-#: src/Module/Admin/Site.php:378
+#: src/Module/Admin/Site.php:387
msgid "none"
msgstr ""
-#: src/Module/Admin/Site.php:379
+#: src/Module/Admin/Site.php:388
msgid "Local contacts"
msgstr ""
-#: src/Module/Admin/Site.php:380
+#: src/Module/Admin/Site.php:389
msgid "Interactors"
msgstr ""
-#: src/Module/Admin/Site.php:390 src/Module/BaseAdmin.php:90
+#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90
msgid "Site"
msgstr ""
-#: src/Module/Admin/Site.php:391
+#: src/Module/Admin/Site.php:400
msgid "General Information"
msgstr ""
-#: src/Module/Admin/Site.php:393
+#: src/Module/Admin/Site.php:402
msgid "Republish users to directory"
msgstr ""
-#: src/Module/Admin/Site.php:394 src/Module/Register.php:152
+#: src/Module/Admin/Site.php:403 src/Module/Register.php:152
msgid "Registration"
msgstr "Registreerimine"
-#: src/Module/Admin/Site.php:395
+#: src/Module/Admin/Site.php:404
msgid "File upload"
msgstr ""
-#: src/Module/Admin/Site.php:396
+#: src/Module/Admin/Site.php:405
msgid "Policies"
msgstr ""
-#: src/Module/Admin/Site.php:397 src/Module/Calendar/Event/Form.php:252
-#: src/Module/Contact.php:517 src/Module/Profile/Profile.php:276
+#: 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:398
+#: src/Module/Admin/Site.php:407
msgid "Auto Discovered Contact Directory"
msgstr ""
-#: src/Module/Admin/Site.php:399
+#: src/Module/Admin/Site.php:408
msgid "Performance"
msgstr ""
-#: src/Module/Admin/Site.php:400
+#: src/Module/Admin/Site.php:409
msgid "Worker"
msgstr ""
-#: src/Module/Admin/Site.php:401
+#: src/Module/Admin/Site.php:410
msgid "Message Relay"
msgstr ""
-#: src/Module/Admin/Site.php:402
+#: 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:403
+#: src/Module/Admin/Site.php:412
msgid "The system is not subscribed to any relays at the moment."
msgstr ""
-#: src/Module/Admin/Site.php:404
+#: src/Module/Admin/Site.php:413
msgid "The system is currently subscribed to the following relays:"
msgstr ""
-#: src/Module/Admin/Site.php:406
+#: src/Module/Admin/Site.php:415
msgid "Relocate Node"
msgstr ""
-#: src/Module/Admin/Site.php:407
+#: 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:408
+#: src/Module/Admin/Site.php:417
msgid "(Friendica directory)# bin/console relocate https://newdomain.com"
msgstr ""
-#: src/Module/Admin/Site.php:412
+#: src/Module/Admin/Site.php:420
msgid "Site name"
msgstr ""
-#: src/Module/Admin/Site.php:413
+#: src/Module/Admin/Site.php:421
msgid "Sender Email"
msgstr ""
-#: src/Module/Admin/Site.php:413
+#: 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:414
+#: src/Module/Admin/Site.php:422
msgid "Name of the system actor"
msgstr ""
-#: src/Module/Admin/Site.php:414
+#: 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:415
+#: src/Module/Admin/Site.php:423
msgid "Banner/Logo"
msgstr ""
-#: src/Module/Admin/Site.php:416
+#: src/Module/Admin/Site.php:424
msgid "Email Banner/Logo"
msgstr ""
-#: src/Module/Admin/Site.php:417
+#: src/Module/Admin/Site.php:425
msgid "Shortcut icon"
msgstr ""
-#: src/Module/Admin/Site.php:417
+#: src/Module/Admin/Site.php:425
msgid "Link to an icon that will be used for browsers."
msgstr ""
-#: src/Module/Admin/Site.php:418
+#: src/Module/Admin/Site.php:426
msgid "Touch icon"
msgstr ""
-#: src/Module/Admin/Site.php:418
+#: 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:419
+#: src/Module/Admin/Site.php:427
msgid "Additional Info"
msgstr "Lisainfo"
-#: src/Module/Admin/Site.php:419
+#: 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:420
+#: src/Module/Admin/Site.php:428
msgid "System language"
msgstr "Süsteemi keel"
-#: src/Module/Admin/Site.php:421
+#: src/Module/Admin/Site.php:429
msgid "System theme"
msgstr "Süsteemi teema"
-#: src/Module/Admin/Site.php:421
+#: 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:422
+#: src/Module/Admin/Site.php:430
msgid "Mobile system theme"
msgstr "Mobiilne süsttemi teema"
-#: src/Module/Admin/Site.php:422
+#: src/Module/Admin/Site.php:430
msgid "Theme for mobile devices"
msgstr "Teema mobiilseadmetele"
-#: src/Module/Admin/Site.php:423
+#: src/Module/Admin/Site.php:431
msgid "Force SSL"
msgstr ""
-#: src/Module/Admin/Site.php:423
+#: 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:424
+#: src/Module/Admin/Site.php:432
msgid "Show help entry from navigation menu"
msgstr ""
-#: src/Module/Admin/Site.php:424
+#: 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:425
+#: src/Module/Admin/Site.php:433
msgid "Single user instance"
msgstr ""
-#: src/Module/Admin/Site.php:425
+#: 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:427
+#: src/Module/Admin/Site.php:435
msgid "Maximum image size"
msgstr ""
-#: src/Module/Admin/Site.php:427
+#: 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"
@@ -4270,181 +4543,193 @@ msgid ""
"\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:431
+#: src/Module/Admin/Site.php:439
msgid "Maximum image length"
msgstr ""
-#: src/Module/Admin/Site.php:431
+#: 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:432
+#: src/Module/Admin/Site.php:440
msgid "JPEG image quality"
msgstr ""
-#: src/Module/Admin/Site.php:432
+#: 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:434
+#: src/Module/Admin/Site.php:442
msgid "Register policy"
msgstr ""
-#: src/Module/Admin/Site.php:435
+#: 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:435
+#: 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:436
+#: src/Module/Admin/Site.php:445
msgid "Register text"
msgstr ""
-#: src/Module/Admin/Site.php:436
+#: 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:437
+#: src/Module/Admin/Site.php:446
msgid "Forbidden Nicknames"
msgstr ""
-#: src/Module/Admin/Site.php:437
+#: 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:438
+#: src/Module/Admin/Site.php:447
msgid "Accounts abandoned after x days"
msgstr ""
-#: src/Module/Admin/Site.php:438
+#: 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:439
+#: src/Module/Admin/Site.php:448
msgid "Allowed friend domains"
msgstr ""
-#: src/Module/Admin/Site.php:439
+#: 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:440
+#: src/Module/Admin/Site.php:449
msgid "Allowed email domains"
msgstr ""
-#: src/Module/Admin/Site.php:440
+#: 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:441
+#: src/Module/Admin/Site.php:450
msgid "No OEmbed rich content"
msgstr ""
-#: src/Module/Admin/Site.php:441
+#: 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:442
+#: src/Module/Admin/Site.php:451
msgid "Trusted third-party domains"
msgstr ""
-#: src/Module/Admin/Site.php:442
+#: 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:443
+#: src/Module/Admin/Site.php:452
msgid "Block public"
msgstr ""
-#: src/Module/Admin/Site.php:443
+#: 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:444
+#: src/Module/Admin/Site.php:453
msgid "Force publish"
msgstr ""
-#: src/Module/Admin/Site.php:444
+#: 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:444
+#: src/Module/Admin/Site.php:453
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr ""
-#: src/Module/Admin/Site.php:445
+#: src/Module/Admin/Site.php:454
msgid "Global directory URL"
msgstr ""
-#: src/Module/Admin/Site.php:445
+#: 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:446
+#: src/Module/Admin/Site.php:455
msgid "Private posts by default for new users"
msgstr ""
-#: src/Module/Admin/Site.php:446
+#: 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:447
+#: src/Module/Admin/Site.php:456
msgid "Don't include post content in email notifications"
msgstr ""
-#: src/Module/Admin/Site.php:447
+#: 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:448
+#: src/Module/Admin/Site.php:457
msgid "Disallow public access to addons listed in the apps menu."
msgstr ""
-#: src/Module/Admin/Site.php:448
+#: 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:449
+#: src/Module/Admin/Site.php:458
msgid "Don't embed private images in posts"
msgstr ""
-#: src/Module/Admin/Site.php:449
+#: 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 "
@@ -4452,11 +4737,11 @@ msgid ""
"while."
msgstr ""
-#: src/Module/Admin/Site.php:450
+#: src/Module/Admin/Site.php:459
msgid "Explicit Content"
msgstr ""
-#: src/Module/Admin/Site.php:450
+#: 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 "
@@ -4465,267 +4750,267 @@ msgid ""
"will be shown at the user registration page."
msgstr ""
-#: src/Module/Admin/Site.php:451
+#: src/Module/Admin/Site.php:460
msgid "Proxify external content"
msgstr ""
-#: src/Module/Admin/Site.php:451
+#: 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:452
+#: src/Module/Admin/Site.php:461
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:452
+#: 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:453
+#: src/Module/Admin/Site.php:462
msgid "Allow Users to set remote_self"
msgstr ""
-#: src/Module/Admin/Site.php:453
+#: 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:454
+#: src/Module/Admin/Site.php:463
msgid "Enable multiple registrations"
msgstr ""
-#: src/Module/Admin/Site.php:454
+#: src/Module/Admin/Site.php:463
msgid "Enable users to register additional accounts for use as pages."
msgstr ""
-#: src/Module/Admin/Site.php:455
+#: src/Module/Admin/Site.php:464
msgid "Enable OpenID"
msgstr ""
-#: src/Module/Admin/Site.php:455
+#: src/Module/Admin/Site.php:464
msgid "Enable OpenID support for registration and logins."
msgstr ""
-#: src/Module/Admin/Site.php:456
+#: src/Module/Admin/Site.php:465
msgid "Enable Fullname check"
msgstr ""
-#: src/Module/Admin/Site.php:456
+#: 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:457
+#: src/Module/Admin/Site.php:466
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:457
+#: 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:458
+#: src/Module/Admin/Site.php:467
msgid "Community pages for visitors"
msgstr ""
-#: src/Module/Admin/Site.php:458
+#: 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:459
+#: src/Module/Admin/Site.php:468
msgid "Posts per user on community page"
msgstr ""
-#: src/Module/Admin/Site.php:459
+#: 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:461
+#: src/Module/Admin/Site.php:470
msgid "Enable Mail support"
msgstr ""
-#: src/Module/Admin/Site.php:461
+#: 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:462
+#: 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:463
+#: src/Module/Admin/Site.php:472
msgid "Enable OStatus support"
msgstr ""
-#: src/Module/Admin/Site.php:463
+#: 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:465
+#: 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:466
+#: src/Module/Admin/Site.php:475
msgid "Enable Diaspora support"
msgstr ""
-#: src/Module/Admin/Site.php:466
+#: src/Module/Admin/Site.php:475
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:467
+#: src/Module/Admin/Site.php:476
msgid "Verify SSL"
msgstr ""
-#: src/Module/Admin/Site.php:467
+#: 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:468
+#: src/Module/Admin/Site.php:477
msgid "Proxy user"
msgstr ""
-#: src/Module/Admin/Site.php:468
+#: src/Module/Admin/Site.php:477
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:469
+#: src/Module/Admin/Site.php:478
msgid "Proxy URL"
msgstr ""
-#: src/Module/Admin/Site.php:469
+#: 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:470
+#: src/Module/Admin/Site.php:479
msgid "Network timeout"
msgstr ""
-#: src/Module/Admin/Site.php:470
+#: src/Module/Admin/Site.php:479
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
-#: src/Module/Admin/Site.php:471
+#: src/Module/Admin/Site.php:480
msgid "Maximum Load Average"
msgstr ""
-#: src/Module/Admin/Site.php:471
+#: 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:472
+#: src/Module/Admin/Site.php:481
msgid "Minimal Memory"
msgstr ""
-#: src/Module/Admin/Site.php:472
+#: 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:473
+#: src/Module/Admin/Site.php:482
msgid "Periodically optimize tables"
msgstr ""
-#: src/Module/Admin/Site.php:473
+#: src/Module/Admin/Site.php:482
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr ""
-#: src/Module/Admin/Site.php:475
+#: src/Module/Admin/Site.php:484
msgid "Discover followers/followings from contacts"
msgstr ""
-#: src/Module/Admin/Site.php:475
+#: src/Module/Admin/Site.php:484
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr ""
-#: src/Module/Admin/Site.php:476
+#: src/Module/Admin/Site.php:485
msgid "None - deactivated"
msgstr ""
-#: src/Module/Admin/Site.php:477
+#: 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:478
+#: 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:480
+#: src/Module/Admin/Site.php:489
msgid "Synchronize the contacts with the directory server"
msgstr ""
-#: src/Module/Admin/Site.php:480
+#: 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:482
+#: src/Module/Admin/Site.php:491
msgid "Days between requery"
msgstr ""
-#: src/Module/Admin/Site.php:482
+#: 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:483
+#: src/Module/Admin/Site.php:492
msgid "Discover contacts from other servers"
msgstr ""
-#: src/Module/Admin/Site.php:483
+#: 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:484
+#: src/Module/Admin/Site.php:493
msgid "Search the local directory"
msgstr ""
-#: src/Module/Admin/Site.php:484
+#: 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:486
+#: src/Module/Admin/Site.php:495
msgid "Publish server information"
msgstr ""
-#: src/Module/Admin/Site.php:486
+#: 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 "
@@ -4733,50 +5018,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr ""
-#: src/Module/Admin/Site.php:488
+#: src/Module/Admin/Site.php:497
msgid "Check upstream version"
msgstr ""
-#: src/Module/Admin/Site.php:488
+#: 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:489
+#: src/Module/Admin/Site.php:498
msgid "Suppress Tags"
msgstr ""
-#: src/Module/Admin/Site.php:489
+#: 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:490
+#: src/Module/Admin/Site.php:499
msgid "Clean database"
msgstr ""
-#: src/Module/Admin/Site.php:490
+#: 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:491
+#: src/Module/Admin/Site.php:500
msgid "Lifespan of remote items"
msgstr ""
-#: src/Module/Admin/Site.php:491
+#: 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:492
+#: src/Module/Admin/Site.php:501
msgid "Lifespan of unclaimed items"
msgstr ""
-#: src/Module/Admin/Site.php:492
+#: 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. "
@@ -4784,144 +5069,144 @@ msgid ""
"items if set to 0."
msgstr ""
-#: src/Module/Admin/Site.php:493
+#: src/Module/Admin/Site.php:502
msgid "Lifespan of raw conversation data"
msgstr ""
-#: src/Module/Admin/Site.php:493
+#: 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:494
+#: src/Module/Admin/Site.php:503
msgid "Maximum numbers of comments per post"
msgstr ""
-#: src/Module/Admin/Site.php:494
+#: 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:495
+#: src/Module/Admin/Site.php:504
msgid "Maximum numbers of comments per post on the display page"
msgstr ""
-#: src/Module/Admin/Site.php:495
+#: 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:496
+#: src/Module/Admin/Site.php:505
msgid "Temp path"
msgstr ""
-#: src/Module/Admin/Site.php:496
+#: 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:497
+#: src/Module/Admin/Site.php:506
msgid "Only search in tags"
msgstr ""
-#: src/Module/Admin/Site.php:497
+#: 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:498
-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:498
+#: src/Module/Admin/Site.php:507
msgid ""
-"On systems with users that heavily use contact groups the query can be very "
-"expensive."
+"On systems with users that heavily use contact circles the query can be very"
+" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:509
msgid "Maximum number of parallel workers"
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: 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:501
+#: src/Module/Admin/Site.php:510
msgid "Enable fastlane"
msgstr ""
-#: src/Module/Admin/Site.php:501
+#: 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:503
+#: src/Module/Admin/Site.php:512
msgid "Direct relay transfer"
msgstr ""
-#: src/Module/Admin/Site.php:503
+#: 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:504
+#: src/Module/Admin/Site.php:513
msgid "Relay scope"
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: 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:504 src/Module/Contact/Profile.php:287
+#: 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:504
+#: src/Module/Admin/Site.php:513
msgid "all"
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:513
msgid "tags"
msgstr ""
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:514
msgid "Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:514
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:515
msgid "Deny Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:515
msgid "Comma separated list of tags that are rejected."
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:516
msgid "Allow user tags"
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: 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:510
+#: src/Module/Admin/Site.php:519
msgid "Start Relocation"
msgstr ""
@@ -4967,7 +5252,13 @@ 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 ""
@@ -5071,51 +5362,40 @@ msgid ""
"href=\"%s\">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
+#: 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:180
+#: 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:188
+#: 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:199
+#: src/Module/Admin/Summary.php:175
msgid "Message queues"
msgstr ""
-#: src/Module/Admin/Summary.php:205
+#: src/Module/Admin/Summary.php:181
msgid "Server Settings"
msgstr "Serveri sätted"
-#: src/Module/Admin/Summary.php:223
+#: src/Module/Admin/Summary.php:199
msgid "Version"
msgstr "Versioon"
-#: src/Module/Admin/Summary.php:227
+#: src/Module/Admin/Summary.php:203
msgid "Active addons"
msgstr "Aktiveeritud lisad"
@@ -5155,16 +5435,16 @@ 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 ""
@@ -5268,11 +5548,11 @@ msgstr "Elementi ei leitud."
msgid "Please login to continue."
msgstr "Jätkamiseks logi sisse"
-#: src/Module/BaseAdmin.php:63 src/Module/BaseModeration.php:86
+#: src/Module/BaseAdmin.php:63
msgid "You don't have access to administration pages."
msgstr ""
-#: src/Module/BaseAdmin.php:67 src/Module/BaseModeration.php:90
+#: src/Module/BaseAdmin.php:67
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
@@ -5282,11 +5562,11 @@ msgstr ""
msgid "Overview"
msgstr "Ülevaade"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:111
+#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
msgid "Configuration"
msgstr "Konfiguratsioon"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:112
+#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
msgid "Additional features"
msgstr "Lisafunktsioonid"
@@ -5306,7 +5586,7 @@ msgstr ""
msgid "Inspect worker Queue"
msgstr ""
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:119
+#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
msgid "Diagnostics"
msgstr ""
@@ -5334,23 +5614,23 @@ msgstr ""
msgid "Addon Features"
msgstr ""
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:128
+#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
msgid "User registrations waiting for confirmation"
msgstr ""
-#: src/Module/BaseApi.php:266 src/Module/BaseApi.php:282
-#: src/Module/BaseApi.php:298
+#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467
+#: src/Module/BaseApi.php:483
msgid "Too Many Requests"
msgstr ""
-#: src/Module/BaseApi.php:267
+#: 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:283
+#: src/Module/BaseApi.php:468
#, php-format
msgid "Weekly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -5358,7 +5638,7 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: src/Module/BaseApi.php:299
+#: src/Module/BaseApi.php:484
#, php-format
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -5366,32 +5646,46 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: src/Module/BaseModeration.php:112 src/Module/Moderation/Users/Index.php:148
+#: 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:114
+#: src/Module/BaseModeration.php:115
msgid "Tools"
msgstr "Tööriistad"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:116
msgid "Contact Blocklist"
msgstr ""
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:117
msgid "Server Blocklist"
msgstr ""
-#: src/Module/BaseModeration.php:117 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
msgid "Delete Item"
msgstr "Kustuta element"
-#: src/Module/BaseModeration.php:120 src/Module/Moderation/Item/Source.php:76
+#: 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:479
+#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507
msgid "Profile Details"
msgstr "Profiili detailid"
@@ -5403,7 +5697,7 @@ msgstr ""
msgid "Only You Can See This"
msgstr "Ainult Sina saad seda näha"
-#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:82
+#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81
msgid "Scheduled Posts"
msgstr "Ajastatud postitused"
@@ -5415,50 +5709,67 @@ msgstr "Avaldamiseks ajastatud postitused"
msgid "Tips for New Members"
msgstr "Näpunäiteid uutele liikmetele"
-#: src/Module/BaseSearch.php:69
+#: src/Module/BaseSearch.php:71
#, php-format
msgid "People Search - %s"
msgstr "Inimeste otsing - %s"
-#: src/Module/BaseSearch.php:79
+#: src/Module/BaseSearch.php:75
#, php-format
-msgid "Forum Search - %s"
-msgstr "Foorumi otsing - %s"
+msgid "Group Search - %s"
+msgstr ""
-#: src/Module/BaseSearch.php:119 src/Module/Contact/MatchInterests.php:139
+#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139
msgid "No matches"
msgstr "Pole kattuvusi"
-#: src/Module/BaseSettings.php:80
+#: 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:87 src/Module/Security/TwoFactor/Verify.php:96
+#: 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:120
+#: src/Module/BaseSettings.php:118
msgid "Display"
msgstr "Kuva"
-#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:202
+#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204
msgid "Social Networks"
msgstr "Sotsiaalvõrgud"
-#: src/Module/BaseSettings.php:141 src/Module/Settings/Delegation.php:170
+#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172
msgid "Manage Accounts"
msgstr "Halda kontosid"
-#: src/Module/BaseSettings.php:148
+#: src/Module/BaseSettings.php:146
msgid "Connected apps"
msgstr "Ühendatud rakendused"
-#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:98
+#: 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:162
+#: src/Module/BaseSettings.php:167
msgid "Remove account"
msgstr "Eemalda konto"
@@ -5578,10 +5889,113 @@ msgstr "Vaade"
msgid "Create New Event"
msgstr "Loo uus sündmus"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:235
+#: 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."
@@ -5589,159 +6003,146 @@ msgid_plural "%d contacts edited."
msgstr[0] "%d kontakt muudetud. "
msgstr[1] "%d kontakti muudetud. "
-#: src/Module/Contact.php:342
+#: src/Module/Contact.php:348
msgid "Show all contacts"
msgstr "Kuva kõiki kontakte"
-#: src/Module/Contact.php:347 src/Module/Contact.php:415
+#: src/Module/Contact.php:353 src/Module/Contact.php:432
#: src/Module/Moderation/BaseUsers.php:85
msgid "Pending"
msgstr "Ootel"
-#: src/Module/Contact.php:350
+#: src/Module/Contact.php:356
msgid "Only show pending contacts"
msgstr "Näita ainult ootel kontakte"
-#: src/Module/Contact.php:355 src/Module/Contact.php:416
+#: src/Module/Contact.php:361 src/Module/Contact.php:435
#: src/Module/Moderation/BaseUsers.php:93
msgid "Blocked"
msgstr "Blokeeritud"
-#: src/Module/Contact.php:358
+#: src/Module/Contact.php:364
msgid "Only show blocked contacts"
msgstr "Näita ainult blokeeritud kontakte"
-#: src/Module/Contact.php:363 src/Module/Contact.php:418
-#: src/Object/Post.php:344
+#: 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:366
+#: src/Module/Contact.php:372
msgid "Only show ignored contacts"
msgstr "Näita ainult ignoreeritud kontakte"
-#: src/Module/Contact.php:371 src/Module/Contact.php:419
+#: src/Module/Contact.php:377 src/Module/Contact.php:444
msgid "Collapsed"
msgstr ""
-#: src/Module/Contact.php:374
+#: src/Module/Contact.php:380
msgid "Only show collapsed contacts"
msgstr ""
-#: src/Module/Contact.php:379 src/Module/Contact.php:420
+#: src/Module/Contact.php:385 src/Module/Contact.php:447
msgid "Archived"
msgstr "Arhiveeritud"
-#: src/Module/Contact.php:382
+#: src/Module/Contact.php:388
msgid "Only show archived contacts"
msgstr "Näita ainult arhiveeritud kontakte"
-#: src/Module/Contact.php:387 src/Module/Contact.php:417
+#: src/Module/Contact.php:393 src/Module/Contact.php:438
msgid "Hidden"
msgstr "Peidetud"
-#: src/Module/Contact.php:390
+#: src/Module/Contact.php:396
msgid "Only show hidden contacts"
msgstr "Näita ainult peidetud kontakte"
-#: src/Module/Contact.php:398
-msgid "Organize your contact groups"
-msgstr "Organiseeri oma kontaktgruppe"
+#: src/Module/Contact.php:404
+msgid "Organize your contact circles"
+msgstr ""
-#: src/Module/Contact.php:431
+#: src/Module/Contact.php:459
msgid "Search your contacts"
msgstr "Otsi oma kontakte"
-#: src/Module/Contact.php:432 src/Module/Search/Index.php:207
+#: src/Module/Contact.php:460 src/Module/Search/Index.php:207
#, php-format
msgid "Results for: %s"
msgstr "Tulemused: %s "
-#: src/Module/Contact.php:439
+#: src/Module/Contact.php:467
msgid "Update"
msgstr "Uuenda"
-#: src/Module/Contact.php:440 src/Module/Contact/Profile.php:478
+#: 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:441 src/Module/Contact/Profile.php:486
+#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519
msgid "Unignore"
msgstr "Äraignoreeri"
-#: src/Module/Contact.php:442 src/Module/Contact/Profile.php:494
+#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527
msgid "Uncollapse"
msgstr ""
-#: src/Module/Contact.php:444
+#: src/Module/Contact.php:472
msgid "Batch Actions"
msgstr "Multitegevused"
-#: src/Module/Contact.php:487
+#: src/Module/Contact.php:515
msgid "Conversations started by this contact"
msgstr "Selle kontakti alustatud vestlused"
-#: src/Module/Contact.php:492
+#: src/Module/Contact.php:520
msgid "Posts and Comments"
msgstr "Postitused ja Kommentaarid"
-#: src/Module/Contact.php:495
+#: src/Module/Contact.php:523
msgid "Individual Posts and Replies"
msgstr ""
-#: src/Module/Contact.php:503
+#: src/Module/Contact.php:531
msgid "Posts containing media objects"
msgstr ""
-#: src/Module/Contact.php:510
+#: src/Module/Contact.php:539
msgid "View all known contacts"
msgstr ""
-#: src/Module/Contact.php:520
+#: src/Module/Contact.php:550
msgid "Advanced Contact Settings"
msgstr "Täiendavad Kontakti sätted"
-#: src/Module/Contact.php:556
+#: src/Module/Contact.php:586
msgid "Mutual Friendship"
msgstr "Ühine sõprus"
-#: src/Module/Contact.php:560
+#: src/Module/Contact.php:590
msgid "is a fan of yours"
msgstr ""
-#: src/Module/Contact.php:564
+#: src/Module/Contact.php:594
msgid "you are a fan of"
msgstr ""
-#: src/Module/Contact.php:582
+#: src/Module/Contact.php:612
msgid "Pending outgoing contact request"
msgstr "Ootel väljuv kontaktitaotlus"
-#: src/Module/Contact.php:584
+#: src/Module/Contact.php:614
msgid "Pending incoming contact request"
msgstr "Ootel sisenev kontaktitaotlus"
-#: src/Module/Contact.php:597 src/Module/Contact/Profile.php:347
+#: 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: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
-#: src/Module/Group.php:97 src/Module/Group.php:106
-msgid "Contact not found."
-msgstr "Kontakti ei leitud."
-
#: src/Module/Contact/Advanced.php:99
msgid "Contact update failed."
msgstr "Kontakti uuendamine nurjus."
@@ -5752,13 +6153,14 @@ 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:71
+#: 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:73
+#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72
msgid "Name"
msgstr "Nimi"
@@ -5778,11 +6180,6 @@ msgstr ""
msgid "New photo from this URL"
msgstr ""
-#: src/Module/Contact/Contacts.php:66 src/Module/Conversation/Network.php:189
-#: src/Module/Group.php:101
-msgid "Invalid contact."
-msgstr "Mittevaliidne kontakt."
-
#: src/Module/Contact/Contacts.php:89
msgid "No known contacts."
msgstr ""
@@ -5791,28 +6188,28 @@ msgstr ""
msgid "No common contacts."
msgstr ""
-#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:132
+#: 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:135
+#: 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:138
+#: 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:140
+#: 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 ""
@@ -5831,15 +6228,15 @@ msgid ""
"contacts (follow, comment or likes on public posts)."
msgstr ""
-#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:146
+#: 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:69 src/Module/Contact/Redir.php:62
-#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:194
+#: 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
@@ -5848,71 +6245,72 @@ msgstr[1] ""
msgid "Access denied."
msgstr "Ligipääs keelatud."
-#: src/Module/Contact/Follow.php:104 src/Module/Contact/Unfollow.php:125
+#: 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:114
+#: src/Module/Contact/Follow.php:115
msgid "You already added this contact."
msgstr "Te juba lisasite selle kontakti."
-#: src/Module/Contact/Follow.php:129
+#: 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:137
+#: 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:142
+#: 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:167 src/Module/Profile/RemoteFollow.php:132
+#: 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:168 src/Module/Contact/Unfollow.php:123
+#: 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:169 src/Module/Contact/Profile.php:376
+#: 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:170 src/Module/Contact/Profile.php:388
+#: 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:181
+#: src/Module/Contact/Follow.php:182
#, php-format
msgid "%s knows you"
msgstr ""
-#: src/Module/Contact/Follow.php:182
+#: src/Module/Contact/Follow.php:183
msgid "Add a personal note:"
msgstr "Lisa personaalne teade:"
-#: src/Module/Contact/Follow.php:191 src/Module/Contact/Unfollow.php:138
+#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138
msgid "Posts and Replies"
msgstr ""
-#: src/Module/Contact/Follow.php:220
+#: 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:79
-#: src/Module/Media/Attachment/Upload.php:84
-#: src/Module/Media/Photo/Upload.php:83 src/Module/Media/Photo/Upload.php:88
-#: src/Module/Media/Photo/Upload.php:137
+#: 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 ""
@@ -5924,248 +6322,312 @@ msgstr ""
msgid "Profile Match"
msgstr ""
-#: src/Module/Contact/Profile.php:128
+#: src/Module/Contact/Profile.php:140
msgid "Failed to update contact record."
msgstr "Kontakti andmete uuendamine ebaõnnestus."
-#: src/Module/Contact/Profile.php:178
+#: src/Module/Contact/Profile.php:190
msgid "Contact has been unblocked"
msgstr "Kontakti blokeering tühistatud"
-#: src/Module/Contact/Profile.php:182
+#: src/Module/Contact/Profile.php:194
msgid "Contact has been blocked"
msgstr "Kontakt blokeeritud"
-#: src/Module/Contact/Profile.php:194
+#: src/Module/Contact/Profile.php:206
msgid "Contact has been unignored"
msgstr "Kontakti ei ignoreerita enam"
-#: src/Module/Contact/Profile.php:198
+#: src/Module/Contact/Profile.php:210
msgid "Contact has been ignored"
msgstr "Kontakti ignoreeritakse"
-#: src/Module/Contact/Profile.php:210
+#: src/Module/Contact/Profile.php:222
msgid "Contact has been uncollapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:214
+#: src/Module/Contact/Profile.php:226
msgid "Contact has been collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:243
+#: 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:244
+#: src/Module/Contact/Profile.php:255
#, php-format
msgid "You are sharing with %s"
msgstr "Sa jagad %s ga"
-#: src/Module/Contact/Profile.php:245
+#: src/Module/Contact/Profile.php:256
#, php-format
msgid "%s is sharing with you"
msgstr "%s jagab sinuga"
-#: src/Module/Contact/Profile.php:261
+#: 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:263
+#: 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:266
+#: src/Module/Contact/Profile.php:288
msgid "(Update was not successful)"
msgstr "(Uuendus ei õnnestunud)"
-#: src/Module/Contact/Profile.php:266
+#: src/Module/Contact/Profile.php:288
msgid "(Update was successful)"
msgstr "(Uuendus õnnestus)"
-#: src/Module/Contact/Profile.php:268 src/Module/Contact/Profile.php:449
+#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482
msgid "Suggest friends"
msgstr "Soovita sõpru"
-#: src/Module/Contact/Profile.php:272
+#: src/Module/Contact/Profile.php:294
#, php-format
msgid "Network type: %s"
msgstr "Võrgutüüp: %s "
-#: src/Module/Contact/Profile.php:277
+#: src/Module/Contact/Profile.php:299
msgid "Communications lost with this contact!"
msgstr "Suhtlus selle kontaktiga katkes! "
-#: src/Module/Contact/Profile.php:283
+#: src/Module/Contact/Profile.php:305
msgid "Fetch further information for feeds"
msgstr ""
-#: src/Module/Contact/Profile.php:285
+#: 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:288
+#: src/Module/Contact/Profile.php:310
msgid "Fetch information"
msgstr ""
-#: src/Module/Contact/Profile.php:289
+#: src/Module/Contact/Profile.php:311
msgid "Fetch keywords"
msgstr ""
-#: src/Module/Contact/Profile.php:290
+#: src/Module/Contact/Profile.php:312
msgid "Fetch information and keywords"
msgstr ""
-#: src/Module/Contact/Profile.php:300 src/Module/Contact/Profile.php:305
-#: src/Module/Contact/Profile.php:310 src/Module/Contact/Profile.php:316
+#: 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:301 src/Module/Contact/Profile.php:311
-#: src/Module/Contact/Profile.php:317
+#: 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:306 src/Module/Contact/Profile.php:312
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334
msgid "Native reshare"
msgstr ""
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:353
msgid "Contact Information / Notes"
msgstr "Kontaktinfo/Märkmed"
-#: src/Module/Contact/Profile.php:330
+#: src/Module/Contact/Profile.php:354
msgid "Contact Settings"
msgstr "Kontakti sätted"
-#: src/Module/Contact/Profile.php:338
+#: src/Module/Contact/Profile.php:362
msgid "Contact"
msgstr "Kontakt"
-#: src/Module/Contact/Profile.php:342
+#: src/Module/Contact/Profile.php:366
msgid "Their personal note"
msgstr "Nende personaalne märge"
-#: src/Module/Contact/Profile.php:344
+#: src/Module/Contact/Profile.php:368
msgid "Edit contact notes"
msgstr "Muuda kontakti märkmeid"
-#: src/Module/Contact/Profile.php:348
+#: src/Module/Contact/Profile.php:372
msgid "Block/Unblock contact"
msgstr "Blokeeri/Vabasta kontakt"
-#: src/Module/Contact/Profile.php:349
+#: src/Module/Contact/Profile.php:373
+#: src/Module/Moderation/Report/Create.php:293
msgid "Ignore contact"
msgstr "Ignoreeri kontakti"
-#: src/Module/Contact/Profile.php:350
+#: src/Module/Contact/Profile.php:374
msgid "View conversations"
msgstr "Kuva vestlusi"
-#: src/Module/Contact/Profile.php:355
+#: src/Module/Contact/Profile.php:379
msgid "Last update:"
msgstr "Viimane uuendus:"
-#: src/Module/Contact/Profile.php:357
+#: src/Module/Contact/Profile.php:381
msgid "Update public posts"
msgstr "Uuenda avalikke postitusi"
-#: src/Module/Contact/Profile.php:359 src/Module/Contact/Profile.php:459
+#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492
msgid "Update now"
msgstr "Uuenda nüüd"
-#: src/Module/Contact/Profile.php:361
+#: src/Module/Contact/Profile.php:385
msgid "Awaiting connection acknowledge"
msgstr ""
-#: src/Module/Contact/Profile.php:362
+#: src/Module/Contact/Profile.php:386
msgid "Currently blocked"
msgstr "Hetkel blokitud"
-#: src/Module/Contact/Profile.php:363
+#: src/Module/Contact/Profile.php:387
msgid "Currently ignored"
msgstr "Hetkel ingnoreeritud"
-#: src/Module/Contact/Profile.php:364
+#: src/Module/Contact/Profile.php:388
msgid "Currently collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:365
+#: src/Module/Contact/Profile.php:389
msgid "Currently archived"
msgstr "Hetkel arhiveeritud"
-#: src/Module/Contact/Profile.php:368
+#: 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:368
+#: 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:369
+#: src/Module/Contact/Profile.php:395
msgid "Notification for new posts"
msgstr "Teavitus uutest postitustest"
-#: src/Module/Contact/Profile.php:369
+#: 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:371
+#: src/Module/Contact/Profile.php:397
msgid "Keyword Deny List"
msgstr ""
-#: src/Module/Contact/Profile.php:371
+#: 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:389
+#: src/Module/Contact/Profile.php:415
#: src/Module/Settings/TwoFactor/Index.php:139
msgid "Actions"
msgstr "Tegevused"
-#: src/Module/Contact/Profile.php:391
+#: 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:397
+#: src/Module/Contact/Profile.php:423
msgid "Mirror postings from this contact"
msgstr ""
-#: src/Module/Contact/Profile.php:399
+#: 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:469
+#: 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:480
+#: src/Module/Contact/Profile.php:513
msgid "Toggle Blocked status"
msgstr "Vaheta Bloki staatust"
-#: src/Module/Contact/Profile.php:488
+#: src/Module/Contact/Profile.php:521
msgid "Toggle Ignored status"
msgstr "Vahea Ignoreeritud staatust"
-#: src/Module/Contact/Profile.php:496
+#: src/Module/Contact/Profile.php:529
msgid "Toggle Collapsed status"
msgstr ""
-#: src/Module/Contact/Profile.php:503 src/Module/Contact/Revoke.php:106
+#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106
msgid "Revoke Follow"
msgstr ""
-#: src/Module/Contact/Profile.php:505
+#: src/Module/Contact/Profile.php:538
msgid "Revoke the follow from this contact"
msgstr ""
@@ -6177,10 +6639,6 @@ msgstr ""
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 ""
@@ -6228,102 +6686,54 @@ msgstr ""
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr ""
-#: src/Module/Conversation/Community.php:74
+#: 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/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:87
-msgid "Local Community"
-msgstr "Kohalik kogukond"
-
-#: src/Module/Conversation/Community.php:90
-msgid "Posts from local users on this server"
-msgstr "Selle kohaliku serveri kasutajate postitused"
-
-#: src/Module/Conversation/Community.php:98
-msgid "Global Community"
-msgstr "Globaalne kogukond"
-
-#: src/Module/Conversation/Community.php:101
-msgid "Posts from users of the whole federated network"
-msgstr "Terve fõderatsiooni võrgu kasutajate postitused"
-
-#: 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 "Pole tulemusi."
-
-#: src/Module/Conversation/Community.php:212
+#: src/Module/Conversation/Community.php:179
msgid "Community option not available."
msgstr "Kogukondlik valik pole saadaval. "
-#: src/Module/Conversation/Community.php:228
+#: src/Module/Conversation/Community.php:195
msgid "Not available."
msgstr "Pole saadaval."
-#: src/Module/Conversation/Network.php:175
-msgid "No such group"
-msgstr "Sellist gruppi pole"
+#: src/Module/Conversation/Network.php:218
+msgid "No such circle"
+msgstr ""
-#: src/Module/Conversation/Network.php:179
+#: src/Module/Conversation/Network.php:222
#, php-format
-msgid "Group: %s"
-msgstr "Grupp: %s "
-
-#: src/Module/Conversation/Network.php:257
-msgid "Latest Activity"
-msgstr "Viimased tegevused"
-
-#: src/Module/Conversation/Network.php:260
-msgid "Sort by latest activity"
-msgstr "Sorteeri hiljutiste tegevuste järgi"
-
-#: src/Module/Conversation/Network.php:265
-msgid "Latest Posts"
-msgstr "Viimased postitused"
-
-#: src/Module/Conversation/Network.php:268
-msgid "Sort by post received date"
+msgid "Circle: %s"
msgstr ""
-#: src/Module/Conversation/Network.php:273
-msgid "Latest Creation"
-msgstr "Viimati loodud"
-
-#: src/Module/Conversation/Network.php:276
-msgid "Sort by post creation date"
+#: src/Module/Conversation/Network.php:317
+msgid "Network feed not available."
msgstr ""
-#: src/Module/Conversation/Network.php:281
-#: src/Module/Settings/Profile/Index.php:236
-msgid "Personal"
-msgstr "Isiklik"
+#: src/Module/Conversation/Timeline.php:158
+msgid "Own Contacts"
+msgstr ""
-#: src/Module/Conversation/Network.php:284
-msgid "Posts that mention or involve you"
-msgstr "Postitused, mis mainivad või puudutavad sind"
+#: src/Module/Conversation/Timeline.php:162
+msgid "Include"
+msgstr ""
-#: src/Module/Conversation/Network.php:289 src/Object/Post.php:356
-msgid "Starred"
-msgstr "Tähega märgitud"
-
-#: src/Module/Conversation/Network.php:292
-msgid "Favourite Posts"
-msgstr "Lemmikpostitused"
+#: src/Module/Conversation/Timeline.php:163
+msgid "Hide"
+msgstr ""
#: src/Module/Credits.php:44
msgid "Credits"
@@ -6541,7 +6951,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:144
+#: src/Module/Settings/Profile/Index.php:177
msgid "You must be logged in to use this module"
msgstr "Selle mooduli kasutamiseks tuleb sisse logida"
@@ -6670,138 +7080,58 @@ msgstr "Soovita sõpru"
msgid "Suggest a friend for %s"
msgstr "Soovita kasutaja %s -le sõpra. "
-#: src/Module/Friendica.php:64
+#: src/Module/Friendica.php:82
msgid "Installed addons/apps:"
msgstr ""
-#: src/Module/Friendica.php:69
+#: src/Module/Friendica.php:87
msgid "No installed addons/apps"
msgstr ""
-#: src/Module/Friendica.php:74
+#: src/Module/Friendica.php:92
#, php-format
msgid "Read about the Terms of Service of this node."
msgstr ""
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:99
msgid "On this server the following remote servers are blocked."
msgstr ""
-#: 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 ""
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:104
msgid "Download this list in CSV format"
msgstr ""
-#: src/Module/Friendica.php:100
+#: 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:105
+#: src/Module/Friendica.php:123
msgid ""
"Please visit Friendi.ca to learn more "
"about the Friendica project."
msgstr ""
-#: src/Module/Friendica.php:106
+#: src/Module/Friendica.php:124
msgid "Bug reports and issues: please visit"
msgstr ""
-#: src/Module/Friendica.php:106
+#: src/Module/Friendica.php:124
msgid "the bugtracker at github"
msgstr ""
-#: src/Module/Friendica.php:107
+#: 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 "Ei õnnestunud gruppi luua."
-
-#: src/Module/Group.php:67 src/Module/Group.php:213 src/Module/Group.php:237
-msgid "Group not found."
-msgstr "Gruppi ei leitud."
-
-#: 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 "Salvesta grupp"
-
-#: src/Module/Group.php:170
-msgid "Filter"
-msgstr ""
-
-#: src/Module/Group.php:176
-msgid "Create a group of contacts/friends."
-msgstr "Loo grupp kontaktidest/sõpradest."
-
-#: src/Module/Group.php:218
-msgid "Unable to remove group."
-msgstr "Ei saa gruppi eemaldada."
-
-#: src/Module/Group.php:269
-msgid "Delete Group"
-msgstr "Kustuta grupp"
-
-#: src/Module/Group.php:279
-msgid "Edit Group Name"
-msgstr "Muud grupi nime"
-
-#: src/Module/Group.php:289
-msgid "Members"
-msgstr "Liikmed"
-
-#: src/Module/Group.php:292
-msgid "Group is empty"
-msgstr "Grupp on tühi"
-
-#: src/Module/Group.php:305
-msgid "Remove contact from group"
-msgstr "Eemalda kontakt grupist"
-
-#: src/Module/Group.php:326
-msgid "Click on a contact to add or remove."
-msgstr "Lisamiseks või eemaldamiseks klõpsa kontaktil."
-
-#: src/Module/Group.php:340
-msgid "Add contact to group"
-msgstr "Lisa kontakt gruppi"
-
#: src/Module/HCard.php:45
msgid "No profile"
msgstr "Profiili ei ole"
@@ -7093,30 +7423,26 @@ msgstr "Koosta uus postitus"
msgid "Visibility"
msgstr "Nähtavus"
-#: 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/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 ""
@@ -7155,37 +7481,30 @@ msgstr "Failid"
msgid "Upload"
msgstr "Lae üles"
-#: src/Module/Media/Attachment/Upload.php:99
+#: 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:99
+#: src/Module/Media/Attachment/Upload.php:97
msgid "Or - did you try to upload an empty file?"
msgstr ""
-#: src/Module/Media/Attachment/Upload.php:106
+#: src/Module/Media/Attachment/Upload.php:104
#, php-format
msgid "File exceeds size limit of %s"
msgstr ""
-#: src/Module/Media/Attachment/Upload.php:116
+#: src/Module/Media/Attachment/Upload.php:114
msgid "File upload failed."
msgstr "Faili üleslaadimine nurjus."
-#: src/Module/Media/Photo/Upload.php:154 src/Module/Media/Photo/Upload.php:155
+#: 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:188 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/Media/Photo/Upload.php:206 src/Module/Profile/Photos.php:243
+#: 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."
@@ -7218,41 +7537,41 @@ msgstr ""
msgid "List of pending user deletions"
msgstr ""
-#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:491
+#: 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:498
+#: 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:505
-msgid "Public Forum"
-msgstr "Avalik foorum"
+#: 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:512
+#: 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 Forum"
-msgstr "Privaatne foorum"
+msgid "Private Group"
+msgstr ""
-#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:463
+#: 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:470
+#: 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:477
+#: 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:484
-msgid "Community Forum"
-msgstr "Kogukonna foorum"
+#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485
+msgid "Community Group"
+msgstr ""
#: src/Module/Moderation/BaseUsers.php:130
msgid "Relay"
@@ -7308,6 +7627,7 @@ 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"
@@ -7381,6 +7701,8 @@ 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 ""
@@ -7663,6 +7985,237 @@ msgstr ""
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"
@@ -7672,8 +8225,8 @@ msgid "Automatic Follower Account"
msgstr "Automaatse jälgija konto"
#: src/Module/Moderation/Summary.php:55
-msgid "Public Forum Account"
-msgstr "Avaliku foorumi konto"
+msgid "Public Group Account"
+msgstr ""
#: src/Module/Moderation/Summary.php:56
msgid "Automatic Friend Account"
@@ -7684,8 +8237,8 @@ msgid "Blog Account"
msgstr "Blogikonto"
#: src/Module/Moderation/Summary.php:58
-msgid "Private Forum Account"
-msgstr "Privaatfoorumi konto"
+msgid "Private Group Account"
+msgstr ""
#: src/Module/Moderation/Summary.php:78
msgid "Registered users"
@@ -7827,19 +8380,19 @@ msgstr ""
msgid "Add User"
msgstr "Lisa kasutaja"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:70
msgid "Name of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:71
msgid "Nickname"
msgstr ""
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:71
msgid "Nickname of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:73
+#: src/Module/Moderation/Users/Create.php:72
msgid "Email address of the new user."
msgstr ""
@@ -7985,11 +8538,11 @@ msgstr "Kodu teavitused"
msgid "Show unread"
msgstr "Näita lugemata"
-#: src/Module/Notifications/Ping.php:245
+#: src/Module/Notifications/Ping.php:246
msgid "{0} requested registration"
msgstr "{0} taotleb registreerimist"
-#: src/Module/Notifications/Ping.php:254
+#: src/Module/Notifications/Ping.php:255
#, php-format
msgid "{0} and %d others requested registration"
msgstr ""
@@ -8008,7 +8561,7 @@ msgstr ""
msgid "Unsupported or missing response type"
msgstr ""
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:77
+#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78
msgid "Incomplete request data"
msgstr ""
@@ -8019,11 +8572,11 @@ 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:104
+#: src/Module/OAuth/Token.php:108
msgid "Unsupported or missing grant type"
msgstr ""
@@ -8092,67 +8645,77 @@ msgstr "ignoreeritud"
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 "Kaugturvainfo pole kättesaadav."
-#: src/Module/PermissionTooltip.php:116
+#: src/Module/PermissionTooltip.php:121
msgid "Visible to:"
msgstr "Nähtav: "
-#: 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:129
+#: 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:154
+#: src/Module/Photo.php:155
#, php-format
msgid "The Photo with id %s is not available."
msgstr ""
-#: src/Module/Photo.php:191
+#: src/Module/Photo.php:192
#, php-format
msgid "Invalid external resource with url %s."
msgstr ""
-#: src/Module/Photo.php:193
+#: src/Module/Photo.php:194
#, php-format
msgid "Invalid photo with id %s."
msgstr ""
@@ -8165,23 +8728,23 @@ msgstr ""
msgid "Edit post"
msgstr "Muuda postitust"
-#: src/Module/Post/Edit.php:133
+#: src/Module/Post/Edit.php:136
msgid "web link"
msgstr "hüperlink"
-#: src/Module/Post/Edit.php:134
+#: src/Module/Post/Edit.php:137
msgid "Insert video link"
msgstr "Lisa videolink"
-#: src/Module/Post/Edit.php:135
+#: src/Module/Post/Edit.php:138
msgid "video link"
msgstr "videolink"
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:139
msgid "Insert audio link"
msgstr "Lisa audiolink"
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:140
msgid "audio link"
msgstr "audiolink"
@@ -8193,35 +8756,42 @@ msgstr "Eemalda elemendi Silt"
msgid "Select a tag to remove: "
msgstr "Vali tag mida eemaldada: "
-#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:178
+#: 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:156
+#: src/Module/Profile/Contacts.php:159
msgid "No contacts."
msgstr "Kontakte pole."
#: 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:1026
-#: src/Protocol/OStatus.php:1007
+#: 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:1030 src/Protocol/OStatus.php:1012
+#: 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:1033 src/Protocol/OStatus.php:1016
+#: 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"
@@ -8240,7 +8810,7 @@ msgstr "Server ei aktsepteeri hetkel uue faili üleslaadimist. Palun kontakteeru
msgid "Image file is empty."
msgstr "Pildifail on tühi"
-#: src/Module/Profile/Photos.php:376
+#: src/Module/Profile/Photos.php:356
msgid "View Album"
msgstr "Kuva Album"
@@ -8255,7 +8825,7 @@ msgid ""
"class=\"btn btn-sm pull-right\">Cancel"
msgstr ""
-#: src/Module/Profile/Profile.php:167 src/Module/Settings/Account.php:576
+#: src/Module/Profile/Profile.php:167
msgid "Full Name:"
msgstr "Täielik nimi:"
@@ -8276,12 +8846,12 @@ msgid "Birthday:"
msgstr "Sünnipäev:"
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
msgid "Age: "
msgstr "Vanus:"
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -8289,13 +8859,13 @@ msgstr[0] ""
msgstr[1] ""
#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:247
+#: src/Module/Settings/Profile/Index.php:284
msgid "Description:"
msgstr "Kirjeldus:"
#: src/Module/Profile/Profile.php:261
-msgid "Forums:"
-msgstr "Foorumid:"
+msgid "Groups:"
+msgstr ""
#: src/Module/Profile/Profile.php:273
msgid "View profile as:"
@@ -8356,15 +8926,15 @@ msgid ""
"content from anonymous visitors."
msgstr ""
-#: src/Module/Profile/Schedule.php:84
+#: 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 ""
@@ -8385,22 +8955,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 ""
@@ -8464,7 +9034,7 @@ msgstr ""
msgid "Please repeat your e-mail address:"
msgstr ""
-#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:101
+#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100
#: src/Module/Settings/Account.php:567
msgid "New Password:"
msgstr "Uus parool"
@@ -8473,7 +9043,7 @@ msgstr "Uus parool"
msgid "Leave empty for an auto generated password."
msgstr ""
-#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:102
+#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101
#: src/Module/Settings/Account.php:568
msgid "Confirm:"
msgstr "Kinnita:"
@@ -8501,11 +9071,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:156
msgid "Parent Password:"
msgstr "Peaparool"
-#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:154
+#: 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."
@@ -8596,45 +9166,45 @@ msgstr ""
msgid "Create a New Account"
msgstr "Loo uus konto"
-#: 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 "Parool:"
-#: src/Module/Security/Login.php:163
+#: src/Module/Security/Login.php:162
msgid "Remember me"
msgstr "Mäleta mind"
-#: src/Module/Security/Login.php:172
+#: src/Module/Security/Login.php:171
msgid "Forgot your password?"
msgstr "Unustasid parooli?"
-#: 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 ""
@@ -8691,25 +9261,25 @@ msgstr ""
msgid "Update Password"
msgstr ""
-#: src/Module/Security/PasswordTooLong.php:100
+#: src/Module/Security/PasswordTooLong.php:99
#: src/Module/Settings/Account.php:569
msgid "Current Password:"
msgstr "Kehtiv parool"
-#: src/Module/Security/PasswordTooLong.php:100
+#: 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:101
-#: src/Module/Settings/Account.php:552
+#: 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:101
-#: src/Module/Settings/Account.php:553
+#: src/Module/Security/PasswordTooLong.php:100
+#: src/Module/Settings/Account.php:554
msgid "Password length is limited to 72 characters."
msgstr ""
@@ -8833,99 +9403,99 @@ msgstr ""
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
+#: 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:363
+#: src/Module/Settings/Account.php:364
msgid "Contact CSV file upload error"
msgstr ""
-#: src/Module/Settings/Account.php:382
+#: src/Module/Settings/Account.php:383
msgid "Importing Contacts done"
msgstr ""
-#: src/Module/Settings/Account.php:395
+#: src/Module/Settings/Account.php:396
msgid "Relocate message has been send to your contacts"
msgstr ""
-#: src/Module/Settings/Account.php:412
+#: 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:454
+#: src/Module/Settings/Account.php:455
msgid "Personal Page Subtypes"
msgstr "Isikliku lehe alltüübid"
-#: src/Module/Settings/Account.php:455
-msgid "Community Forum Subtypes"
-msgstr "Kogukonnafoorumi alltüübid"
+#: src/Module/Settings/Account.php:456
+msgid "Community Group Subtypes"
+msgstr ""
-#: src/Module/Settings/Account.php:465
+#: src/Module/Settings/Account.php:466
msgid "Account for a personal profile."
msgstr "Personaalse profiili konto."
-#: src/Module/Settings/Account.php:472
+#: 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:479
+#: 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:486
+#: src/Module/Settings/Account.php:487
msgid "Account for community discussions."
msgstr "Kogukondlike arutluste konto."
-#: src/Module/Settings/Account.php:493
+#: 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:500
+#: 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:507
+#: src/Module/Settings/Account.php:508
msgid "Automatically approves all contact requests."
msgstr "Kiidab automaatselt kõik kontaktitaotlused heaks. "
-#: src/Module/Settings/Account.php:514
+#: 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:519
-msgid "Private Forum [Experimental]"
-msgstr "Privaatne Foorum [Eksperimentaalne]"
+#: src/Module/Settings/Account.php:520
+msgid "Private Group [Experimental]"
+msgstr ""
-#: src/Module/Settings/Account.php:521
+#: 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:530
+#: src/Module/Settings/Account.php:531
msgid "OpenID:"
msgstr ""
-#: src/Module/Settings/Account.php:530
+#: src/Module/Settings/Account.php:531
msgid "(Optional) Allow this OpenID to login to this account."
msgstr ""
-#: src/Module/Settings/Account.php:538
+#: src/Module/Settings/Account.php:539
msgid "Publish your profile in your local site directory?"
msgstr ""
-#: src/Module/Settings/Account.php:538
+#: src/Module/Settings/Account.php:539
#, php-format
msgid ""
"Your profile will be published in this node's local "
@@ -8933,18 +9503,18 @@ msgid ""
" system settings."
msgstr ""
-#: src/Module/Settings/Account.php:544
+#: 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:557
+#: src/Module/Settings/Account.php:558
msgid "Account Settings"
msgstr "Konto sätted"
-#: src/Module/Settings/Account.php:558
+#: 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'. "
@@ -8973,6 +9543,11 @@ msgstr ""
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:"
@@ -9099,201 +9674,209 @@ msgstr "Friendica kasutajad saavad sulle privaatsõnumeid saada isegi siis, kui
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:601
+#: src/Module/Settings/Account.php:602
msgid "Expiration settings"
msgstr "Aegumise sätted"
-#: src/Module/Settings/Account.php:602
+#: 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:602
+#: 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:603
+#: src/Module/Settings/Account.php:604
msgid "Expire posts"
msgstr ""
-#: src/Module/Settings/Account.php:603
+#: src/Module/Settings/Account.php:604
msgid "When activated, posts and comments will be expired."
msgstr ""
-#: src/Module/Settings/Account.php:604
+#: src/Module/Settings/Account.php:605
msgid "Expire personal notes"
msgstr ""
-#: src/Module/Settings/Account.php:604
+#: 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:605
+#: src/Module/Settings/Account.php:606
msgid "Expire starred posts"
msgstr ""
-#: src/Module/Settings/Account.php:605
+#: 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:606
+#: src/Module/Settings/Account.php:607
msgid "Only expire posts by others"
msgstr ""
-#: src/Module/Settings/Account.php:606
+#: 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:609
+#: src/Module/Settings/Account.php:610
msgid "Notification Settings"
msgstr "Teadete sätted"
-#: src/Module/Settings/Account.php:610
+#: src/Module/Settings/Account.php:611
msgid "Send a notification email when:"
msgstr "Saada meiliteavitus kui:"
-#: src/Module/Settings/Account.php:611
+#: src/Module/Settings/Account.php:612
msgid "You receive an introduction"
msgstr "Sulle saabub tutvustus"
-#: src/Module/Settings/Account.php:612
+#: src/Module/Settings/Account.php:613
msgid "Your introductions are confirmed"
msgstr "Sinu tutvustused on kinnitatud"
-#: src/Module/Settings/Account.php:613
+#: src/Module/Settings/Account.php:614
msgid "Someone writes on your profile wall"
msgstr "Keegi kirjutab sinu profiili seinale"
-#: src/Module/Settings/Account.php:614
+#: src/Module/Settings/Account.php:615
msgid "Someone writes a followup comment"
msgstr "Keegi kirjutab järgneva kommentaari"
-#: src/Module/Settings/Account.php:615
+#: src/Module/Settings/Account.php:616
msgid "You receive a private message"
msgstr "Saabub privaatsõnum"
-#: src/Module/Settings/Account.php:616
+#: src/Module/Settings/Account.php:617
msgid "You receive a friend suggestion"
msgstr "Saabub sõbrasoovitus"
-#: src/Module/Settings/Account.php:617
+#: src/Module/Settings/Account.php:618
msgid "You are tagged in a post"
msgstr "Sind on postituses tag`itud"
-#: 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 "Aktiveeri töölaua teavitused"
-#: src/Module/Settings/Account.php:628
+#: 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:632
+#: src/Module/Settings/Account.php:633
msgid "Text-only notification emails"
msgstr "Ainult tekstipõhised teavitusmeilid"
-#: src/Module/Settings/Account.php:634
+#: 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:638
+#: src/Module/Settings/Account.php:639
msgid "Show detailled notifications"
msgstr "Kuva detailseid teavitusi"
-#: 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 "Konto/Lehetüübi sätted edasijõudnutele"
-#: 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 ""
-#: src/Module/Settings/Account.php:655
+#: src/Module/Settings/Account.php:656
msgid "Upload File"
msgstr "Lae fail üles"
-#: 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 ""
@@ -9305,73 +9888,73 @@ msgstr "Lisade sätted"
msgid "No Addon settings configured"
msgstr ""
-#: src/Module/Settings/Connectors.php:119
+#: 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:164
-#: src/Module/Settings/Connectors.php:165
+#: src/Module/Settings/Connectors.php:166
+#: src/Module/Settings/Connectors.php:167
msgid "Diaspora (Socialhome, Hubzilla)"
msgstr ""
-#: src/Module/Settings/Connectors.php:164
-#: src/Module/Settings/Connectors.php:168
+#: 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:165
#: 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:167
-#: src/Module/Settings/Connectors.php:168
+#: src/Module/Settings/Connectors.php:169
+#: src/Module/Settings/Connectors.php:170
msgid "OStatus (GNU Social)"
msgstr ""
-#: src/Module/Settings/Connectors.php:180
+#: src/Module/Settings/Connectors.php:182
msgid "Email access is disabled on this site."
msgstr ""
-#: src/Module/Settings/Connectors.php:195
-#: src/Module/Settings/Connectors.php:241
+#: src/Module/Settings/Connectors.php:197
+#: src/Module/Settings/Connectors.php:244
msgid "None"
msgstr ""
-#: src/Module/Settings/Connectors.php:207
+#: src/Module/Settings/Connectors.php:209
msgid "General Social Media Settings"
msgstr "Üldised sotsiaalmeedia sätted"
-#: src/Module/Settings/Connectors.php:210
+#: src/Module/Settings/Connectors.php:212
msgid "Followed content scope"
msgstr ""
-#: src/Module/Settings/Connectors.php:212
+#: 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:214
+#: src/Module/Settings/Connectors.php:216
msgid "Only conversations my follows started"
msgstr ""
-#: src/Module/Settings/Connectors.php:215
+#: src/Module/Settings/Connectors.php:217
msgid "Conversations my follows started or commented on (default)"
msgstr ""
-#: src/Module/Settings/Connectors.php:216
+#: src/Module/Settings/Connectors.php:218
msgid "Any conversation my follows interacted with, including likes"
msgstr ""
-#: src/Module/Settings/Connectors.php:219
+#: src/Module/Settings/Connectors.php:221
msgid "Enable Content Warning"
msgstr ""
-#: src/Module/Settings/Connectors.php:219
+#: 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 "
@@ -9379,499 +9962,531 @@ msgid ""
" affect any other content filtering you eventually set up."
msgstr ""
-#: src/Module/Settings/Connectors.php:220
+#: src/Module/Settings/Connectors.php:222
msgid "Enable intelligent shortening"
msgstr ""
-#: src/Module/Settings/Connectors.php:220
+#: 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:221
+#: src/Module/Settings/Connectors.php:223
msgid "Enable simple text shortening"
msgstr ""
-#: src/Module/Settings/Connectors.php:221
+#: 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:222
+#: src/Module/Settings/Connectors.php:224
msgid "Attach the link title"
msgstr ""
-#: src/Module/Settings/Connectors.php:222
+#: 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:223
+#: src/Module/Settings/Connectors.php:225
msgid "API: Use spoiler field as title"
msgstr ""
-#: src/Module/Settings/Connectors.php:223
+#: 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:224
+#: 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:224
+#: 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:226
+#: src/Module/Settings/Connectors.php:229
msgid "Repair OStatus subscriptions"
msgstr ""
-#: src/Module/Settings/Connectors.php:230
+#: src/Module/Settings/Connectors.php:233
msgid "Email/Mailbox Setup"
msgstr "Emaili/Postkasti seadistamine"
-#: src/Module/Settings/Connectors.php:231
+#: 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:232
+#: src/Module/Settings/Connectors.php:235
msgid "Last successful email check:"
msgstr "Viimane õnnestunud meilikontroll: "
-#: src/Module/Settings/Connectors.php:234
+#: src/Module/Settings/Connectors.php:237
msgid "IMAP server name:"
msgstr ""
-#: src/Module/Settings/Connectors.php:235
+#: src/Module/Settings/Connectors.php:238
msgid "IMAP port:"
msgstr ""
-#: src/Module/Settings/Connectors.php:236
+#: src/Module/Settings/Connectors.php:239
msgid "Security:"
msgstr ""
-#: src/Module/Settings/Connectors.php:237
+#: src/Module/Settings/Connectors.php:240
msgid "Email login name:"
msgstr ""
-#: src/Module/Settings/Connectors.php:238
+#: src/Module/Settings/Connectors.php:241
msgid "Email password:"
msgstr ""
-#: src/Module/Settings/Connectors.php:239
+#: src/Module/Settings/Connectors.php:242
msgid "Reply-to address:"
msgstr ""
-#: src/Module/Settings/Connectors.php:240
+#: src/Module/Settings/Connectors.php:243
msgid "Send public posts to all email contacts:"
msgstr ""
-#: src/Module/Settings/Connectors.php:241
+#: src/Module/Settings/Connectors.php:244
msgid "Action after import:"
msgstr "Tegevus peale inporti:"
-#: src/Module/Settings/Connectors.php:241
+#: src/Module/Settings/Connectors.php:244
msgid "Move to folder"
msgstr "Liiguta kausta"
-#: src/Module/Settings/Connectors.php:242
+#: src/Module/Settings/Connectors.php:245
msgid "Move to folder:"
msgstr "Liiguta kausta:"
-#: src/Module/Settings/Delegation.php:52
+#: src/Module/Settings/Delegation.php:54
msgid "Delegation successfully granted."
msgstr ""
-#: src/Module/Settings/Delegation.php:54
+#: src/Module/Settings/Delegation.php:56
msgid "Parent user not found, unavailable or password doesn't match."
msgstr ""
-#: src/Module/Settings/Delegation.php:58
+#: src/Module/Settings/Delegation.php:60
msgid "Delegation successfully revoked."
msgstr ""
-#: src/Module/Settings/Delegation.php:80
-#: src/Module/Settings/Delegation.php:102
+#: 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:94
+#: src/Module/Settings/Delegation.php:96
msgid "Delegate user not found."
msgstr ""
-#: src/Module/Settings/Delegation.php:142
+#: src/Module/Settings/Delegation.php:144
msgid "No parent user"
msgstr "Vanemkasutajad ei ole"
-#: src/Module/Settings/Delegation.php:153
-#: src/Module/Settings/Delegation.php:164
+#: src/Module/Settings/Delegation.php:155
+#: src/Module/Settings/Delegation.php:166
msgid "Parent User"
msgstr "Vanemkasutaja"
-#: src/Module/Settings/Delegation.php:161
+#: src/Module/Settings/Delegation.php:163
msgid "Additional Accounts"
msgstr "Lisakontod"
-#: src/Module/Settings/Delegation.php:162
+#: 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:163
+#: src/Module/Settings/Delegation.php:165
msgid "Register an additional account"
msgstr ""
-#: src/Module/Settings/Delegation.php:167
+#: 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:171
+#: src/Module/Settings/Delegation.php:173
msgid "Delegates"
msgstr "Delegaadid"
-#: src/Module/Settings/Delegation.php:173
+#: 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:174
+#: src/Module/Settings/Delegation.php:176
msgid "Existing Page Delegates"
msgstr "Olemasolevad lehe Delegaadid"
-#: src/Module/Settings/Delegation.php:176
+#: src/Module/Settings/Delegation.php:178
msgid "Potential Delegates"
msgstr "Potsentsiaalsed lehe Delegaadid"
-#: src/Module/Settings/Delegation.php:179
+#: src/Module/Settings/Delegation.php:181
msgid "Add"
msgstr "Lisa"
-#: src/Module/Settings/Delegation.php:180
+#: src/Module/Settings/Delegation.php:182
msgid "No entries."
msgstr "Kirjeid pole."
-#: src/Module/Settings/Display.php:137
+#: src/Module/Settings/Display.php:146
msgid "The theme you chose isn't available."
msgstr ""
-#: src/Module/Settings/Display.php:177
+#: src/Module/Settings/Display.php:186
#, php-format
msgid "%s - (Unsupported)"
msgstr "%s - (Pole toetatud)"
-#: src/Module/Settings/Display.php:212
+#: src/Module/Settings/Display.php:221
msgid "No preview"
msgstr ""
-#: src/Module/Settings/Display.php:213
+#: src/Module/Settings/Display.php:222
msgid "No image"
msgstr ""
-#: src/Module/Settings/Display.php:214
+#: src/Module/Settings/Display.php:223
msgid "Small Image"
msgstr ""
-#: src/Module/Settings/Display.php:215
+#: src/Module/Settings/Display.php:224
msgid "Large Image"
msgstr ""
-#: src/Module/Settings/Display.php:246
+#: src/Module/Settings/Display.php:259
msgid "Display Settings"
msgstr "Kuvasätted"
-#: src/Module/Settings/Display.php:248
+#: src/Module/Settings/Display.php:261
msgid "General Theme Settings"
msgstr "Üldised teemasätted"
-#: src/Module/Settings/Display.php:249
+#: src/Module/Settings/Display.php:262
msgid "Custom Theme Settings"
msgstr "Kohandatud teema sätted"
-#: src/Module/Settings/Display.php:250
+#: src/Module/Settings/Display.php:263
msgid "Content Settings"
msgstr "Sisu sätted"
-#: src/Module/Settings/Display.php:251 view/theme/duepuntozero/config.php:86
+#: 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:258
+#: src/Module/Settings/Display.php:265
+msgid "Timelines"
+msgstr ""
+
+#: src/Module/Settings/Display.php:272
msgid "Display Theme:"
msgstr "Kuvatateema:"
-#: src/Module/Settings/Display.php:259
+#: src/Module/Settings/Display.php:273
msgid "Mobile Theme:"
msgstr "Mobiilne teema:"
-#: src/Module/Settings/Display.php:262
+#: 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:262 src/Module/Settings/Display.php:263
+#: 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:263
+#: 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:264
+#: 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:264
+#: 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:265
+#: src/Module/Settings/Display.php:279
msgid "Display emoticons"
msgstr ""
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:279
msgid "When enabled, emoticons are replaced with matching symbols."
msgstr ""
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:280
msgid "Infinite scroll"
msgstr ""
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:280
msgid "Automatic fetch new items when reaching the page end."
msgstr ""
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:281
msgid "Enable Smart Threading"
msgstr ""
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:281
msgid "Enable the automatic suppression of extraneous thread indentation."
msgstr ""
-#: src/Module/Settings/Display.php:268
+#: src/Module/Settings/Display.php:282
msgid "Display the Dislike feature"
msgstr ""
-#: src/Module/Settings/Display.php:268
+#: src/Module/Settings/Display.php:282
msgid ""
"Display the Dislike button and dislike reactions on posts and comments."
msgstr ""
-#: src/Module/Settings/Display.php:269
+#: src/Module/Settings/Display.php:283
msgid "Display the resharer"
msgstr "Kuva taasjagaja"
-#: src/Module/Settings/Display.php:269
+#: 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:270
+#: src/Module/Settings/Display.php:284
msgid "Stay local"
msgstr ""
-#: src/Module/Settings/Display.php:270
+#: 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:271
+#: src/Module/Settings/Display.php:285
msgid "Link preview mode"
msgstr ""
-#: src/Module/Settings/Display.php:271
+#: 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:273
+#: 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/Display.php:274
+#: 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 "Lisafunktsioonid"
-#: src/Module/Settings/OAuth.php:72
+#: src/Module/Settings/OAuth.php:71
msgid "Connected Apps"
msgstr "Ühendatud rakendused"
-#: src/Module/Settings/OAuth.php:76
+#: src/Module/Settings/OAuth.php:75
msgid "Remove authorization"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:84
-msgid "Profile Name is required."
-msgstr "Profiili Nimi nõutav."
+#: src/Module/Settings/Profile/Index.php:116
+msgid "Display Name is required."
+msgstr ""
-#: src/Module/Settings/Profile/Index.php:134
+#: src/Module/Settings/Profile/Index.php:167
msgid "Profile couldn't be updated."
msgstr ""
-#: src/Module/Settings/Profile/Index.php:175
-#: src/Module/Settings/Profile/Index.php:195
+#: src/Module/Settings/Profile/Index.php:205
+#: src/Module/Settings/Profile/Index.php:226
msgid "Label:"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:176
-#: src/Module/Settings/Profile/Index.php:196
+#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:227
msgid "Value:"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:186
-#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:217
+#: src/Module/Settings/Profile/Index.php:238
msgid "Field Permissions"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:187
-#: src/Module/Settings/Profile/Index.php:207
+#: 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:193
+#: src/Module/Settings/Profile/Index.php:224
msgid "Add a new profile field"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:217
+#: 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:219
+#: 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:229
+#: src/Module/Settings/Profile/Index.php:255
msgid "Profile Actions"
msgstr "Profiili tegevused"
-#: src/Module/Settings/Profile/Index.php:230
+#: src/Module/Settings/Profile/Index.php:256
msgid "Edit Profile Details"
msgstr "Muuda profiili detaile"
-#: src/Module/Settings/Profile/Index.php:232
+#: src/Module/Settings/Profile/Index.php:258
msgid "Change Profile Photo"
msgstr "Muud profiili foto"
-#: src/Module/Settings/Profile/Index.php:237
+#: src/Module/Settings/Profile/Index.php:261
msgid "Profile picture"
msgstr "Profiilipilt"
-#: src/Module/Settings/Profile/Index.php:238
+#: src/Module/Settings/Profile/Index.php:262
msgid "Location"
msgstr "Asukoht"
-#: src/Module/Settings/Profile/Index.php:239 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 ""
-#: src/Module/Settings/Profile/Index.php:240
+#: src/Module/Settings/Profile/Index.php:264
msgid "Custom Profile Fields"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:242 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:246
-msgid "Display name:"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:249
-msgid "Street Address:"
-msgstr "Tänava aadress:"
-
-#: src/Module/Settings/Profile/Index.php:250
-msgid "Locality/City:"
-msgstr "Asupaik/Linn:"
-
-#: src/Module/Settings/Profile/Index.php:251
-msgid "Region/State:"
-msgstr "Regioon/Maakond:"
-
-#: src/Module/Settings/Profile/Index.php:252
-msgid "Postal/Zip Code:"
-msgstr "Postiindeks:"
-
-#: src/Module/Settings/Profile/Index.php:253
-msgid "Country:"
-msgstr "Riik:"
-
-#: src/Module/Settings/Profile/Index.php:255
-msgid "XMPP (Jabber) address:"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:255
-msgid ""
-"The XMPP address will be published so that people can follow you there."
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:256
-msgid "Matrix (Element) address:"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:256
-msgid ""
-"The Matrix address will be published so that people can follow you there."
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:257
-msgid "Homepage URL:"
-msgstr "Kodulehe URL: "
-
-#: src/Module/Settings/Profile/Index.php:258
-msgid "Public Keywords:"
-msgstr "Avalikud märksõnad:"
-
-#: src/Module/Settings/Profile/Index.php:258
-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:259
-msgid "Private Keywords:"
-msgstr "Privaatsed märksõnad:"
-
-#: src/Module/Settings/Profile/Index.php:259
-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:260
+#: src/Module/Settings/Profile/Index.php:266
#, php-format
msgid ""
"Custom fields appear on your profile page.
\n"
"\t\t\t\tYou can use BBCodes in the field values.
\n"
"\t\t\t\tReorder by dragging the field title.
\n"
"\t\t\t\tEmpty the label field to remove a custom field.
\n"
-"\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.
"
+"\t\t\t\tNon-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 "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
@@ -9982,6 +10597,42 @@ msgstr "See eemaldab sinu konto täielikult. Kui kord tehtud, siis taastada ei s
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
@@ -10303,20 +10954,41 @@ msgid ""
" 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 "Not Found"
+msgid ""
+"This node has blocked the top-level author or the author of the shared post."
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"
-"
"
+"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
@@ -10328,7 +11000,7 @@ msgstr ""
msgid "Exception thrown in %s:%d"
msgstr ""
-#: src/Module/Tos.php:57 src/Module/Tos.php:106
+#: 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"
@@ -10341,14 +11013,14 @@ msgid ""
"settings, it is not necessary for communication."
msgstr ""
-#: src/Module/Tos.php:58 src/Module/Tos.php:107
+#: 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:108
+#: 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"
@@ -10359,11 +11031,11 @@ msgid ""
"from the nodes of the communication partners."
msgstr ""
-#: src/Module/Tos.php:62 src/Module/Tos.php:105
+#: src/Module/Tos.php:63 src/Module/Tos.php:106
msgid "Privacy Statement"
msgstr ""
-#: src/Module/Tos.php:102
+#: src/Module/Tos.php:103
msgid "Rules"
msgstr ""
@@ -10371,6 +11043,10 @@ msgstr ""
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 ""
@@ -10419,22 +11095,22 @@ msgstr ""
msgid "User '%s' already exists on this server!"
msgstr ""
-#: src/Module/User/Import.php:263
+#: src/Module/User/Import.php:267
msgid "User creation error"
msgstr ""
-#: src/Module/User/Import.php:312
+#: 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:361
+#: src/Module/User/Import.php:365
msgid "User profile creation error"
msgstr ""
-#: src/Module/User/Import.php:412
+#: src/Module/User/Import.php:416
msgid "Done. You can now login with your username and password"
msgstr ""
@@ -10568,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?"
@@ -11083,249 +11759,258 @@ msgstr "Palun kontakteeruge saatjaga vastates sellele postitusele, kui ei soovi
msgid "%s posted an update."
msgstr "%s postitas uuenduse."
-#: src/Object/Post.php:135
+#: src/Object/Post.php:138
msgid "Private Message"
msgstr "Pirvaatsõnum"
-#: 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:181
msgid "This entry was edited"
msgstr "See kanne on muudetud"
-#: src/Object/Post.php:206
+#: src/Object/Post.php:209
msgid "Connector Message"
msgstr ""
-#: src/Object/Post.php:221 src/Object/Post.php:223
+#: src/Object/Post.php:225 src/Object/Post.php:227
msgid "Edit"
msgstr "Muuda"
-#: src/Object/Post.php:247
+#: src/Object/Post.php:261
msgid "Delete globally"
msgstr "Kustuta globaalselt"
-#: src/Object/Post.php:247
+#: src/Object/Post.php:261
msgid "Remove locally"
msgstr "Eemalda lokaalselt"
-#: 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:274
+#: 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:309
+#: src/Object/Post.php:333
msgid "I will attend"
msgstr "Ma osalen"
-#: src/Object/Post.php:309
+#: src/Object/Post.php:333
msgid "I will not attend"
msgstr "Ma ei osale"
-#: src/Object/Post.php:309
+#: src/Object/Post.php:333
msgid "I might attend"
msgstr "Ma ehk osalen"
-#: src/Object/Post.php:339
+#: src/Object/Post.php:363
msgid "Ignore thread"
msgstr ""
-#: src/Object/Post.php:340
+#: src/Object/Post.php:364
msgid "Unignore thread"
msgstr ""
-#: src/Object/Post.php:341
+#: src/Object/Post.php:365
msgid "Toggle ignore status"
msgstr ""
-#: src/Object/Post.php:351
+#: src/Object/Post.php:375
msgid "Add star"
msgstr ""
-#: src/Object/Post.php:352
+#: src/Object/Post.php:376
msgid "Remove star"
msgstr ""
-#: src/Object/Post.php:353
+#: src/Object/Post.php:377
msgid "Toggle star status"
msgstr ""
-#: src/Object/Post.php:364
+#: src/Object/Post.php:388
msgid "Pin"
msgstr ""
-#: src/Object/Post.php:365
+#: src/Object/Post.php:389
msgid "Unpin"
msgstr ""
-#: src/Object/Post.php:366
+#: src/Object/Post.php:390
msgid "Toggle pin status"
msgstr ""
-#: src/Object/Post.php:369
+#: src/Object/Post.php:393
msgid "Pinned"
msgstr ""
-#: src/Object/Post.php:374
+#: src/Object/Post.php:398
msgid "Add tag"
msgstr ""
-#: src/Object/Post.php:387
+#: src/Object/Post.php:411
msgid "Quote share this"
msgstr ""
-#: src/Object/Post.php:387
+#: src/Object/Post.php:411
msgid "Quote Share"
msgstr "Tsitaadiga jagamine"
-#: src/Object/Post.php:390
+#: src/Object/Post.php:414
msgid "Reshare this"
msgstr ""
-#: src/Object/Post.php:390
+#: src/Object/Post.php:414
msgid "Reshare"
msgstr "Taasjaga"
-#: src/Object/Post.php:391
+#: src/Object/Post.php:415
msgid "Cancel your Reshare"
msgstr ""
-#: src/Object/Post.php:391
+#: src/Object/Post.php:415
msgid "Unshare"
msgstr ""
-#: src/Object/Post.php:438
+#: src/Object/Post.php:466
#, php-format
msgid "%s (Received %s)"
msgstr ""
-#: src/Object/Post.php:443
+#: src/Object/Post.php:472
msgid "Comment this item on your system"
msgstr ""
-#: src/Object/Post.php:443
+#: src/Object/Post.php:472
msgid "Remote comment"
msgstr ""
-#: src/Object/Post.php:464
+#: src/Object/Post.php:494
msgid "Share via ..."
msgstr ""
-#: src/Object/Post.php:464
+#: src/Object/Post.php:494
msgid "Share via external services"
msgstr ""
-#: src/Object/Post.php:493
+#: src/Object/Post.php:523
msgid "to"
msgstr ""
-#: src/Object/Post.php:494
+#: src/Object/Post.php:524
msgid "via"
msgstr ""
-#: src/Object/Post.php:495
+#: src/Object/Post.php:525
msgid "Wall-to-Wall"
msgstr "Seinalt Seinale"
-#: src/Object/Post.php:496
+#: src/Object/Post.php:526
msgid "via Wall-To-Wall:"
msgstr "läbi Seinalt Seinale:"
-#: src/Object/Post.php:540
+#: src/Object/Post.php:573
#, php-format
msgid "Reply to %s"
msgstr "Vasta %s le"
-#: src/Object/Post.php:543
+#: src/Object/Post.php:576
msgid "More"
msgstr "Rohkem"
-#: src/Object/Post.php:561
+#: src/Object/Post.php:595
msgid "Notifier task is pending"
msgstr ""
-#: src/Object/Post.php:562
+#: src/Object/Post.php:596
msgid "Delivery to remote servers is pending"
msgstr ""
-#: src/Object/Post.php:563
+#: src/Object/Post.php:597
msgid "Delivery to remote servers is underway"
msgstr ""
-#: src/Object/Post.php:564
+#: src/Object/Post.php:598
msgid "Delivery to remote servers is mostly done"
msgstr ""
-#: src/Object/Post.php:565
+#: src/Object/Post.php:599
msgid "Delivery to remote servers is done"
msgstr ""
-#: src/Object/Post.php:585
+#: src/Object/Post.php:619
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] ""
msgstr[1] ""
-#: src/Object/Post.php:586
+#: src/Object/Post.php:620
msgid "Show more"
msgstr "Näita rohkem "
-#: src/Object/Post.php:587
+#: src/Object/Post.php:621
msgid "Show fewer"
msgstr "Näita vähem"
-#: src/Object/Post.php:623
+#: src/Object/Post.php:657
#, php-format
msgid "Reshared by: %s"
msgstr ""
-#: src/Object/Post.php:628
+#: src/Object/Post.php:662
#, php-format
msgid "Viewed by: %s"
msgstr ""
-#: src/Object/Post.php:633
+#: src/Object/Post.php:667
#, php-format
msgid "Liked by: %s"
msgstr ""
-#: src/Object/Post.php:638
+#: src/Object/Post.php:672
#, php-format
msgid "Disliked by: %s"
msgstr ""
-#: src/Object/Post.php:643
+#: src/Object/Post.php:677
#, php-format
msgid "Attended by: %s"
msgstr ""
-#: src/Object/Post.php:648
+#: src/Object/Post.php:682
#, php-format
msgid "Maybe attended by: %s"
msgstr ""
-#: src/Object/Post.php:653
+#: src/Object/Post.php:687
#, php-format
msgid "Not attended by: %s"
msgstr ""
-#: src/Object/Post.php:658
+#: src/Object/Post.php:692
#, php-format
msgid "Reacted with %s by: %s"
msgstr ""
@@ -11334,21 +12019,21 @@ msgstr ""
msgid "(no subject)"
msgstr ""
-#: src/Protocol/OStatus.php:1388
+#: src/Protocol/OStatus.php:1390
#, php-format
msgid "%s is now following %s."
msgstr "%s jälgib nüüd %s ."
-#: src/Protocol/OStatus.php:1389
+#: src/Protocol/OStatus.php:1391
msgid "following"
msgstr "jälgib"
-#: src/Protocol/OStatus.php:1392
+#: src/Protocol/OStatus.php:1394
#, php-format
msgid "%s stopped following %s."
msgstr "%slõpetas %s jälgimise"
-#: src/Protocol/OStatus.php:1393
+#: src/Protocol/OStatus.php:1395
msgid "stopped following"
msgstr "lõpetas jälgimise"
@@ -11365,12 +12050,12 @@ msgstr ""
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 "Palun lae profiilifoto üles"
@@ -11706,7 +12391,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
@@ -11725,7 +12410,7 @@ msgstr ""
msgid "Community Pages"
msgstr ""
-#: view/theme/vier/config.php:139 view/theme/vier/theme.php:149
+#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148
msgid "Community Profiles"
msgstr ""
@@ -11733,7 +12418,7 @@ msgstr ""
msgid "Help or @NewHere ?"
msgstr ""
-#: view/theme/vier/config.php:141 view/theme/vier/theme.php:320
+#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319
msgid "Connect Services"
msgstr ""
@@ -11741,10 +12426,10 @@ msgstr ""
msgid "Find Friends"
msgstr ""
-#: view/theme/vier/config.php:143 view/theme/vier/theme.php:176
+#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175
msgid "Last users"
msgstr ""
-#: view/theme/vier/theme.php:235
+#: 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 efd8abd2f5..0fa8251d68 100644
--- a/view/lang/et/strings.php
+++ b/view/lang/et/strings.php
@@ -146,23 +146,32 @@ $a->strings['Permission settings'] = 'Õiguste sätted';
$a->strings['Public post'] = 'Avalik postitus';
$a->strings['Message'] = 'Sõnum';
$a->strings['Browser'] = 'Sirvik';
-$a->strings['Categories:'] = 'Kategooriad:';
$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';
@@ -252,7 +261,6 @@ $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';
@@ -310,8 +318,10 @@ $a->strings['Thu'] = 'Nel';
$a->strings['Fri'] = 'Ree';
$a->strings['Sat'] = 'Lau';
$a->strings['Sun'] = 'Püh';
+$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:';
@@ -329,15 +339,6 @@ $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';
@@ -418,7 +419,6 @@ $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';
@@ -444,6 +444,10 @@ $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. ',
@@ -459,7 +463,6 @@ $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';
@@ -473,12 +476,10 @@ $a->strings['Mutual Friendship'] = 'Ühine sõprus';
$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 not found.'] = 'Kontakti ei leitud.';
$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['Invalid contact.'] = 'Mittevaliidne kontakt.';
$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.';
@@ -531,23 +532,9 @@ $a->strings['Yes'] = 'Jah';
$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['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['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['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['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 ';
@@ -563,18 +550,6 @@ $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';
@@ -611,16 +586,12 @@ $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 exceeds size limit of %s'] = 'Pilt ületab suuruse limiidi %s ';
$a->strings['Image upload failed.'] = 'Pildi üleslaadimine nurjus.';
$a->strings['Normal Account Page'] = 'Normaalse konto leht';
-$a->strings['Public Forum'] = 'Avalik foorum';
$a->strings['Automatic Friend Page'] = 'Automaatne sõbraleht';
-$a->strings['Private Forum'] = 'Privaatne foorum';
$a->strings['Personal Page'] = 'Isiklik leht';
$a->strings['Organisation Page'] = 'Organisatsiooni leht';
$a->strings['News Page'] = 'Uudiste leht';
-$a->strings['Community Forum'] = 'Kogukonna foorum';
$a->strings['Blocked Remote Contacts'] = 'Blokeeritud kaugkontaktid';
$a->strings['Block New Remote Contact'] = 'Blokeeri kaugkontakt';
$a->strings['Photo'] = 'Foto';
@@ -630,10 +601,8 @@ $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['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['Registered users'] = 'Registreeritud kasutajad';
$a->strings['Pending registrations'] = 'Ootel registreeringud';
$a->strings['You can\'t remove yourself'] = 'Iseend eemaldada ei saa';
@@ -681,6 +650,7 @@ $a->strings['No contacts.'] = 'Kontakte pole.';
$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. ';
@@ -692,7 +662,6 @@ $a->strings['Member since:'] = 'Liige alates: ';
$a->strings['Birthday:'] = 'Sünnipäev:';
$a->strings['Age: '] = 'Vanus:';
$a->strings['Description:'] = 'Kirjeldus:';
-$a->strings['Forums:'] = 'Foorumid:';
$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';
@@ -721,7 +690,6 @@ $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['Community Forum Subtypes'] = 'Kogukonnafoorumi 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". ';
@@ -730,7 +698,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".'] = '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['Private Forum [Experimental]'] = 'Privaatne Foorum [Eksperimentaalne]';
$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\'. ';
@@ -810,7 +777,6 @@ $a->strings['Display the resharer'] = 'Kuva taasjagaja';
$a->strings['Beginning of week:'] = 'Nädala algus:';
$a->strings['Additional Features'] = 'Lisafunktsioonid';
$a->strings['Connected Apps'] = 'Ühendatud rakendused';
-$a->strings['Profile Name is required.'] = 'Profiili Nimi nõutav.';
$a->strings['(click to open/close)'] = '(klõpsa ava/sulge)';
$a->strings['Profile Actions'] = 'Profiili tegevused';
$a->strings['Edit Profile Details'] = 'Muuda profiili detaile';
@@ -863,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';
diff --git a/view/lang/fr/messages.po b/view/lang/fr/messages.po
index fed5298ba5..7de08d1b43 100644
--- a/view/lang/fr/messages.po
+++ b/view/lang/fr/messages.po
@@ -9,6 +9,7 @@
# 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
@@ -34,9 +35,9 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-04-23 21:21+0000\n"
+"POT-Creation-Date: 2023-10-03 08:59+0200\n"
"PO-Revision-Date: 2011-05-05 10:19+0000\n"
-"Last-Translator: Nicolas Derive, 2022-2023\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"
@@ -64,26 +65,26 @@ msgstr "La publication n'a pas pu être obtenue."
msgid "Empty post discarded."
msgstr "Publication vide rejetée."
-#: mod/item.php:411 src/Module/Admin/Themes/Details.php:39
+#: 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 "Élément introuvable."
-#: mod/item.php:435 mod/message.php:68 mod/message.php:114 mod/notes.php:45
-#: mod/photos.php:152 mod/photos.php:669 src/Model/Event.php:522
+#: 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:52
+#: 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/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/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
@@ -93,9 +94,9 @@ msgstr "Élément introuvable."
#: 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:69
-#: src/Module/Settings/Display.php:69 src/Module/Settings/Display.php:151
+#: 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
@@ -129,7 +130,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
@@ -151,7 +152,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 ""
@@ -161,7 +162,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?"
@@ -175,7 +176,7 @@ msgstr "Entrez votre adresse de courriel et validez pour réinitialiser votre mo
#: 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"
@@ -241,90 +242,90 @@ 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/message.php:46 mod/message.php:129 src/Content/Nav.php:319
+#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321
msgid "New Message"
msgstr "Nouveau message"
-#: 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 "Pas de destinataire sélectionné."
-#: mod/message.php:88
+#: mod/message.php:87
msgid "Unable to locate contact information."
msgstr "Impossible de localiser les informations du contact."
-#: 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 "Impossible d'envoyer le message."
-#: 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 "Récupération des messages infructueuse."
-#: 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 "Rejeter"
-#: mod/message.php:136 src/Content/Nav.php:316 view/theme/frio/theme.php:241
+#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Messages"
msgstr "Messages"
-#: mod/message.php:149
+#: mod/message.php:148
msgid "Conversation not found."
msgstr "Conversation inconnue."
-#: mod/message.php:154
+#: mod/message.php:153
msgid "Message was not deleted."
msgstr "Le message n'a pas été supprimé."
-#: mod/message.php:169
+#: mod/message.php:168
msgid "Conversation was not removed."
msgstr "La conversation n'a pas été supprimée."
-#: mod/message.php:182 mod/message.php:287 src/Module/Profile/UnkMail.php:145
+#: 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:191 src/Module/Profile/UnkMail.php:151
+#: mod/message.php:190 src/Module/Profile/UnkMail.php:151
msgid "Send Private Message"
msgstr "Envoyer un message privé"
-#: mod/message.php:192 mod/message.php:347
+#: mod/message.php:191 mod/message.php:346
msgid "To:"
msgstr "À:"
-#: mod/message.php:193 mod/message.php:348
+#: mod/message.php:192 mod/message.php:347
msgid "Subject:"
msgstr "Sujet:"
-#: mod/message.php:197 mod/message.php:351 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:200 mod/message.php:355 src/Content/Conversation.php:360
+#: 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:201 mod/message.php:356 src/Module/Post/Edit.php:135
+#: 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:202 mod/message.php:358 mod/photos.php:1291
-#: src/Content/Conversation.php:389 src/Content/Conversation.php:733
-#: src/Module/Item/Compose.php:204 src/Module/Post/Edit.php:145
-#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:550
+#: 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 "Patientez"
-#: mod/message.php:203 mod/message.php:357 mod/photos.php:702
-#: mod/photos.php:819 mod/photos.php:1097 mod/photos.php:1138
-#: mod/photos.php:1194 mod/photos.php:1268
+#: 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:339
+#: 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
@@ -332,59 +333,64 @@ msgstr "Patientez"
#: 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:230 src/Object/Post.php:1063
+#: 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 "Envoyer"
-#: mod/message.php:224
+#: mod/message.php:223
msgid "No messages."
msgstr "Aucun message."
-#: mod/message.php:280
+#: mod/message.php:279
msgid "Message not available."
msgstr "Message indisponible."
-#: mod/message.php:324
+#: mod/message.php:323
msgid "Delete message"
msgstr "Effacer message"
-#: mod/message.php:326 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:341 mod/message.php:454
+#: mod/message.php:340 mod/message.php:453
msgid "Delete conversation"
msgstr "Effacer conversation"
-#: mod/message.php:343
+#: mod/message.php:342
msgid ""
"No secure communications available. You may be able to "
"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"
@@ -400,14 +406,14 @@ msgstr "Notes personnelles"
msgid "Personal notes are visible only by yourself."
msgstr "Les notes personnelles ne sont visibles que par vous."
-#: mod/notes.php:57 src/Content/Text/HTML.php:857
+#: 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 "Sauver"
-#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:577
-#: src/Model/Event.php:514 src/Model/Profile.php:234
+#: 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
@@ -419,22 +425,22 @@ msgid "User not found."
msgstr "Utilisateur introuvable."
#: mod/photos.php:106 src/Module/BaseProfile.php:68
-#: src/Module/Profile/Photos.php:399
+#: src/Module/Profile/Photos.php:379
msgid "Photo Albums"
msgstr "Albums photo"
-#: mod/photos.php:107 src/Module/Profile/Photos.php:400
-#: src/Module/Profile/Photos.php:420
+#: 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:109 mod/photos.php:867 src/Module/Profile/Photos.php:402
-#: src/Module/Profile/Photos.php:422
+#: 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:121 src/Module/BaseSettings.php:74
-#: src/Module/Profile/Photos.php:383
+#: mod/photos.php:121 src/Module/BaseSettings.php:72
+#: src/Module/Profile/Photos.php:363
msgid "everybody"
msgstr "tout le monde"
@@ -446,72 +452,72 @@ msgstr "Informations de contact indisponibles"
msgid "Album not found."
msgstr "Album introuvable."
-#: mod/photos.php:242
+#: mod/photos.php:244
msgid "Album successfully deleted"
msgstr "Album bien supprimé"
-#: mod/photos.php:244
+#: mod/photos.php:246
msgid "Album was empty."
msgstr "L'album était vide"
-#: mod/photos.php:276
+#: mod/photos.php:277
msgid "Failed to delete the photo."
msgstr "La suppression de la photo a échoué."
-#: mod/photos.php:544
+#: mod/photos.php:545
msgid "a photo"
msgstr "une photo"
-#: mod/photos.php:544
+#: 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:581 src/Module/Conversation/Community.php:188
-#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:315
+#: 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 public refusé."
-#: mod/photos.php:586
+#: mod/photos.php:587
msgid "No photos selected"
msgstr "Aucune photo sélectionnée"
-#: mod/photos.php:718
+#: 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:725
+#: mod/photos.php:728
msgid "Upload Photos"
msgstr "Téléverser des photos"
-#: mod/photos.php:729 mod/photos.php:815
+#: mod/photos.php:732 mod/photos.php:820
msgid "New album name: "
msgstr "Nom du nouvel album : "
-#: mod/photos.php:730
+#: mod/photos.php:733
msgid "or select existing album:"
msgstr "ou sélectionner un album existant"
-#: mod/photos.php:731
+#: 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:733 mod/photos.php:1093 src/Content/Conversation.php:391
-#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:182
+#: 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:796
+#: 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:797 mod/photos.php:820
+#: mod/photos.php:802 mod/photos.php:825
msgid "Delete Album"
msgstr "Effacer l'album"
-#: mod/photos.php:798 mod/photos.php:899 src/Content/Conversation.php:407
+#: 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
@@ -521,254 +527,271 @@ msgstr "Effacer l'album"
msgid "Cancel"
msgstr "Annuler"
-#: mod/photos.php:824
+#: mod/photos.php:829
msgid "Edit Album"
msgstr "Éditer l'album"
-#: mod/photos.php:825
+#: mod/photos.php:830
msgid "Drop Album"
msgstr "Supprimer l'album"
-#: mod/photos.php:829
+#: mod/photos.php:834
msgid "Show Newest First"
msgstr "Plus récent d'abord"
-#: mod/photos.php:831
+#: mod/photos.php:836
msgid "Show Oldest First"
msgstr "Plus ancien d'abord"
-#: mod/photos.php:852 src/Module/Profile/Photos.php:370
+#: mod/photos.php:857 src/Module/Profile/Photos.php:350
msgid "View Photo"
msgstr "Voir la photo"
-#: mod/photos.php:885
+#: 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:887
+#: mod/photos.php:891
msgid "Photo not available"
msgstr "Photo indisponible"
-#: mod/photos.php:897
+#: mod/photos.php:901
msgid "Do you really want to delete this photo?"
msgstr "Voulez-vous vraiment supprimer cette photo ?"
-#: mod/photos.php:898 mod/photos.php:1098
+#: mod/photos.php:902 mod/photos.php:1102
msgid "Delete Photo"
msgstr "Effacer la photo"
-#: mod/photos.php:996
+#: mod/photos.php:1000
msgid "View photo"
msgstr "Voir photo"
-#: mod/photos.php:998
+#: mod/photos.php:1002
msgid "Edit photo"
msgstr "Éditer la photo"
-#: mod/photos.php:999
+#: mod/photos.php:1003
msgid "Delete photo"
msgstr "Effacer la photo"
-#: mod/photos.php:1000
+#: mod/photos.php:1004
msgid "Use as profile photo"
msgstr "Utiliser comme photo de profil"
-#: mod/photos.php:1007
+#: mod/photos.php:1011
msgid "Private Photo"
msgstr "Photo privée"
-#: mod/photos.php:1013
+#: mod/photos.php:1017
msgid "View Full Size"
msgstr "Voir en taille réelle"
-#: mod/photos.php:1066
+#: mod/photos.php:1070
msgid "Tags: "
-msgstr "Étiquettes :"
+msgstr "Tags :"
-#: mod/photos.php:1069
+#: mod/photos.php:1073
msgid "[Select tags to remove]"
-msgstr "[Sélectionner les étiquettes à supprimer]"
+msgstr "[Sélectionner les tags à supprimer]"
-#: mod/photos.php:1084
+#: mod/photos.php:1088
msgid "New album name"
msgstr "Nom du nouvel album"
-#: mod/photos.php:1085
+#: mod/photos.php:1089
msgid "Caption"
msgstr "Titre"
-#: mod/photos.php:1086
+#: mod/photos.php:1090
msgid "Add a Tag"
-msgstr "Ajouter une étiquette"
+msgstr "Ajouter un tag"
-#: mod/photos.php:1086
+#: 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:1087
+#: mod/photos.php:1091
msgid "Do not rotate"
msgstr "Pas de rotation"
-#: mod/photos.php:1088
+#: mod/photos.php:1092
msgid "Rotate CW (right)"
msgstr "Tourner dans le sens des aiguilles d'une montre (vers la droite)"
-#: mod/photos.php:1089
+#: 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:1135 mod/photos.php:1191 mod/photos.php:1265
-#: src/Module/Contact.php:588 src/Module/Item/Compose.php:188
-#: src/Object/Post.php:1060
+#: 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 "C'est vous"
-#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1267
-#: src/Object/Post.php:544 src/Object/Post.php:1062
+#: 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 "Commenter"
-#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1269
-#: src/Content/Conversation.php:404 src/Module/Calendar/Event/Form.php:248
-#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:165
-#: src/Object/Post.php:1074
+#: 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 "Aperçu"
-#: mod/photos.php:1140 src/Content/Conversation.php:359
-#: src/Module/Post/Edit.php:130 src/Object/Post.php:1064
+#: mod/photos.php:1144 src/Content/Conversation.php:367
+#: src/Module/Post/Edit.php:130 src/Object/Post.php:1096
msgid "Loading..."
msgstr "Chargement en cours..."
-#: mod/photos.php:1226 src/Content/Conversation.php:649
-#: src/Object/Post.php:257
+#: mod/photos.php:1236 src/Content/Conversation.php:1464
+#: src/Object/Post.php:260
msgid "Select"
msgstr "Sélectionner"
-#: mod/photos.php:1227 src/Content/Conversation.php:650
+#: 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:1288 src/Object/Post.php:385
+#: mod/photos.php:1298 src/Object/Post.php:408
msgid "Like"
msgstr "Aime"
-#: mod/photos.php:1289 src/Object/Post.php:385
+#: mod/photos.php:1299 src/Object/Post.php:408
msgid "I like this (toggle)"
msgstr "J'aime"
-#: mod/photos.php:1290 src/Object/Post.php:386
+#: mod/photos.php:1300 src/Object/Post.php:409
msgid "Dislike"
msgstr "N'aime pas"
-#: mod/photos.php:1292 src/Object/Post.php:386
+#: mod/photos.php:1302 src/Object/Post.php:409
msgid "I don't like this (toggle)"
msgstr "Je n'aime pas"
-#: mod/photos.php:1314
+#: mod/photos.php:1324
msgid "Map"
msgstr "Carte"
-#: src/App.php:470
+#: src/App.php:473
msgid "No system theme config value set."
msgstr "Le thème système n'est pas configuré."
-#: src/App.php:574
+#: 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:247
+#: src/App/Page.php:248
msgid "Delete this item?"
msgstr "Effacer cet élément?"
-#: src/App/Page.php:248
+#: 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:249
+#: 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 "Like not successful"
-msgstr ""
+msgid "Collapse this author's posts?"
+msgstr "Réduire les publications de cet auteur ?"
#: src/App/Page.php:252
-msgid "Dislike not successful"
-msgstr ""
+msgid "Ignore this author's server?"
+msgstr "Ignorer le serveur de cet auteur ?"
-#: src/App/Page.php:253
-msgid "Sharing not successful"
-msgstr ""
-
-#: src/App/Page.php:254
-msgid "Attendance unsuccessful"
-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 "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 "Backend error"
-msgstr ""
+msgid "Like not successful"
+msgstr "Erreur lors du \"Aime\""
#: src/App/Page.php:256
-msgid "Network error"
-msgstr ""
+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 "Drop files here to upload"
-msgstr ""
+msgid "Backend error"
+msgstr "Erreur backend"
#: src/App/Page.php:260
-msgid "Your browser does not support drag and drop file uploads."
-msgstr ""
+msgid "Network error"
+msgstr "Erreur réseau"
-#: src/App/Page.php:261
+#: 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 ""
-
-#: src/App/Page.php:262
-msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
-msgstr ""
-
-#: src/App/Page.php:263
-msgid "You can't upload files of this type."
-msgstr ""
-
-#: src/App/Page.php:264
-msgid "Server responded with {{statusCode}} code."
-msgstr ""
-
-#: src/App/Page.php:265
-msgid "Cancel upload"
-msgstr ""
+msgstr "Veuillez utiliser le formulaire ci-dessous pour envoyer vos fichiers comme au bon vieux temps."
#: src/App/Page.php:266
-msgid "Upload canceled."
-msgstr ""
+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 "Are you sure you want to cancel this upload?"
-msgstr ""
+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 "Remove file"
-msgstr ""
+msgid "Server responded with {{statusCode}} code."
+msgstr "Le serveur a répondu avec un code {{statusCode}}."
#: src/App/Page.php:269
-msgid "You can't upload any more files."
-msgstr ""
+msgid "Cancel upload"
+msgstr "Annuler l'envoi"
-#: src/App/Page.php:347
+#: 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"
@@ -785,33 +808,33 @@ msgstr "Page introuvable."
msgid "You must be logged in to use addons. "
msgstr "Vous devez être connecté pour utiliser les greffons."
-#: src/BaseModule.php:400
+#: 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:427
+#: src/BaseModule.php:430
msgid "All contacts"
msgstr "Tous les contacts"
-#: src/BaseModule.php:432 src/Content/Widget.php:239 src/Core/ACL.php:195
-#: src/Module/Contact.php:407 src/Module/PermissionTooltip.php:127
-#: src/Module/PermissionTooltip.php:149
+#: src/BaseModule.php:435 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 "Abonnés"
-#: src/BaseModule.php:437 src/Content/Widget.php:240
-#: src/Module/Contact.php:408
+#: src/BaseModule.php:440 src/Content/Widget.php:240
+#: src/Module/Contact.php:418
msgid "Following"
msgstr "Abonnements"
-#: src/BaseModule.php:442 src/Content/Widget.php:241
-#: src/Module/Contact.php:409
+#: src/BaseModule.php:445 src/Content/Widget.php:241
+#: src/Module/Contact.php:421
msgid "Mutual friends"
msgstr "Contact mutuels"
-#: src/BaseModule.php:450
+#: src/BaseModule.php:453
msgid "Common"
msgstr "Commun"
@@ -961,7 +984,7 @@ 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:663
+#: 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
@@ -1134,381 +1157,514 @@ msgstr "pnut"
#: src/Content/ContactSelector.php:143
msgid "Tumblr"
-msgstr ""
+msgstr "Tumblr"
-#: src/Content/ContactSelector.php:179
+#: 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:218
+#: src/Content/Conversation.php:226
msgid "and"
msgstr "et"
-#: src/Content/Conversation.php:221
+#: src/Content/Conversation.php:229
#, php-format
msgid "and %d other people"
msgstr "et %d autres personnes"
-#: src/Content/Conversation.php:227
+#: 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:229
-#, 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:231
-#, php-format
-msgid "%2$s attends."
-msgid_plural "%2$s attend."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-
-#: src/Content/Conversation.php:233
-#, 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:235
-#, php-format
-msgid "%2$s attends maybe."
-msgid_plural "%2$s attend maybe."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+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$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:241
+#, php-format
+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$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:245
+#, php-format
msgid "%2$s reshared this."
msgid_plural "%2$s reshared this."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] "%2$s à partagé."
+msgstr[1] "%2$s ont partagé."
+msgstr[2] "%2$s ont partagé."
-#: src/Content/Conversation.php:266
+#: src/Content/Conversation.php:274
#, php-format
msgid " likes this"
msgid_plural " like this"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] " aime"
+msgstr[1] " aiment"
+msgstr[2] " aiment"
-#: src/Content/Conversation.php:269
+#: 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[0] " n'aime pas"
+msgstr[1] " n'aiment pas"
+msgstr[2] " n'aiment pas"
-#: src/Content/Conversation.php:272
+#: src/Content/Conversation.php:280
#, php-format
msgid " attends"
msgid_plural " attend"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] " participe"
+msgstr[1] " participent"
+msgstr[2] " participent"
-#: src/Content/Conversation.php:275
+#: src/Content/Conversation.php:283
#, php-format
msgid " doesn't attend"
msgid_plural " don't attend"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] " ne participe pas"
+msgstr[1] " ne participent pas"
+msgstr[2] " ne participent pas"
-#: src/Content/Conversation.php:278
+#: src/Content/Conversation.php:286
#, php-format
msgid " attends maybe"
msgid_plural " attend maybe"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] " participe peut-être"
+msgstr[1] " participent peut-être"
+msgstr[2] " participent peut-être"
-#: src/Content/Conversation.php:281
+#: src/Content/Conversation.php:289
#, php-format
msgid " reshared this"
msgid_plural " reshared this"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] " a partagé"
+msgstr[1] " ont partagé"
+msgstr[2] " ont partagé"
-#: src/Content/Conversation.php:328
+#: src/Content/Conversation.php:336
msgid "Visible to everybody"
msgstr "Visible par tout le monde"
-#: src/Content/Conversation.php:329 src/Module/Item/Compose.php:198
-#: src/Object/Post.php:1073
+#: 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 "Veuillez entrer une URL d'image/vidéo/page web."
-#: src/Content/Conversation.php:330
+#: src/Content/Conversation.php:338
msgid "Tag term:"
-msgstr "Étiquette :"
+msgstr "Tag :"
-#: src/Content/Conversation.php:331 src/Module/Filer/SaveTag.php:73
+#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73
msgid "Save to Folder:"
msgstr "Sauver dans le Dossier :"
-#: src/Content/Conversation.php:332
+#: src/Content/Conversation.php:340
msgid "Where are you right now?"
msgstr "Où êtes-vous actuellement ?"
-#: src/Content/Conversation.php:333
+#: src/Content/Conversation.php:341
msgid "Delete item(s)?"
msgstr "Supprimer les élément(s) ?"
-#: src/Content/Conversation.php:345 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:355
+#: src/Content/Conversation.php:363
msgid "New Post"
msgstr "Nouvelle publication"
-#: src/Content/Conversation.php:358
+#: src/Content/Conversation.php:366
msgid "Share"
msgstr "Partager"
-#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:132
+#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132
msgid "upload photo"
msgstr "envoi image"
-#: src/Content/Conversation.php:362 src/Module/Post/Edit.php:133
+#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133
msgid "Attach file"
msgstr "Joindre fichier"
-#: src/Content/Conversation.php:363 src/Module/Post/Edit.php:134
+#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134
msgid "attach file"
msgstr "ajout fichier"
-#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190
-#: src/Module/Post/Edit.php:171 src/Object/Post.php:1065
+#: 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 "Gras"
-#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191
-#: src/Module/Post/Edit.php:172 src/Object/Post.php:1066
+#: 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 "Italique"
-#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192
-#: src/Module/Post/Edit.php:173 src/Object/Post.php:1067
+#: 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 "Souligné"
-#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193
-#: src/Module/Post/Edit.php:174 src/Object/Post.php:1068
+#: 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 "Citation"
-#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194
-#: src/Module/Post/Edit.php:175 src/Object/Post.php:1069
+#: 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 "Ajouter des émojis"
+
+#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195
+#: src/Object/Post.php:1100
+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:1103
msgid "Code"
msgstr "Code"
-#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195
-#: src/Object/Post.php:1070
+#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197
+#: src/Object/Post.php:1104
msgid "Image"
msgstr "Image"
-#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:196
-#: src/Module/Post/Edit.php:176 src/Object/Post.php:1071
+#: 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 "Lien"
-#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:197
-#: src/Module/Post/Edit.php:177 src/Object/Post.php:1072
+#: 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 "Lien ou média"
-#: src/Content/Conversation.php:372
+#: src/Content/Conversation.php:382
msgid "Video"
msgstr "Vidéo"
-#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:200
+#: 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:374 src/Module/Post/Edit.php:142
+#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142
msgid "set location"
msgstr "spéc. localisation"
-#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:143
+#: 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:376 src/Module/Post/Edit.php:144
+#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144
msgid "clear location"
msgstr "supp. localisation"
-#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:205
+#: 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:380 src/Module/Item/Compose.php:206
+#: 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:385 src/Module/Item/Compose.php:222
+#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224
msgid "Scheduled at"
msgstr "Prévu pour"
-#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:146
+#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146
msgid "Permission settings"
msgstr "Réglages des permissions"
-#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:155
+#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155
msgid "Public post"
msgstr "Publication publique"
-#: src/Content/Conversation.php:414 src/Content/Widget/VCard.php:113
-#: src/Model/Profile.php:469 src/Module/Admin/Logs/View.php:92
-#: src/Module/Post/Edit.php:180
+#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:125
+#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92
+#: src/Module/Post/Edit.php:181
msgid "Message"
msgstr "Message"
-#: src/Content/Conversation.php:415 src/Module/Post/Edit.php:181
+#: 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:417 src/Module/Post/Edit.php:184
+#: 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:677 src/Object/Post.php:244
-msgid "Pinned item"
-msgstr "Élément épinglé"
-
-#: src/Content/Conversation.php:693 src/Object/Post.php:496
-#: src/Object/Post.php:497
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Voir le profil de %s @ %s"
-
-#: src/Content/Conversation.php:706 src/Object/Post.php:484
-msgid "Categories:"
-msgstr "Catégories :"
-
-#: src/Content/Conversation.php:707 src/Object/Post.php:485
-msgid "Filed under:"
-msgstr "Rangé sous :"
-
-#: src/Content/Conversation.php:715 src/Object/Post.php:510
-#, php-format
-msgid "%s from %s"
-msgstr "%s de %s"
-
-#: src/Content/Conversation.php:731
-msgid "View in context"
-msgstr "Voir dans le contexte"
-
-#: src/Content/Conversation.php:796
+#: src/Content/Conversation.php:595
msgid "remove"
msgstr "enlever"
-#: src/Content/Conversation.php:800
+#: src/Content/Conversation.php:599
msgid "Delete Selected Items"
msgstr "Supprimer les éléments sélectionnés"
-#: src/Content/Conversation.php:865 src/Content/Conversation.php:868
-#: src/Content/Conversation.php:871 src/Content/Conversation.php:874
-#: src/Content/Conversation.php:877
+#: 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:880
+#: src/Content/Conversation.php:769
#, php-format
msgid "You are following %s."
msgstr "Vous suivez %s."
-#: src/Content/Conversation.php:883
-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:896
+#: 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é ceci."
+msgstr "%s a partagé."
-#: src/Content/Conversation.php:898
+#: src/Content/Conversation.php:798
msgid "Reshared"
msgstr "Partagé"
-#: src/Content/Conversation.php:898
+#: src/Content/Conversation.php:798
#, php-format
msgid "Reshared by %s <%s>"
msgstr "Partagé par %s <%s>"
-#: src/Content/Conversation.php:901
+#: 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:904
+#: src/Content/Conversation.php:804
msgid "Stored for general reasons"
msgstr "Stocké pour des raisons générales."
-#: src/Content/Conversation.php:907
+#: src/Content/Conversation.php:807
msgid "Global post"
msgstr "Publication globale"
-#: src/Content/Conversation.php:910
+#: src/Content/Conversation.php:810
msgid "Sent via an relay server"
msgstr "Envoyé via un serveur relais"
-#: src/Content/Conversation.php:910
+#: 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:913
+#: src/Content/Conversation.php:813
msgid "Fetched"
msgstr "Récupéré"
-#: src/Content/Conversation.php:913
+#: 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:916
+#: 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:919
+#: src/Content/Conversation.php:819
msgid "Local delivery"
msgstr "Distribution locale"
-#: src/Content/Conversation.php:922
+#: 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:925
+#: src/Content/Conversation.php:825
msgid "Distributed"
msgstr "Distribué"
-#: src/Content/Conversation.php:928
+#: src/Content/Conversation.php:828
msgid "Pushed to us"
msgstr "Poussé vers nous"
+#: src/Content/Conversation.php:1492 src/Object/Post.php:247
+msgid "Pinned item"
+msgstr "Élément épinglé"
+
+#: src/Content/Conversation.php:1509 src/Object/Post.php:521
+#: src/Object/Post.php:522
+#, php-format
+msgid "View %s's profile @ %s"
+msgstr "Voir le profil de %s @ %s"
+
+#: src/Content/Conversation.php:1522 src/Object/Post.php:509
+msgid "Categories:"
+msgstr "Catégories :"
+
+#: src/Content/Conversation.php:1523 src/Object/Post.php:510
+msgid "Filed under:"
+msgstr "Rangé sous :"
+
+#: 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 "Voir dans le contexte"
+
+#: src/Content/Conversation/Factory/Timeline.php:59
+msgid "For you"
+msgstr "Pour vous"
+
+#: src/Content/Conversation/Factory/Timeline.php:59
+msgid "Posts from contacts you interact with and who interact with you"
+msgstr "Publications de contacts qui interagissent avec vous"
+
+#: src/Content/Conversation/Factory/Timeline.php:60
+msgid "What's Hot"
+msgstr "Quoi de neuf"
+
+#: src/Content/Conversation/Factory/Timeline.php:60
+msgid "Posts with a lot of interactions"
+msgstr "Publications avec beaucoup d'interactions"
+
+#: src/Content/Conversation/Factory/Timeline.php:61
+#, php-format
+msgid "Posts in %s"
+msgstr "Publications dans %s"
+
+#: src/Content/Conversation/Factory/Timeline.php:62
+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/Timeline.php:63
+msgid "Sharers of sharers"
+msgstr "Partageurs de partageurs"
+
+#: src/Content/Conversation/Factory/Timeline.php:63
+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/Timeline.php:64
+msgid "Images"
+msgstr "Images"
+
+#: src/Content/Conversation/Factory/Timeline.php:64
+msgid "Posts with images"
+msgstr "Publications avec images"
+
+#: src/Content/Conversation/Factory/Timeline.php:65
+msgid "Audio"
+msgstr "Audio"
+
+#: src/Content/Conversation/Factory/Timeline.php:65
+msgid "Posts with audio"
+msgstr "Publications avec audio"
+
+#: src/Content/Conversation/Factory/Timeline.php:66
+msgid "Videos"
+msgstr "Vidéos"
+
+#: src/Content/Conversation/Factory/Timeline.php:66
+msgid "Posts with videos"
+msgstr "Publications avec vidéos"
+
+#: src/Content/Conversation/Factory/Timeline.php:84
+msgid "Local Community"
+msgstr "Communauté locale"
+
+#: src/Content/Conversation/Factory/Timeline.php:84
+msgid "Posts from local users on this server"
+msgstr "Conversations publiques démarrées par des utilisateurs locaux"
+
+#: src/Content/Conversation/Factory/Timeline.php:88
+msgid "Global Community"
+msgstr "Communauté globale"
+
+#: src/Content/Conversation/Factory/Timeline.php:88
+msgid "Posts from users of the whole federated network"
+msgstr "Conversations publiques provenant du réseau fédéré global"
+
+#: src/Content/Conversation/Factory/Timeline.php:102
+msgid "Latest Activity"
+msgstr "Activité récente"
+
+#: src/Content/Conversation/Factory/Timeline.php:102
+msgid "Sort by latest activity"
+msgstr "Trier par activité récente"
+
+#: src/Content/Conversation/Factory/Timeline.php:103
+msgid "Latest Posts"
+msgstr "Dernières publications"
+
+#: src/Content/Conversation/Factory/Timeline.php:103
+msgid "Sort by post received date"
+msgstr "Trier par date de réception"
+
+#: src/Content/Conversation/Factory/Timeline.php:104
+msgid "Latest Creation"
+msgstr "Dernière création"
+
+#: src/Content/Conversation/Factory/Timeline.php:104
+msgid "Sort by post creation date"
+msgstr "Trier par date de création des publications"
+
+#: src/Content/Conversation/Factory/Timeline.php:105
+#: src/Module/Settings/Profile/Index.php:260
+msgid "Personal"
+msgstr "Personnel"
+
+#: src/Content/Conversation/Factory/Timeline.php:105
+msgid "Posts that mention or involve you"
+msgstr "Publications qui vous concernent"
+
+#: src/Content/Conversation/Factory/Timeline.php:106 src/Object/Post.php:380
+msgid "Starred"
+msgstr "Mis en avant"
+
+#: src/Content/Conversation/Factory/Timeline.php:106
+msgid "Favourite Posts"
+msgstr "Publications favorites"
+
#: src/Content/Feature.php:96
msgid "General Features"
msgstr "Fonctions générales"
@@ -1538,13 +1694,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"
@@ -1584,20 +1740,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"
@@ -1621,385 +1777,394 @@ msgid ""
"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/ForumManager.php:151 src/Content/Nav.php:276
-#: src/Content/Text/HTML.php:878 src/Content/Widget.php:528
-msgid "Forums"
-msgstr "Forums"
+#: 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 "Groupes"
-#: src/Content/ForumManager.php:153
-msgid "External link to forum"
-msgstr "Lien sortant vers le forum"
+#: src/Content/GroupManager.php:154
+msgid "External link to group"
+msgstr "Lien externe vers le groupe"
-#: src/Content/ForumManager.php:156 src/Content/Widget.php:507
+#: 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:409
-#: src/Content/Widget.php:508
+#: 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:326 src/Model/Item.php:2922
+#: src/Content/GroupManager.php:160
+msgid "Create new group"
+msgstr "Créer un nouveau groupe"
+
+#: src/Content/Item.php:331 src/Model/Item.php:3021
msgid "event"
msgstr "évènement"
-#: src/Content/Item.php:329 src/Content/Item.php:339
+#: src/Content/Item.php:334 src/Content/Item.php:344
msgid "status"
msgstr "le statut"
-#: src/Content/Item.php:335 src/Model/Item.php:2924
+#: src/Content/Item.php:340 src/Model/Item.php:3023
#: src/Module/Post/Tag/Add.php:123
msgid "photo"
msgstr "photo"
-#: src/Content/Item.php:349 src/Module/Post/Tag/Add.php:141
+#: 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:419 view/theme/frio/theme.php:262
+#: src/Content/Item.php:428 view/theme/frio/theme.php:262
msgid "Follow Thread"
msgstr "Suivre le fil"
-#: src/Content/Item.php:420 src/Model/Contact.php:1204
+#: src/Content/Item.php:429 src/Model/Contact.php:1246
msgid "View Status"
msgstr "Voir les statuts"
-#: src/Content/Item.php:421 src/Content/Item.php:441
-#: src/Model/Contact.php:1148 src/Model/Contact.php:1196
-#: src/Model/Contact.php:1205 src/Module/Directory.php:157
-#: src/Module/Settings/Profile/Index.php:233
+#: src/Content/Item.php:430 src/Content/Item.php:451
+#: src/Model/Contact.php:1176 src/Model/Contact.php:1237
+#: src/Model/Contact.php:1247 src/Module/Directory.php:157
+#: src/Module/Settings/Profile/Index.php:259
msgid "View Profile"
msgstr "Voir le profil"
-#: src/Content/Item.php:422 src/Model/Contact.php:1206
+#: src/Content/Item.php:431 src/Model/Contact.php:1248
msgid "View Photos"
msgstr "Voir les photos"
-#: src/Content/Item.php:423 src/Model/Contact.php:1197
-#: src/Model/Contact.php:1207
+#: src/Content/Item.php:432 src/Model/Contact.php:1215
msgid "Network Posts"
msgstr "Publications du réseau"
-#: src/Content/Item.php:424 src/Model/Contact.php:1198
-#: src/Model/Contact.php:1208
+#: src/Content/Item.php:433 src/Model/Contact.php:1239
+#: src/Model/Contact.php:1250
msgid "View Contact"
msgstr "Voir Contact"
-#: src/Content/Item.php:425 src/Model/Contact.php:1209
+#: src/Content/Item.php:434 src/Model/Contact.php:1251
msgid "Send PM"
msgstr "Message privé"
-#: src/Content/Item.php:426 src/Module/Contact.php:439
-#: src/Module/Contact/Profile.php:477
+#: 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:427 src/Module/Contact.php:440
-#: src/Module/Contact/Profile.php:485
+#: 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:428 src/Module/Contact.php:441
-#: src/Module/Contact/Profile.php:493
+#: src/Content/Item.php:437 src/Module/Contact.php:470
+#: src/Module/Contact/Profile.php:527
msgid "Collapse"
-msgstr "Fusionner"
+msgstr "Réduire"
-#: src/Content/Item.php:432 src/Object/Post.php:465
+#: src/Content/Item.php:438 src/Object/Post.php:288
+#, php-format
+msgid "Ignore %s server"
+msgstr "Ignorer le serveur %s"
+
+#: src/Content/Item.php:442 src/Object/Post.php:490
msgid "Languages"
msgstr "Langues"
-#: src/Content/Item.php:438 src/Content/Widget.php:80
-#: src/Model/Contact.php:1199 src/Model/Contact.php:1210
-#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:196
+#: src/Content/Item.php:448 src/Content/Widget.php:80
+#: src/Model/Contact.php:1240 src/Model/Contact.php:1252
+#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:195
msgid "Connect/Follow"
msgstr "Se connecter/Suivre"
-#: src/Content/Item.php:863
+#: src/Content/Item.php:882
msgid "Unable to fetch user."
msgstr "Impossible de récupérer l'utilisateur."
-#: src/Content/Nav.php:120
+#: src/Content/Nav.php:121
msgid "Nothing new here"
msgstr "Rien de neuf ici"
-#: src/Content/Nav.php:124 src/Module/Special/HTTPException.php:77
+#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77
msgid "Go back"
msgstr "Revenir"
-#: src/Content/Nav.php:125
+#: src/Content/Nav.php:126
msgid "Clear notifications"
msgstr "Effacer les notifications"
-#: src/Content/Nav.php:126 src/Content/Text/HTML.php:865
-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:220 src/Module/Security/Login.php:157
+#: src/Content/Nav.php:222 src/Module/Security/Login.php:157
msgid "Logout"
msgstr "Se déconnecter"
-#: src/Content/Nav.php:220
+#: src/Content/Nav.php:222
msgid "End this session"
msgstr "Mettre fin à cette session"
-#: src/Content/Nav.php:222 src/Module/Bookmarklet.php:44
+#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44
#: src/Module/Security/Login.php:158
msgid "Login"
msgstr "Connexion"
-#: src/Content/Nav.php:222
+#: src/Content/Nav.php:224
msgid "Sign in"
msgstr "Se connecter"
-#: src/Content/Nav.php:227 src/Module/BaseProfile.php:57
-#: src/Module/Contact.php:483
+#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57
+#: src/Module/Contact.php:512
msgid "Conversations"
msgstr "Discussions"
-#: src/Content/Nav.php:227
+#: src/Content/Nav.php:229
msgid "Conversations you started"
msgstr "Discussions que vous avez commencées"
-#: src/Content/Nav.php:228 src/Module/BaseProfile.php:49
-#: src/Module/BaseSettings.php:100 src/Module/Contact.php:475
-#: src/Module/Contact/Profile.php:392 src/Module/Profile/Profile.php:268
+#: 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:228 view/theme/frio/theme.php:230
+#: src/Content/Nav.php:230 view/theme/frio/theme.php:230
msgid "Your profile page"
msgstr "Votre page de profil"
-#: src/Content/Nav.php:229 src/Module/BaseProfile.php:65
+#: 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:229 view/theme/frio/theme.php:234
+#: src/Content/Nav.php:231 view/theme/frio/theme.php:234
msgid "Your photos"
msgstr "Vos photos"
-#: src/Content/Nav.php:230 src/Module/BaseProfile.php:73
-#: src/Module/BaseProfile.php:76 src/Module/Contact.php:499
+#: 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:230 view/theme/frio/theme.php:235
+#: 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:231 src/Content/Nav.php:291
+#: 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:252 view/theme/frio/theme.php:236
+#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236
#: view/theme/frio/theme.php:240
msgid "Calendar"
msgstr "Calendrier"
-#: src/Content/Nav.php:231 view/theme/frio/theme.php:236
+#: src/Content/Nav.php:233 view/theme/frio/theme.php:236
msgid "Your calendar"
msgstr "Votre calendrier"
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Personal notes"
msgstr "Notes personnelles"
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Your personal notes"
msgstr "Vos notes personnelles"
-#: src/Content/Nav.php:249 src/Content/Nav.php:306
+#: src/Content/Nav.php:251 src/Content/Nav.php:308
msgid "Home"
msgstr "Profil"
-#: src/Content/Nav.php:249 src/Module/Settings/OAuth.php:73
+#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73
msgid "Home Page"
msgstr "Page d'accueil"
-#: src/Content/Nav.php:253 src/Module/Register.php:168
+#: 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:253
+#: src/Content/Nav.php:255
msgid "Create an account"
msgstr "Créer un compte"
-#: src/Content/Nav.php:259 src/Module/Help.php:67
+#: 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:241
+#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240
msgid "Help"
msgstr "Aide"
-#: src/Content/Nav.php:259
+#: src/Content/Nav.php:261
msgid "Help and documentation"
msgstr "Aide et documentation"
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:265
msgid "Apps"
msgstr "Applications"
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:265
msgid "Addon applications, utilities, games"
msgstr "Applications supplémentaires, utilitaires, jeux"
-#: src/Content/Nav.php:267 src/Content/Text/HTML.php:863
+#: 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:267
+#: src/Content/Nav.php:269
msgid "Search site content"
msgstr "Rechercher dans le contenu du site"
-#: src/Content/Nav.php:270 src/Content/Text/HTML.php:872
+#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874
msgid "Full Text"
msgstr "Texte Entier"
-#: src/Content/Nav.php:271 src/Content/Text/HTML.php:873
+#: 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:272 src/Content/Nav.php:327
-#: src/Content/Text/HTML.php:874 src/Module/BaseProfile.php:127
-#: src/Module/BaseProfile.php:130 src/Module/Contact.php:410
-#: src/Module/Contact.php:506 view/theme/frio/theme.php:243
+#: 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:287
+#: src/Content/Nav.php:289
msgid "Community"
msgstr "Communauté"
-#: src/Content/Nav.php:287
+#: src/Content/Nav.php:289
msgid "Conversations on this and other servers"
msgstr "Flux public global"
-#: src/Content/Nav.php:294
+#: src/Content/Nav.php:296
msgid "Directory"
msgstr "Annuaire"
-#: src/Content/Nav.php:294
+#: src/Content/Nav.php:296
msgid "People directory"
msgstr "Annuaire des utilisateurs"
-#: src/Content/Nav.php:296 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:296
+#: src/Content/Nav.php:298
msgid "Information about this friendica instance"
msgstr "Information au sujet de cette instance de friendica"
-#: src/Content/Nav.php:299 src/Module/Admin/Tos.php:78
+#: 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:100
+#: src/Module/Tos.php:101
msgid "Terms of Service"
msgstr "Conditions de service"
-#: src/Content/Nav.php:299
+#: 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:304 view/theme/frio/theme.php:239
+#: src/Content/Nav.php:306 view/theme/frio/theme.php:239
msgid "Network"
msgstr "Réseau"
-#: src/Content/Nav.php:304 view/theme/frio/theme.php:239
+#: src/Content/Nav.php:306 view/theme/frio/theme.php:239
msgid "Conversations from your friends"
msgstr "Flux de conversations"
-#: src/Content/Nav.php:306 view/theme/frio/theme.php:229
+#: 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:310
+#: src/Content/Nav.php:312
msgid "Introductions"
msgstr "Introductions"
-#: src/Content/Nav.php:310
+#: src/Content/Nav.php:312
msgid "Friend Requests"
msgstr "Demande d'abonnement"
-#: src/Content/Nav.php:311 src/Module/BaseNotifications.php:149
+#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149
#: src/Module/Notifications/Introductions.php:75
msgid "Notifications"
msgstr "Notifications"
-#: src/Content/Nav.php:312
+#: src/Content/Nav.php:314
msgid "See all notifications"
msgstr "Voir toutes les notifications"
-#: src/Content/Nav.php:313 src/Module/Settings/Connectors.php:244
+#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244
msgid "Mark as seen"
msgstr "Marquer comme vu"
-#: src/Content/Nav.php:313
+#: 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:316 view/theme/frio/theme.php:241
+#: src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Private mail"
msgstr "Messages privés"
-#: src/Content/Nav.php:317
+#: src/Content/Nav.php:319
msgid "Inbox"
msgstr "Messages entrants"
-#: src/Content/Nav.php:318
+#: src/Content/Nav.php:320
msgid "Outbox"
msgstr "Messages sortants"
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Accounts"
msgstr "Comptes"
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Manage other pages"
msgstr "Gérer les autres pages"
-#: 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/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 "Réglages"
-#: src/Content/Nav.php:325 view/theme/frio/theme.php:242
+#: src/Content/Nav.php:327 view/theme/frio/theme.php:242
msgid "Account settings"
msgstr "Compte"
-#: src/Content/Nav.php:327 view/theme/frio/theme.php:243
+#: 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:332 src/Module/BaseAdmin.php:119
+#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119
msgid "Admin"
msgstr "Admin"
-#: src/Content/Nav.php:332
+#: src/Content/Nav.php:334
msgid "Site setup and configuration"
msgstr "Démarrage et configuration du site"
-#: src/Content/Nav.php:333 src/Module/BaseModeration.php:127
+#: 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/Summary.php:76
+#: 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
@@ -2007,23 +2172,23 @@ msgstr "Démarrage et configuration du site"
msgid "Moderation"
msgstr "Modération"
-#: src/Content/Nav.php:333
+#: src/Content/Nav.php:335
msgid "Content and user moderation"
msgstr "Modération du contenu et des utilisateurs"
-#: src/Content/Nav.php:336
+#: src/Content/Nav.php:338
msgid "Navigation"
msgstr "Navigation"
-#: src/Content/Nav.php:336
+#: 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é"
@@ -2043,51 +2208,51 @@ msgstr "suivant"
msgid "last"
msgstr "dernier"
-#: src/Content/Text/BBCode.php:713 src/Content/Text/BBCode.php:1599
-#: src/Content/Text/BBCode.php:1600
+#: src/Content/Text/BBCode.php:696 src/Content/Text/BBCode.php:1636
+#: src/Content/Text/BBCode.php:1637
msgid "Image/photo"
msgstr "Image/photo"
-#: src/Content/Text/BBCode.php:931
+#: src/Content/Text/BBCode.php:914
#, php-format
msgid "%2$s %3$s"
msgstr "%2$s %3$s"
-#: src/Content/Text/BBCode.php:956 src/Model/Item.php:3607
-#: src/Model/Item.php:3613 src/Model/Item.php:3614
+#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3763
+#: src/Model/Item.php:3769 src/Model/Item.php:3770
msgid "Link to source"
msgstr "Lien vers la source"
-#: src/Content/Text/BBCode.php:1506 src/Content/Text/HTML.php:902
+#: src/Content/Text/BBCode.php:1543 src/Content/Text/HTML.php:904
msgid "Click to open/close"
msgstr "Cliquer pour ouvrir/fermer"
-#: src/Content/Text/BBCode.php:1539
+#: src/Content/Text/BBCode.php:1576
msgid "$1 wrote:"
msgstr "$1 a écrit :"
-#: src/Content/Text/BBCode.php:1604 src/Content/Text/BBCode.php:1605
+#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642
msgid "Encrypted content"
msgstr "Contenu chiffré"
-#: src/Content/Text/BBCode.php:1869
+#: src/Content/Text/BBCode.php:1901
msgid "Invalid source protocol"
msgstr "Protocole d'image invalide"
-#: src/Content/Text/BBCode.php:1888
+#: src/Content/Text/BBCode.php:1920
msgid "Invalid link protocol"
msgstr "Protocole de lien invalide"
-#: src/Content/Text/HTML.php:780
+#: src/Content/Text/HTML.php:782
msgid "Loading more entries..."
msgstr "Chargement de résultats supplémentaires..."
-#: src/Content/Text/HTML.php:781
+#: src/Content/Text/HTML.php:783
msgid "The end"
msgstr "Fin"
-#: src/Content/Text/HTML.php:857 src/Content/Widget/VCard.php:109
-#: src/Model/Profile.php:463 src/Module/Contact/Profile.php:437
+#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:121
+#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471
msgid "Follow"
msgstr "S'abonner"
@@ -2115,88 +2280,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:194
+#: 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:195
+#: 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:197
+#: 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:432
-#: src/Module/Directory.php:96 view/theme/vier/theme.php:198
+#: 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:83 src/Module/Contact/Suggestions.php:73
-#: view/theme/vier/theme.php:199
+#: view/theme/vier/theme.php:198
msgid "Friend Suggestions"
msgstr "Suggestions d'abonnement"
-#: src/Content/Widget.php:84 view/theme/vier/theme.php:200
+#: 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:201
+#: 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:202
+#: 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:88
-#: view/theme/vier/theme.php:203
+#: view/theme/vier/theme.php:202
msgid "Global Directory"
msgstr "Annuaire global"
-#: src/Content/Widget.php:89 view/theme/vier/theme.php:205
+#: src/Content/Widget.php:89 view/theme/vier/theme.php:204
msgid "Local Directory"
msgstr "Annuaire local"
-#: src/Content/Widget.php:215 src/Model/Group.php:587
-#: src/Module/Contact.php:394 src/Module/Welcome.php:76
-msgid "Groups"
-msgstr "Groupes"
+#: src/Content/Widget.php:215 src/Model/Circle.php:600
+#: src/Module/Contact.php:401 src/Module/Welcome.php:76
+msgid "Circles"
+msgstr "Cercles"
#: src/Content/Widget.php:217
msgid "Everyone"
msgstr "Tous les groupes"
-#: src/Content/Widget.php:246
+#: 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:248 src/Module/Contact.php:338
-#: src/Module/Group.php:291
+#: 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:287
+#: src/Content/Widget.php:288
msgid "Protocols"
msgstr "Protocoles"
-#: src/Content/Widget.php:289
+#: src/Content/Widget.php:290
msgid "All Protocols"
msgstr "Tous les protocoles"
-#: src/Content/Widget.php:317
+#: src/Content/Widget.php:318
msgid "Saved Folders"
msgstr "Dossiers sauvegardés"
-#: src/Content/Widget.php:319 src/Content/Widget.php:350
+#: src/Content/Widget.php:320 src/Content/Widget.php:351
msgid "Everything"
msgstr "Tout"
-#: src/Content/Widget.php:348
+#: src/Content/Widget.php:349
msgid "Categories"
msgstr "Catégories"
-#: src/Content/Widget.php:405
+#: src/Content/Widget.php:406
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
@@ -2204,30 +2373,38 @@ msgstr[0] "%d contact en commun"
msgstr[1] "%d contacts en commun"
msgstr[2] "%d contacts en commun"
-#: src/Content/Widget.php:501
+#: src/Content/Widget.php:506
msgid "Archives"
msgstr "Archives"
-#: src/Content/Widget.php:525
+#: 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:526
+#: src/Content/Widget.php:535
msgid "Organisations"
msgstr "Organisations"
-#: src/Content/Widget.php:527 src/Model/Contact.php:1656
+#: src/Content/Widget.php:536 src/Model/Contact.php:1718
msgid "News"
msgstr "Nouvelles"
-#: src/Content/Widget.php:531 src/Module/Settings/Account.php:453
+#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454
msgid "Account Types"
msgstr "Type de compte"
-#: src/Content/Widget.php:532 src/Module/Moderation/BaseUsers.php:69
+#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69
msgid "All"
msgstr "Tout"
+#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266
+msgid "Channels"
+msgstr "Chaînes"
+
#: src/Content/Widget/CalendarExport.php:56
msgid "Export"
msgstr "Exporter"
@@ -2274,37 +2451,50 @@ msgstr[2] "Tendances (dernières %d heures)"
#: 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:378
-#: src/Module/Contact/Profile.php:381 src/Module/Profile/Profile.php:199
+#: src/Content/Widget/VCard.php:114 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:383 src/Module/Profile/Profile.php:203
+#: src/Content/Widget/VCard.php:115 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: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/Content/Widget/VCard.php:116 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:107 src/Model/Profile.php:476
+#: src/Content/Widget/VCard.php:119 src/Model/Profile.php:474
#: src/Module/Notifications/Introductions.php:201
msgid "Network:"
msgstr "Réseau"
-#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1200
-#: src/Model/Contact.php:1211 src/Model/Profile.php:465
-#: src/Module/Contact/Profile.php:429
+#: src/Content/Widget/VCard.php:123 src/Model/Contact.php:1241
+#: src/Model/Contact.php:1253 src/Model/Profile.php:463
+#: src/Module/Contact/Profile.php:463
msgid "Unfollow"
msgstr "Se désabonner"
+#: src/Content/Widget/VCard.php:127 src/Model/Contact.php:1205
+#: src/Module/Moderation/Item/Source.php:85
+msgid "Mention"
+msgstr "Mention"
+
+#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1202
+msgid "Post to group"
+msgstr "Publier sur le groupe"
+
+#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1212
+msgid "View group"
+msgstr "Voir le groupe"
+
#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269
msgid "Yourself"
msgstr "Vous-même"
@@ -2342,9 +2532,9 @@ msgstr "Ce contenu sera visible uniquement par les groupes et contacts listés d
#: src/Core/ACL.php:324
msgid ""
-"Start typing the name of a contact or a group to show a filtered list. You "
-"can also mention the special groups \"Followers\" and \"Mutuals\"."
-msgstr "Commencer à écrire le nom d'un contact ou d'un groupe pour afficher une liste filtrée. Vous pouvez aussi mentionner les groupes spéciaux \"Followers\" et \"Mutuels\"."
+"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:"
@@ -2685,161 +2875,172 @@ msgstr "Base de données déjà en cours d'utilisation."
msgid "Could not connect to database."
msgstr "Impossible de se connecter à la base."
-#: src/Core/L10n.php:408 src/Model/Event.php:432
-#: src/Module/Settings/Display.php:222
+#: src/Core/L10n.php:494 src/Model/Event.php:430
+#: src/Module/Settings/Display.php:235
msgid "Monday"
msgstr "Lundi"
-#: src/Core/L10n.php:408 src/Model/Event.php:433
-#: src/Module/Settings/Display.php:223
+#: src/Core/L10n.php:494 src/Model/Event.php:431
+#: src/Module/Settings/Display.php:236
msgid "Tuesday"
msgstr "Mardi"
-#: src/Core/L10n.php:408 src/Model/Event.php:434
-#: src/Module/Settings/Display.php:224
+#: src/Core/L10n.php:494 src/Model/Event.php:432
+#: src/Module/Settings/Display.php:237
msgid "Wednesday"
msgstr "Mercredi"
-#: src/Core/L10n.php:408 src/Model/Event.php:435
-#: src/Module/Settings/Display.php:225
+#: src/Core/L10n.php:494 src/Model/Event.php:433
+#: src/Module/Settings/Display.php:238
msgid "Thursday"
msgstr "Jeudi"
-#: src/Core/L10n.php:408 src/Model/Event.php:436
-#: src/Module/Settings/Display.php:226
+#: src/Core/L10n.php:494 src/Model/Event.php:434
+#: src/Module/Settings/Display.php:239
msgid "Friday"
msgstr "Vendredi"
-#: src/Core/L10n.php:408 src/Model/Event.php:437
-#: src/Module/Settings/Display.php:227
+#: src/Core/L10n.php:494 src/Model/Event.php:435
+#: src/Module/Settings/Display.php:240
msgid "Saturday"
msgstr "Samedi"
-#: src/Core/L10n.php:408 src/Model/Event.php:431
-#: src/Module/Settings/Display.php:221
+#: src/Core/L10n.php:494 src/Model/Event.php:429
+#: src/Module/Settings/Display.php:234
msgid "Sunday"
msgstr "Dimanche"
-#: src/Core/L10n.php:412 src/Model/Event.php:452
+#: src/Core/L10n.php:498 src/Model/Event.php:450
msgid "January"
msgstr "Janvier"
-#: src/Core/L10n.php:412 src/Model/Event.php:453
+#: src/Core/L10n.php:498 src/Model/Event.php:451
msgid "February"
msgstr "Février"
-#: src/Core/L10n.php:412 src/Model/Event.php:454
+#: src/Core/L10n.php:498 src/Model/Event.php:452
msgid "March"
msgstr "Mars"
-#: src/Core/L10n.php:412 src/Model/Event.php:455
+#: src/Core/L10n.php:498 src/Model/Event.php:453
msgid "April"
msgstr "Avril"
-#: src/Core/L10n.php:412 src/Core/L10n.php:431 src/Model/Event.php:443
+#: src/Core/L10n.php:498 src/Core/L10n.php:517 src/Model/Event.php:441
msgid "May"
msgstr "Mai"
-#: src/Core/L10n.php:412 src/Model/Event.php:456
+#: src/Core/L10n.php:498 src/Model/Event.php:454
msgid "June"
msgstr "Juin"
-#: src/Core/L10n.php:412 src/Model/Event.php:457
+#: src/Core/L10n.php:498 src/Model/Event.php:455
msgid "July"
msgstr "Juillet"
-#: src/Core/L10n.php:412 src/Model/Event.php:458
+#: src/Core/L10n.php:498 src/Model/Event.php:456
msgid "August"
msgstr "Août"
-#: src/Core/L10n.php:412 src/Model/Event.php:459
+#: src/Core/L10n.php:498 src/Model/Event.php:457
msgid "September"
msgstr "Septembre"
-#: src/Core/L10n.php:412 src/Model/Event.php:460
+#: src/Core/L10n.php:498 src/Model/Event.php:458
msgid "October"
msgstr "Octobre"
-#: src/Core/L10n.php:412 src/Model/Event.php:461
+#: src/Core/L10n.php:498 src/Model/Event.php:459
msgid "November"
msgstr "Novembre"
-#: src/Core/L10n.php:412 src/Model/Event.php:462
+#: src/Core/L10n.php:498 src/Model/Event.php:460
msgid "December"
msgstr "Décembre"
-#: src/Core/L10n.php:427 src/Model/Event.php:424
+#: src/Core/L10n.php:513 src/Model/Event.php:422
msgid "Mon"
msgstr "Lun"
-#: src/Core/L10n.php:427 src/Model/Event.php:425
+#: src/Core/L10n.php:513 src/Model/Event.php:423
msgid "Tue"
msgstr "Mar"
-#: src/Core/L10n.php:427 src/Model/Event.php:426
+#: src/Core/L10n.php:513 src/Model/Event.php:424
msgid "Wed"
msgstr "Mer"
-#: src/Core/L10n.php:427 src/Model/Event.php:427
+#: src/Core/L10n.php:513 src/Model/Event.php:425
msgid "Thu"
msgstr "Jeu"
-#: src/Core/L10n.php:427 src/Model/Event.php:428
+#: src/Core/L10n.php:513 src/Model/Event.php:426
msgid "Fri"
msgstr "Ven"
-#: src/Core/L10n.php:427 src/Model/Event.php:429
+#: src/Core/L10n.php:513 src/Model/Event.php:427
msgid "Sat"
msgstr "Sam"
-#: src/Core/L10n.php:427 src/Model/Event.php:423
+#: src/Core/L10n.php:513 src/Model/Event.php:421
msgid "Sun"
msgstr "Dim"
-#: src/Core/L10n.php:431 src/Model/Event.php:439
+#: src/Core/L10n.php:517 src/Model/Event.php:437
msgid "Jan"
msgstr "Jan"
-#: src/Core/L10n.php:431 src/Model/Event.php:440
+#: src/Core/L10n.php:517 src/Model/Event.php:438
msgid "Feb"
msgstr "Fév"
-#: src/Core/L10n.php:431 src/Model/Event.php:441
+#: src/Core/L10n.php:517 src/Model/Event.php:439
msgid "Mar"
msgstr "Mar"
-#: src/Core/L10n.php:431 src/Model/Event.php:442
+#: src/Core/L10n.php:517 src/Model/Event.php:440
msgid "Apr"
msgstr "Avr"
-#: src/Core/L10n.php:431 src/Model/Event.php:444
+#: src/Core/L10n.php:517 src/Model/Event.php:442
msgid "Jun"
msgstr "Jun"
-#: src/Core/L10n.php:431 src/Model/Event.php:445
+#: src/Core/L10n.php:517 src/Model/Event.php:443
msgid "Jul"
msgstr "Jul"
-#: src/Core/L10n.php:431 src/Model/Event.php:446
+#: src/Core/L10n.php:517 src/Model/Event.php:444
msgid "Aug"
msgstr "Aoû"
-#: src/Core/L10n.php:431
+#: src/Core/L10n.php:517
msgid "Sep"
msgstr "Sep"
-#: src/Core/L10n.php:431 src/Model/Event.php:448
+#: src/Core/L10n.php:517 src/Model/Event.php:446
msgid "Oct"
msgstr "Oct"
-#: src/Core/L10n.php:431 src/Model/Event.php:449
+#: src/Core/L10n.php:517 src/Model/Event.php:447
msgid "Nov"
msgstr "Nov"
-#: src/Core/L10n.php:431 src/Model/Event.php:450
+#: src/Core/L10n.php:517 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:147 src/Core/Renderer.php:181
#: src/Render/FriendicaSmartyEngine.php:60
@@ -2884,22 +3085,22 @@ msgid ""
" 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:197
+#: 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:239
+#: 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:313
+#: 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:353
+#: src/Core/Update.php:339
#, php-format
msgid ""
"\n"
@@ -2907,18 +3108,18 @@ 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:359
+#: 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:363 src/Core/Update.php:391
+#: 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:385
+#: src/Core/Update.php:371
#, php-format
msgid ""
"\n"
@@ -2930,28 +3131,28 @@ msgstr "\n\t\t\t\tLa base de données de Friendica a bien été mise à jour de
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"
@@ -2959,20 +3160,20 @@ 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:221
+#: 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:225
+#: 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:482
+#: src/Database/DBStructure.php:493
#, php-format
msgid "%s: updating %s table."
msgstr "%s : Table %s en cours de mise à jour."
@@ -3003,82 +3204,122 @@ msgstr "Erreur du site"
msgid "Legacy module file not found: %s"
msgstr "Module original non trouvé: %s"
-#: src/Model/Contact.php:1217 src/Module/Moderation/Users/Pending.php:102
+#: 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/Circle.php:543
+msgid "Everybody"
+msgstr "Tout le monde"
+
+#: src/Model/Circle.php:562
+msgid "edit"
+msgstr "éditer"
+
+#: src/Model/Circle.php:599
+msgid "add"
+msgstr "ajouter"
+
+#: src/Model/Circle.php:604
+msgid "Edit circle"
+msgstr "Modifier le cercle"
+
+#: src/Model/Circle.php:605 src/Module/Circle.php:193
+msgid "Contacts not in any circle"
+msgstr "Contacts n'appartenant à aucun cercle"
+
+#: src/Model/Circle.php:607
+msgid "Create a new circle"
+msgstr "Créer un nouveau cercle"
+
+#: src/Model/Circle.php:608 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:609
+msgid "Edit circles"
+msgstr "Modifier les cercles"
+
+#: src/Model/Contact.php:1260 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:1652
+#: src/Model/Contact.php:1714
msgid "Organisation"
msgstr "Organisation"
-#: src/Model/Contact.php:1660
-msgid "Forum"
-msgstr "Forum"
+#: src/Model/Contact.php:1722
+msgid "Group"
+msgstr "Groupe"
-#: src/Model/Contact.php:2947
+#: src/Model/Contact.php:3025
msgid "Disallowed profile URL."
msgstr "URL de profil interdite."
-#: src/Model/Contact.php:2952 src/Module/Friendica.php:83
+#: src/Model/Contact.php:3030 src/Module/Friendica.php:101
msgid "Blocked domain"
msgstr "Domaine bloqué"
-#: src/Model/Contact.php:2957
+#: src/Model/Contact.php:3035
msgid "Connect URL missing."
msgstr "URL de connexion manquante."
-#: src/Model/Contact.php:2966
+#: src/Model/Contact.php:3044
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:2984
+#: src/Model/Contact.php:3062
#, 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:3001
+#: src/Model/Contact.php:3079
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:3003
+#: src/Model/Contact.php:3081
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:3006
+#: src/Model/Contact.php:3084
msgid "An author or name was not found."
msgstr "Aucun auteur ou nom d'auteur n'a pu être trouvé."
-#: src/Model/Contact.php:3009
+#: src/Model/Contact.php:3087
msgid "No browser URL could be matched to this address."
msgstr "Aucune URL de navigation ne correspond à cette adresse."
-#: src/Model/Contact.php:3012
+#: src/Model/Contact.php:3090
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:3013
+#: src/Model/Contact.php:3091
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:3019
+#: src/Model/Contact.php:3097
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:3024
+#: src/Model/Contact.php:3102
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:3089
+#: src/Model/Contact.php:3168
msgid "Unable to retrieve contact information."
msgstr "Impossible de récupérer les informations du contact."
@@ -3086,54 +3327,54 @@ msgstr "Impossible de récupérer les informations du contact."
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:75 src/Model/Event.php:92 src/Model/Event.php:471
-#: src/Model/Event.php:940
+#: 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:78 src/Model/Event.php:98 src/Model/Event.php:472
-#: src/Model/Event.php:944
+#: 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:421
+#: src/Model/Event.php:419
msgid "all-day"
msgstr "toute la journée"
-#: src/Model/Event.php:447
+#: src/Model/Event.php:445
msgid "Sept"
msgstr "Sep"
-#: src/Model/Event.php:464 src/Module/Calendar/Show.php:128
+#: 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:465 src/Module/Calendar/Show.php:129
-#: src/Module/Settings/Display.php:232 src/Util/Temporal.php:353
+#: 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 "mois"
-#: src/Model/Event.php:466 src/Module/Calendar/Show.php:130
-#: src/Module/Settings/Display.php:233 src/Util/Temporal.php:354
+#: 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 "semaine"
-#: src/Model/Event.php:467 src/Module/Calendar/Show.php:131
-#: src/Module/Settings/Display.php:234 src/Util/Temporal.php:355
+#: 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 "jour"
-#: src/Model/Event.php:469
+#: src/Model/Event.php:467
msgid "No events to display"
msgstr "Pas d'évènement à afficher"
-#: src/Model/Event.php:518 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69
+#: 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:559 src/Module/Calendar/Event/Show.php:67
+#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67
msgid "Event not found."
msgstr "Évènement non trouvé."
@@ -3165,147 +3406,103 @@ msgstr "D G:i"
msgid "g:i A"
msgstr "G:i"
-#: src/Model/Event.php:959 src/Model/Event.php:961
+#: src/Model/Event.php:964 src/Model/Event.php:966
msgid "Show map"
msgstr "Montrer la carte"
-#: src/Model/Event.php:960
+#: src/Model/Event.php:965
msgid "Hide map"
msgstr "Cacher la carte"
-#: src/Model/Event.php:1053
+#: src/Model/Event.php:1058
#, php-format
msgid "%s's birthday"
msgstr "Anniversaire de %s's"
-#: src/Model/Event.php:1054
+#: 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:192
-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:177 src/Module/Group.php:200
-#: src/Module/Group.php:275
-msgid "Group Name: "
-msgstr "Nom du groupe : "
-
-#: src/Model/Group.php:596
-msgid "Edit groups"
-msgstr "Modifier les groupes"
-
-#: src/Model/Item.php:2023
+#: src/Model/Item.php:2080
#, php-format
msgid "Detected languages in this post:\\n%s"
msgstr "Langues détectées dans cette publication :\\n%s"
-#: src/Model/Item.php:2926
+#: src/Model/Item.php:3025
msgid "activity"
msgstr "activité"
-#: src/Model/Item.php:2928
+#: src/Model/Item.php:3027
msgid "comment"
msgstr "commentaire"
-#: src/Model/Item.php:2931 src/Module/Post/Tag/Add.php:123
+#: src/Model/Item.php:3030 src/Module/Post/Tag/Add.php:123
msgid "post"
msgstr "publication"
-#: src/Model/Item.php:3093
+#: src/Model/Item.php:3200
#, php-format
msgid "%s is blocked"
msgstr "%s est bloqué(e)"
-#: src/Model/Item.php:3095
+#: src/Model/Item.php:3202
#, php-format
msgid "%s is ignored"
msgstr "%s est ignoré(e)"
-#: src/Model/Item.php:3097
+#: src/Model/Item.php:3204
#, php-format
msgid "Content from %s is collapsed"
-msgstr "Le contenu de %s est fusionné"
+msgstr "Le contenu de %s est réduit"
-#: src/Model/Item.php:3101
+#: src/Model/Item.php:3208
#, php-format
msgid "Content warning: %s"
msgstr "Avertissement de contenu: %s"
-#: src/Model/Item.php:3519
+#: src/Model/Item.php:3670
msgid "bytes"
msgstr "octets"
-#: src/Model/Item.php:3550
+#: src/Model/Item.php:3701
#, 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:3552
+#: src/Model/Item.php:3703
#, 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:3557
+#: src/Model/Item.php:3708
#, 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:3559
+#: src/Model/Item.php:3710
#, 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:3561
+#: src/Model/Item.php:3712
#, php-format
msgid "Poll end: %s"
msgstr "Fin du sondage : %s"
-#: src/Model/Item.php:3595 src/Model/Item.php:3596
+#: src/Model/Item.php:3746 src/Model/Item.php:3747
msgid "View on separate page"
msgstr "Voir dans une nouvelle page"
@@ -3313,227 +3510,228 @@ msgstr "Voir dans une nouvelle page"
msgid "[no subject]"
msgstr "[pas de sujet]"
-#: src/Model/Photo.php:1189 src/Module/Media/Photo/Upload.php:197
+#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170
msgid "Wall Photos"
msgstr "Photos du mur"
-#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:283
+#: 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:363
+#: src/Model/Profile.php:361
msgid "Change profile photo"
msgstr "Changer de photo de profil"
-#: src/Model/Profile.php:376 src/Module/Directory.php:152
+#: 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:377 src/Module/Contact/Profile.php:385
+#: 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:467
+#: src/Model/Profile.php:465
msgid "Atom feed"
msgstr "Flux Atom"
-#: src/Model/Profile.php:474
+#: src/Model/Profile.php:472
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:511
+#: src/Model/Profile.php:509
msgid "F d"
msgstr "F d"
-#: src/Model/Profile.php:575 src/Model/Profile.php:664
+#: src/Model/Profile.php:573 src/Model/Profile.php:662
msgid "[today]"
msgstr "[aujourd'hui]"
-#: src/Model/Profile.php:584
+#: src/Model/Profile.php:582
msgid "Birthday Reminders"
msgstr "Rappels d'anniversaires"
-#: src/Model/Profile.php:585
+#: src/Model/Profile.php:583
msgid "Birthdays this week:"
msgstr "Anniversaires cette semaine :"
-#: src/Model/Profile.php:613
+#: src/Model/Profile.php:611
msgid "g A l F d"
msgstr "g A | F d"
-#: src/Model/Profile.php:651
+#: src/Model/Profile.php:649
msgid "[No description]"
msgstr "[Sans description]"
-#: src/Model/Profile.php:677
+#: src/Model/Profile.php:675
msgid "Event Reminders"
msgstr "Rappels d'évènements"
-#: src/Model/Profile.php:678
+#: src/Model/Profile.php:676
msgid "Upcoming events the next 7 days:"
msgstr "Évènements à venir dans les 7 prochains jours :"
-#: src/Model/Profile.php:875
+#: src/Model/Profile.php:873
#, php-format
msgid "OpenWebAuth: %1$s welcomes %2$s"
msgstr "%1$s souhaite la bienvenue à %2$s grâce à OpenWebAuth"
-#: src/Model/Profile.php:1015
+#: src/Model/Profile.php:1013
msgid "Hometown:"
msgstr " Ville d'origine :"
-#: src/Model/Profile.php:1016
+#: src/Model/Profile.php:1014
msgid "Marital Status:"
msgstr "Statut marital :"
-#: src/Model/Profile.php:1017
+#: src/Model/Profile.php:1015
msgid "With:"
msgstr "Avec :"
-#: src/Model/Profile.php:1018
+#: src/Model/Profile.php:1016
msgid "Since:"
msgstr "Depuis :"
-#: src/Model/Profile.php:1019
+#: src/Model/Profile.php:1017
msgid "Sexual Preference:"
msgstr "Préférence sexuelle :"
-#: src/Model/Profile.php:1020
+#: src/Model/Profile.php:1018
msgid "Political Views:"
msgstr "Opinions politiques :"
-#: src/Model/Profile.php:1021
+#: src/Model/Profile.php:1019
msgid "Religious Views:"
msgstr "Opinions religieuses :"
-#: src/Model/Profile.php:1022
+#: src/Model/Profile.php:1020
msgid "Likes:"
msgstr "J'aime :"
-#: src/Model/Profile.php:1023
+#: src/Model/Profile.php:1021
msgid "Dislikes:"
msgstr "Je n'aime pas :"
-#: src/Model/Profile.php:1024
+#: src/Model/Profile.php:1022
msgid "Title/Description:"
msgstr "Titre / Description :"
-#: src/Model/Profile.php:1025 src/Module/Admin/Summary.php:221
+#: 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 "Résumé"
-#: src/Model/Profile.php:1026
+#: src/Model/Profile.php:1024
msgid "Musical interests"
msgstr "Goûts musicaux"
-#: src/Model/Profile.php:1027
+#: src/Model/Profile.php:1025
msgid "Books, literature"
msgstr "Lectures"
-#: src/Model/Profile.php:1028
+#: src/Model/Profile.php:1026
msgid "Television"
msgstr "Télévision"
-#: src/Model/Profile.php:1029
+#: src/Model/Profile.php:1027
msgid "Film/dance/culture/entertainment"
msgstr "Cinéma / Danse / Culture / Divertissement"
-#: src/Model/Profile.php:1030
+#: src/Model/Profile.php:1028
msgid "Hobbies/Interests"
msgstr "Passe-temps / Centres d'intérêt"
-#: src/Model/Profile.php:1031
+#: src/Model/Profile.php:1029
msgid "Love/romance"
msgstr "Amour / Romance"
-#: src/Model/Profile.php:1032
+#: src/Model/Profile.php:1030
msgid "Work/employment"
msgstr "Activité professionnelle / Occupation"
-#: src/Model/Profile.php:1033
+#: src/Model/Profile.php:1031
msgid "School/education"
msgstr "Études / Formation"
-#: src/Model/Profile.php:1034
+#: src/Model/Profile.php:1032
msgid "Contact information and Social Networks"
msgstr "Coordonnées / Réseaux sociaux"
-#: src/Model/User.php:214 src/Model/User.php:1120
+#: src/Model/User.php:227 src/Model/User.php:1186
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:620 src/Model/User.php:653
msgid "Login failed"
msgstr "Échec de l'identification"
-#: src/Model/User.php:637
+#: src/Model/User.php:685
msgid "Not enough information to authenticate"
msgstr "Pas assez d'informations pour s'identifier"
-#: src/Model/User.php:754
+#: src/Model/User.php:806
msgid "Password can't be empty"
msgstr "Le mot de passe ne peut pas être vide"
-#: src/Model/User.php:796
+#: src/Model/User.php:848
msgid "Empty passwords are not allowed."
msgstr "Les mots de passe vides ne sont pas acceptés."
-#: src/Model/User.php:800
+#: src/Model/User.php:852
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:804
+#: src/Model/User.php:856
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:808
+#: src/Model/User.php:860
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:1003
+#: src/Model/User.php:1069
msgid "Passwords do not match. Password unchanged."
msgstr "Les mots de passe ne correspondent pas. Aucun changement appliqué."
-#: src/Model/User.php:1010
+#: src/Model/User.php:1076
msgid "An invitation is required."
msgstr "Une invitation est requise."
-#: src/Model/User.php:1014
+#: src/Model/User.php:1080
msgid "Invitation could not be verified."
msgstr "L'invitation fournie n'a pu être validée."
-#: src/Model/User.php:1022
+#: src/Model/User.php:1088
msgid "Invalid OpenID url"
msgstr "Adresse OpenID invalide"
-#: src/Model/User.php:1035 src/Security/Authentication.php:241
+#: 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 "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:1035 src/Security/Authentication.php:241
+#: src/Model/User.php:1101 src/Security/Authentication.php:241
msgid "The error message was:"
msgstr "Le message d'erreur était :"
-#: src/Model/User.php:1041
+#: src/Model/User.php:1107
msgid "Please enter the required information."
msgstr "Entrez les informations requises."
-#: src/Model/User.php:1055
+#: 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) et system.username_max_length (%s) s'excluent mutuellement, leur valeur sont échangées."
-#: src/Model/User.php:1062
+#: src/Model/User.php:1128
#, php-format
msgid "Username should be at least %s character."
msgid_plural "Username should be at least %s characters."
@@ -3541,7 +3739,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:1066
+#: src/Model/User.php:1132
#, php-format
msgid "Username should be at most %s character."
msgid_plural "Username should be at most %s characters."
@@ -3549,68 +3747,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:1074
+#: src/Model/User.php:1140
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:1079
+#: src/Model/User.php:1145
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:1083
+#: src/Model/User.php:1149
msgid "Not a valid email address."
msgstr "Ceci n'est pas une adresse courriel valide."
-#: src/Model/User.php:1086
+#: src/Model/User.php:1152
msgid "The nickname was blocked from registration by the nodes admin."
msgstr "Cet identifiant utilisateur est réservé."
-#: src/Model/User.php:1090 src/Model/User.php:1096
+#: src/Model/User.php:1156 src/Model/User.php:1162
msgid "Cannot use that email."
msgstr "Impossible d'utiliser ce courriel."
-#: src/Model/User.php:1102
+#: src/Model/User.php:1168
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:1110 src/Model/User.php:1167
+#: src/Model/User.php:1176 src/Model/User.php:1233
msgid "Nickname is already registered. Please choose another."
msgstr "Pseudo déjà utilisé. Merci d'en choisir un autre."
-#: src/Model/User.php:1154 src/Model/User.php:1158
+#: src/Model/User.php:1220 src/Model/User.php:1224
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:1181
+#: src/Model/User.php:1247
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:1188
+#: src/Model/User.php:1254
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:1193
+#: src/Model/User.php:1259
msgid "Friends"
msgstr "Contacts"
-#: src/Model/User.php:1197
+#: src/Model/User.php:1263
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:1236
+#: src/Model/User.php:1307
msgid "Profile Photos"
msgstr "Photos du profil"
-#: src/Model/User.php:1431
+#: 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\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:1434
+#: src/Model/User.php:1490
#, php-format
msgid ""
"\n"
@@ -3642,12 +3840,12 @@ msgid ""
"\t\tThank you and welcome to %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:1467 src/Model/User.php:1574
+#: src/Model/User.php:1523 src/Model/User.php:1630
#, php-format
msgid "Registration details for %s"
msgstr "Détails d'inscription pour %s"
-#: src/Model/User.php:1487
+#: src/Model/User.php:1543
#, php-format
msgid ""
"\n"
@@ -3662,12 +3860,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:1506
+#: src/Model/User.php:1562
#, php-format
msgid "Registration at %s"
msgstr "inscription à %s"
-#: src/Model/User.php:1530
+#: src/Model/User.php:1586
#, php-format
msgid ""
"\n"
@@ -3676,7 +3874,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:1538
+#: src/Model/User.php:1594
#, php-format
msgid ""
"\n"
@@ -3733,10 +3931,10 @@ msgid "Enable"
msgstr "Activer"
#: src/Module/Admin/Addons/Details.php:111
-#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:209
+#: 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:220
+#: 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
@@ -3746,7 +3944,7 @@ msgstr "Administration"
#: src/Module/Admin/Addons/Details.php:112
#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92
-#: src/Module/BaseSettings.php:134
+#: src/Module/BaseSettings.php:132
msgid "Addons"
msgstr "Extensions"
@@ -3777,10 +3975,10 @@ 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:560 src/Module/Settings/Addons.php:78
+#: 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:169 src/Module/Settings/Display.php:247
+#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260
#: src/Module/Settings/Features.php:76
msgid "Save Settings"
msgstr "Sauvegarder les paramètres"
@@ -3865,82 +4063,84 @@ msgstr "Verouiller la fonctionnalité %s"
msgid "Manage Additional Features"
msgstr "Gérer les fonctionnalités avancées"
-#: src/Module/Admin/Federation.php:75
+#: 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:149 src/Module/Admin/Federation.php:398
+#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403
msgid "unknown"
msgstr "inconnu"
-#: src/Module/Admin/Federation.php:182
+#: 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:183
+#: 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:184
+#: 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:185
+#: 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:186
+#: 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:189
+#: 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:194
+#: 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:204
+#: 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:210 src/Module/BaseAdmin.php:87
+#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87
msgid "Federation Statistics"
msgstr "Statistiques Federation"
-#: src/Module/Admin/Federation.php:214
+#: src/Module/Admin/Federation.php:219
#, php-format
msgid ""
"Currently this node is aware of %2$s node (%3$s active users last month, "
@@ -3985,11 +4185,11 @@ msgstr "Activer le déboggage"
#: src/Module/Admin/Site.php:428
msgid ""
"Read-only because it is set by an environment variable"
-msgstr ""
+msgstr "En lecture seule car configuré avec une variable d'environnement"
#: src/Module/Admin/Logs/Settings.php:92
msgid "Log file"
-msgstr "Fichier de journaux"
+msgstr "Fichier journal"
#: src/Module/Admin/Logs/Settings.php:92
msgid ""
@@ -4134,7 +4334,8 @@ msgstr "Commande"
msgid "Job Parameters"
msgstr "Paramètres de la tâche"
-#: src/Module/Admin/Queue.php:78 src/Module/Settings/OAuth.php:74
+#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95
+#: src/Module/Settings/OAuth.php:74
msgid "Created"
msgstr "Créé"
@@ -4147,11 +4348,11 @@ msgstr "Priorité"
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:169
+#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:178
msgid "No special theme for mobile devices"
msgstr "Pas de thème particulier pour les terminaux mobiles"
-#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:179
+#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188
#, php-format
msgid "%s - (Experimental)"
msgstr "%s- (expérimental)"
@@ -4241,7 +4442,7 @@ msgid "Policies"
msgstr "Politiques"
#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252
-#: src/Module/Contact.php:516 src/Module/Profile/Profile.php:276
+#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276
msgid "Advanced"
msgstr "Avancé"
@@ -4320,7 +4521,7 @@ msgstr "Bannière/Logo"
#: 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:425
msgid "Shortcut icon"
@@ -4438,7 +4639,7 @@ msgstr "Politique d'inscription"
#: src/Module/Admin/Site.php:443
msgid "Maximum Users"
-msgstr ""
+msgstr "Utilisateurs maximum"
#: src/Module/Admin/Site.php:443
msgid ""
@@ -4446,7 +4647,7 @@ msgid ""
"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 ""
+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"
@@ -4508,7 +4709,7 @@ 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:450
msgid "No OEmbed rich content"
@@ -4571,18 +4772,18 @@ msgstr "Publications privées par défaut pour les nouveaux utilisateurs"
#: 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: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: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:457
msgid "Disallow public access to addons listed in the apps menu."
@@ -4698,7 +4899,7 @@ msgstr "Quelles pages communauté sont disponibles pour les utilisateurs anonyme
#: 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:468
msgid ""
@@ -4903,7 +5104,7 @@ msgstr "Masquer les tags"
#: 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:499
msgid "Clean database"
@@ -4979,21 +5180,21 @@ msgstr "Si vous n'avez pas la possibilité d'avoir accès au répertoire temp, e
#: 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: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:507
-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."
+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: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:509
msgid "Maximum number of parallel workers"
@@ -5036,7 +5237,7 @@ msgid ""
"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:513 src/Module/Contact/Profile.php:286
+#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309
#: src/Module/Settings/TwoFactor/Index.php:125
msgid "Disabled"
msgstr "Désactivé"
@@ -5047,7 +5248,7 @@ msgstr "Tous"
#: src/Module/Admin/Site.php:513
msgid "tags"
-msgstr "Tags"
+msgstr "tags"
#: src/Module/Admin/Site.php:514
msgid "Server tags"
@@ -5073,7 +5274,7 @@ msgstr "Inclure les tags des utilisateurs"
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:519
msgid "Start Relocation"
@@ -5125,7 +5326,7 @@ msgstr "Ce moteur de stockage n'offre pas de paramètres personnalisés."
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
-msgstr ""
+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)"
@@ -5231,51 +5432,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:142
-#, 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:156
-#, 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:172
+#: 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:180
+#: 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:188
+#: 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:199
+#: src/Module/Admin/Summary.php:175
msgid "Message queues"
msgstr "Files d'attente des messages"
-#: src/Module/Admin/Summary.php:205
+#: src/Module/Admin/Summary.php:181
msgid "Server Settings"
msgstr "Paramètres du site"
-#: src/Module/Admin/Summary.php:223
+#: src/Module/Admin/Summary.php:199
msgid "Version"
msgstr "Version"
-#: src/Module/Admin/Summary.php:227
+#: src/Module/Admin/Summary.php:203
msgid "Active addons"
msgstr "Add-ons actifs"
@@ -5372,7 +5562,7 @@ msgstr "Les règles"
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:279
+#: src/Module/Api/ApiResponse.php:293
#, php-format
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."
@@ -5428,25 +5618,25 @@ msgstr "Element introuvable."
msgid "Please login to continue."
msgstr "Merci de vous connecter pour continuer."
-#: src/Module/BaseAdmin.php:63 src/Module/BaseModeration.php:86
+#: 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:67 src/Module/BaseModeration.php:90
+#: 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:86 src/Module/BaseModeration.php:109
msgid "Overview"
msgstr "Synthèse"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:111
+#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
msgid "Configuration"
msgstr "Configuration"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:112
+#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
msgid "Additional features"
msgstr "Fonctions supplémentaires"
@@ -5466,7 +5656,7 @@ msgstr "Tâches de fond reportées"
msgid "Inspect worker Queue"
msgstr "Tâches de fond en attente"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:119
+#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
msgid "Diagnostics"
msgstr "Diagnostics"
@@ -5494,7 +5684,7 @@ msgstr "Conversion ActivityPub"
msgid "Addon Features"
msgstr "Fonctionnalités des addons"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:128
+#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
msgid "User registrations waiting for confirmation"
msgstr "Inscriptions en attente de confirmation"
@@ -5525,36 +5715,50 @@ msgstr[2] "Limite hebdomadaire de %d publications atteinte, votre soumission a
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/BaseModeration.php:112 src/Module/Moderation/Users/Index.php:148
+#: 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:114
+#: src/Module/BaseModeration.php:115
msgid "Tools"
msgstr "Outils"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:116
msgid "Contact Blocklist"
msgstr "Liste de contacts bloqués"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:117
msgid "Server Blocklist"
msgstr "Serveurs bloqués"
-#: src/Module/BaseModeration.php:117 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
msgid "Delete Item"
msgstr "Supprimer un élément"
-#: src/Module/BaseModeration.php:120 src/Module/Moderation/Item/Source.php:76
+#: 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:478
+#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507
msgid "Profile Details"
msgstr "Détails du profil"
@@ -5578,15 +5782,15 @@ msgstr "Publications programmées à l'avance"
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/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139
msgid "No matches"
@@ -5602,40 +5806,44 @@ 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[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:80
+#: src/Module/BaseSettings.php:78
msgid "Account"
msgstr "Compte"
-#: src/Module/BaseSettings.php:87 src/Module/Security/TwoFactor/Verify.php:96
+#: 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:120
+#: src/Module/BaseSettings.php:118
msgid "Display"
msgstr "Affichage"
-#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:204
+#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204
msgid "Social Networks"
msgstr "Réseaux sociaux"
-#: src/Module/BaseSettings.php:141 src/Module/Settings/Delegation.php:170
+#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172
msgid "Manage Accounts"
msgstr "Gérer vos comptes"
-#: src/Module/BaseSettings.php:148
+#: src/Module/BaseSettings.php:146
msgid "Connected apps"
msgstr "Applications connectées"
-#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:98
+#: src/Module/BaseSettings.php:153
+msgid "Remote servers"
+msgstr "Serveurs distants"
+
+#: src/Module/BaseSettings.php:160 src/Module/Settings/UserExport.php:98
msgid "Export personal data"
msgstr "Exporter"
-#: src/Module/BaseSettings.php:162
+#: src/Module/BaseSettings.php:167
msgid "Remove account"
msgstr "Supprimer le compte"
@@ -5755,10 +5963,113 @@ msgstr "Vue"
msgid "Create New Event"
msgstr "Créer un nouvel évènement"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:235
+#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:248
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."
@@ -5767,159 +6078,146 @@ msgstr[0] "%d contact mis à jour."
msgstr[1] "%d contacts mis à jour."
msgstr[2] "%d contacts mis à jour."
-#: src/Module/Contact.php:341
+#: src/Module/Contact.php:348
msgid "Show all contacts"
msgstr "Montrer tous les contacts"
-#: src/Module/Contact.php:346 src/Module/Contact.php:414
+#: 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:349
+#: src/Module/Contact.php:356
msgid "Only show pending contacts"
msgstr "Ne montrer que les demandes d'abonnement"
-#: src/Module/Contact.php:354 src/Module/Contact.php:415
+#: 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:357
+#: src/Module/Contact.php:364
msgid "Only show blocked contacts"
msgstr "Ne montrer que les contacts bloqués"
-#: src/Module/Contact.php:362 src/Module/Contact.php:417
-#: src/Object/Post.php:345
+#: 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 "Ignorés"
-#: src/Module/Contact.php:365
+#: src/Module/Contact.php:372
msgid "Only show ignored contacts"
msgstr "Ne montrer que les contacts ignorés"
-#: src/Module/Contact.php:370 src/Module/Contact.php:418
+#: src/Module/Contact.php:377 src/Module/Contact.php:444
msgid "Collapsed"
-msgstr "Fusionnés"
+msgstr "Réduits"
-#: src/Module/Contact.php:373
+#: src/Module/Contact.php:380
msgid "Only show collapsed contacts"
-msgstr "N'afficher que les contacts fusionnés"
+msgstr "N'afficher que les contacts réduits"
-#: src/Module/Contact.php:378 src/Module/Contact.php:419
+#: src/Module/Contact.php:385 src/Module/Contact.php:447
msgid "Archived"
msgstr "Archivés"
-#: src/Module/Contact.php:381
+#: src/Module/Contact.php:388
msgid "Only show archived contacts"
msgstr "Ne montrer que les contacts archivés"
-#: src/Module/Contact.php:386 src/Module/Contact.php:416
+#: src/Module/Contact.php:393 src/Module/Contact.php:438
msgid "Hidden"
msgstr "Cachés"
-#: src/Module/Contact.php:389
+#: src/Module/Contact.php:396
msgid "Only show hidden contacts"
msgstr "Ne montrer que les contacts masqués"
-#: src/Module/Contact.php:397
-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:430
+#: src/Module/Contact.php:459
msgid "Search your contacts"
msgstr "Rechercher dans vos contacts"
-#: src/Module/Contact.php:431 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:438
+#: src/Module/Contact.php:467
msgid "Update"
msgstr "Mises à jour"
-#: src/Module/Contact.php:439 src/Module/Contact/Profile.php:477
+#: 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:440 src/Module/Contact/Profile.php:485
+#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519
msgid "Unignore"
msgstr "Ne plus ignorer"
-#: src/Module/Contact.php:441 src/Module/Contact/Profile.php:493
+#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527
msgid "Uncollapse"
-msgstr "Dé-fusionner"
+msgstr "Ne plus réduire"
-#: src/Module/Contact.php:443
+#: src/Module/Contact.php:472
msgid "Batch Actions"
msgstr "Actions multiples"
-#: src/Module/Contact.php:486
+#: src/Module/Contact.php:515
msgid "Conversations started by this contact"
msgstr "Conversations entamées par ce contact"
-#: src/Module/Contact.php:491
+#: src/Module/Contact.php:520
msgid "Posts and Comments"
msgstr "Publications et commentaires"
-#: src/Module/Contact.php:494
+#: src/Module/Contact.php:523
msgid "Individual Posts and Replies"
msgstr "Publications et réponses individuelles"
-#: src/Module/Contact.php:502
+#: src/Module/Contact.php:531
msgid "Posts containing media objects"
msgstr "Publications contenant des objets média"
-#: src/Module/Contact.php:509
+#: src/Module/Contact.php:539
msgid "View all known contacts"
msgstr "Voir tous les contacts connus"
-#: src/Module/Contact.php:519
+#: src/Module/Contact.php:550
msgid "Advanced Contact Settings"
msgstr "Réglages avancés du contact"
-#: src/Module/Contact.php:555
+#: src/Module/Contact.php:586
msgid "Mutual Friendship"
msgstr "Relation réciproque"
-#: src/Module/Contact.php:559
+#: src/Module/Contact.php:590
msgid "is a fan of yours"
msgstr "Vous suit"
-#: src/Module/Contact.php:563
+#: src/Module/Contact.php:594
msgid "you are a fan of"
msgstr "Vous le/la suivez"
-#: src/Module/Contact.php:581
+#: src/Module/Contact.php:612
msgid "Pending outgoing contact request"
msgstr "Demande d'abonnement distant en attente"
-#: src/Module/Contact.php:583
+#: src/Module/Contact.php:614
msgid "Pending incoming contact request"
msgstr "Demande d'abonnement à votre compte en attente"
-#: src/Module/Contact.php:596 src/Module/Contact/Profile.php:346
+#: 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]"
-#: 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
-#: src/Module/Group.php:97 src/Module/Group.php:106
-msgid "Contact not found."
-msgstr "Contact introuvable."
-
#: src/Module/Contact/Advanced.php:99
msgid "Contact update failed."
msgstr "Impossible d'appliquer les réglages."
@@ -5930,6 +6228,7 @@ 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
@@ -5956,11 +6255,6 @@ msgstr "Téléverser des photos"
msgid "New photo from this URL"
msgstr "Nouvelle photo depuis cette URL"
-#: src/Module/Contact/Contacts.php:66 src/Module/Conversation/Network.php:189
-#: src/Module/Group.php:101
-msgid "Invalid contact."
-msgstr "Contact invalide."
-
#: src/Module/Contact/Contacts.php:89
msgid "No known contacts."
msgstr "Aucun contact connu."
@@ -6022,7 +6316,7 @@ msgstr[1] "Contacts (%s)"
msgstr[2] "Contacts (%s)"
#: 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/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
@@ -6060,19 +6354,20 @@ msgstr "Merci de répondre à ce qui suit :"
msgid "Your Identity Address:"
msgstr "Votre adresse d'identité :"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:375
+#: 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:387
+#: 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 "Étiquette :"
+msgstr "Tags :"
#: src/Module/Contact/Follow.php:182
#, php-format
@@ -6094,8 +6389,8 @@ 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:82 src/Module/Media/Photo/Upload.php:87
-#: src/Module/Media/Photo/Upload.php:136
+#: 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."
@@ -6107,248 +6402,312 @@ msgstr "Aucun mot-clé ne correspond. Merci d'ajouter des mots-clés à votre pr
msgid "Profile Match"
msgstr "Correpondance de profils"
-#: src/Module/Contact/Profile.php:128
+#: src/Module/Contact/Profile.php:140
msgid "Failed to update contact record."
msgstr "Échec de mise à jour du contact."
-#: src/Module/Contact/Profile.php:178
+#: src/Module/Contact/Profile.php:190
msgid "Contact has been unblocked"
msgstr "Le contact n'est plus bloqué"
-#: src/Module/Contact/Profile.php:182
+#: src/Module/Contact/Profile.php:194
msgid "Contact has been blocked"
msgstr "Le contact a été bloqué"
-#: src/Module/Contact/Profile.php:194
+#: src/Module/Contact/Profile.php:206
msgid "Contact has been unignored"
msgstr "Le contact n'est plus ignoré"
-#: src/Module/Contact/Profile.php:198
+#: src/Module/Contact/Profile.php:210
msgid "Contact has been ignored"
msgstr "Le contact a été ignoré"
-#: src/Module/Contact/Profile.php:210
+#: src/Module/Contact/Profile.php:222
msgid "Contact has been uncollapsed"
-msgstr "Le contact a été dé-fusionné"
+msgstr "Le contact n'est plus réduit"
-#: src/Module/Contact/Profile.php:214
+#: src/Module/Contact/Profile.php:226
msgid "Contact has been collapsed"
-msgstr "Le contact a été fusionné"
+msgstr "Le contact a été réduit"
-#: src/Module/Contact/Profile.php:242
+#: 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:243
+#: src/Module/Contact/Profile.php:255
#, php-format
msgid "You are sharing with %s"
msgstr "Vous partagez avec %s"
-#: src/Module/Contact/Profile.php:244
+#: src/Module/Contact/Profile.php:256
#, php-format
msgid "%s is sharing with you"
msgstr "%s partage avec vous"
-#: src/Module/Contact/Profile.php:260
+#: 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:262
+#: 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:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was not successful)"
msgstr "(Échec de la mise à jour)"
-#: src/Module/Contact/Profile.php:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was successful)"
msgstr "(Mise à jour effectuée avec succès)"
-#: src/Module/Contact/Profile.php:267 src/Module/Contact/Profile.php:448
+#: 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:271
+#: src/Module/Contact/Profile.php:294
#, php-format
msgid "Network type: %s"
msgstr "Type de réseau %s"
-#: src/Module/Contact/Profile.php:276
+#: src/Module/Contact/Profile.php:299
msgid "Communications lost with this contact!"
msgstr "Communications perdues avec ce contact !"
-#: src/Module/Contact/Profile.php:282
+#: 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:284
+#: 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:287
+#: src/Module/Contact/Profile.php:310
msgid "Fetch information"
msgstr "Récupérer informations"
-#: src/Module/Contact/Profile.php:288
+#: src/Module/Contact/Profile.php:311
msgid "Fetch keywords"
msgstr "Récupérer les mots-clés"
-#: src/Module/Contact/Profile.php:289
+#: src/Module/Contact/Profile.php:312
msgid "Fetch information and keywords"
msgstr "Récupérer informations"
-#: src/Module/Contact/Profile.php:299 src/Module/Contact/Profile.php:304
-#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:315
+#: 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:300 src/Module/Contact/Profile.php:310
-#: src/Module/Contact/Profile.php:316
+#: 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:305 src/Module/Contact/Profile.php:311
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334
msgid "Native reshare"
msgstr "Partage natif"
-#: src/Module/Contact/Profile.php:328
+#: src/Module/Contact/Profile.php:353
msgid "Contact Information / Notes"
msgstr "Informations de contact / Notes"
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:354
msgid "Contact Settings"
msgstr "Paramètres du Contact"
-#: src/Module/Contact/Profile.php:337
+#: src/Module/Contact/Profile.php:362
msgid "Contact"
msgstr "Contact"
-#: src/Module/Contact/Profile.php:341
+#: src/Module/Contact/Profile.php:366
msgid "Their personal note"
msgstr "Leur note personnelle"
-#: src/Module/Contact/Profile.php:343
+#: src/Module/Contact/Profile.php:368
msgid "Edit contact notes"
msgstr "Éditer les notes des contacts"
-#: src/Module/Contact/Profile.php:347
+#: src/Module/Contact/Profile.php:372
msgid "Block/Unblock contact"
msgstr "Bloquer/débloquer ce contact"
-#: src/Module/Contact/Profile.php:348
+#: 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:349
+#: src/Module/Contact/Profile.php:374
msgid "View conversations"
msgstr "Voir les conversations"
-#: src/Module/Contact/Profile.php:354
+#: src/Module/Contact/Profile.php:379
msgid "Last update:"
msgstr "Dernière mise-à-jour :"
-#: src/Module/Contact/Profile.php:356
+#: src/Module/Contact/Profile.php:381
msgid "Update public posts"
msgstr "Fréquence de mise à jour:"
-#: src/Module/Contact/Profile.php:358 src/Module/Contact/Profile.php:458
+#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492
msgid "Update now"
msgstr "Mettre à jour"
-#: src/Module/Contact/Profile.php:360
+#: src/Module/Contact/Profile.php:385
msgid "Awaiting connection acknowledge"
msgstr "En attente de confirmation d'abonnement"
-#: src/Module/Contact/Profile.php:361
+#: src/Module/Contact/Profile.php:386
msgid "Currently blocked"
msgstr "Actuellement bloqué"
-#: src/Module/Contact/Profile.php:362
+#: src/Module/Contact/Profile.php:387
msgid "Currently ignored"
msgstr "Actuellement ignoré"
-#: src/Module/Contact/Profile.php:363
+#: src/Module/Contact/Profile.php:388
msgid "Currently collapsed"
-msgstr "Actuellement fusionné"
+msgstr "Actuellement réduit"
-#: src/Module/Contact/Profile.php:364
+#: src/Module/Contact/Profile.php:389
msgid "Currently archived"
msgstr "Actuellement archivé"
-#: src/Module/Contact/Profile.php:367
+#: 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:367
+#: 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:368
+#: src/Module/Contact/Profile.php:395
msgid "Notification for new posts"
msgstr "Notification des nouvelles publications"
-#: src/Module/Contact/Profile.php:368
+#: 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:370
+#: src/Module/Contact/Profile.php:397
msgid "Keyword Deny List"
msgstr "Liste de mot-clefs interdits"
-#: src/Module/Contact/Profile.php:370
+#: 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:388
+#: src/Module/Contact/Profile.php:415
#: src/Module/Settings/TwoFactor/Index.php:139
msgid "Actions"
msgstr "Actions"
-#: src/Module/Contact/Profile.php:390
+#: 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:396
+#: src/Module/Contact/Profile.php:423
msgid "Mirror postings from this contact"
msgstr "Copier les publications de ce contact"
-#: src/Module/Contact/Profile.php:398
+#: 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:468
+#: 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:479
+#: src/Module/Contact/Profile.php:513
msgid "Toggle Blocked status"
msgstr "(dés)activer l'état \"bloqué\""
-#: src/Module/Contact/Profile.php:487
+#: src/Module/Contact/Profile.php:521
msgid "Toggle Ignored status"
msgstr "(dés)activer l'état \"ignoré\""
-#: src/Module/Contact/Profile.php:495
+#: src/Module/Contact/Profile.php:529
msgid "Toggle Collapsed status"
-msgstr "Commuter le statut fusionné"
+msgstr "Commuter le statut réduit"
-#: src/Module/Contact/Profile.php:502 src/Module/Contact/Revoke.php:106
+#: 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:504
+#: src/Module/Contact/Profile.php:538
msgid "Revoke the follow from this contact"
msgstr "Empêcher ce contact de vous suivre "
@@ -6360,10 +6719,6 @@ msgstr "Mauvaise requête."
msgid "Unknown contact."
msgstr "Contact inconnu."
-#: src/Module/Contact/Revoke.php:73 src/Module/Group.php:110
-msgid "Contact is deleted."
-msgstr "Le contact a été supprimé."
-
#: src/Module/Contact/Revoke.php:77
msgid "Contact is being deleted."
msgstr "Le contact est en cours de suppression."
@@ -6411,102 +6766,54 @@ msgstr "Le contact n'est maintenant plus suivi"
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/Community.php:74
+#: 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 "Aucun résultat."
+
+#: src/Module/Conversation/Channel.php:159
+msgid "Channel not available."
+msgstr "Chaîne non disponible."
+
+#: 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 "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:87
-msgid "Local Community"
-msgstr "Communauté locale"
-
-#: src/Module/Conversation/Community.php:90
-msgid "Posts from local users on this server"
-msgstr "Conversations publiques démarrées par des utilisateurs locaux"
-
-#: src/Module/Conversation/Community.php:98
-msgid "Global Community"
-msgstr "Communauté globale"
-
-#: src/Module/Conversation/Community.php:101
-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:134
-msgid "Own Contacts"
-msgstr "Publications de vos propres contacts"
-
-#: src/Module/Conversation/Community.php:138
-msgid "Include"
-msgstr "Inclure"
-
-#: src/Module/Conversation/Community.php:139
-msgid "Hide"
-msgstr "Masquer"
-
-#: src/Module/Conversation/Community.php:156 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
-msgid "No results."
-msgstr "Aucun résultat."
-
-#: src/Module/Conversation/Community.php:212
+#: src/Module/Conversation/Community.php:179
msgid "Community option not available."
msgstr "L'option communauté n'est pas disponible"
-#: src/Module/Conversation/Community.php:228
+#: src/Module/Conversation/Community.php:195
msgid "Not available."
msgstr "Indisponible."
-#: src/Module/Conversation/Network.php:175
-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:179
+#: 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:257
-msgid "Latest Activity"
-msgstr "Activité récente"
+#: src/Module/Conversation/Network.php:317
+msgid "Network feed not available."
+msgstr "Flux du réseau non disponible."
-#: src/Module/Conversation/Network.php:260
-msgid "Sort by latest activity"
-msgstr "Trier par activité récente"
+#: src/Module/Conversation/Timeline.php:158
+msgid "Own Contacts"
+msgstr "Publications de vos propres contacts"
-#: src/Module/Conversation/Network.php:265
-msgid "Latest Posts"
-msgstr "Dernières publications"
+#: src/Module/Conversation/Timeline.php:162
+msgid "Include"
+msgstr "Inclure"
-#: src/Module/Conversation/Network.php:268
-msgid "Sort by post received date"
-msgstr "Trier par date de réception"
-
-#: src/Module/Conversation/Network.php:273
-msgid "Latest Creation"
-msgstr "Dernière création"
-
-#: src/Module/Conversation/Network.php:276
-msgid "Sort by post creation date"
-msgstr "Trier par date de création des publications"
-
-#: src/Module/Conversation/Network.php:281
-#: src/Module/Settings/Profile/Index.php:235
-msgid "Personal"
-msgstr "Personnel"
-
-#: src/Module/Conversation/Network.php:284
-msgid "Posts that mention or involve you"
-msgstr "Publications qui vous concernent"
-
-#: src/Module/Conversation/Network.php:289 src/Object/Post.php:357
-msgid "Starred"
-msgstr "Mis en avant"
-
-#: src/Module/Conversation/Network.php:292
-msgid "Favourite Posts"
-msgstr "Publications favorites"
+#: src/Module/Conversation/Timeline.php:163
+msgid "Hide"
+msgstr "Masquer"
#: src/Module/Credits.php:44
msgid "Credits"
@@ -6725,7 +7032,7 @@ msgid "Twitter Source / Tweet URL (requires API key)"
msgstr "Source Twitter / URL du tweet (requiert une clé d'API)"
#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47
-#: src/Module/Settings/Profile/Index.php:144
+#: 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é"
@@ -6854,138 +7161,58 @@ msgstr "Suggérer des amis/contacts"
msgid "Suggest a friend for %s"
msgstr "Suggérer un ami/contact pour %s"
-#: src/Module/Friendica.php:64
+#: src/Module/Friendica.php:82
msgid "Installed addons/apps:"
msgstr "Add-ons/Applications installés :"
-#: src/Module/Friendica.php:69
+#: src/Module/Friendica.php:87
msgid "No installed addons/apps"
msgstr "Aucun add-on/application n'est installé"
-#: src/Module/Friendica.php:74
+#: 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:81
+#: 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
msgid "Reason for the block"
msgstr "Raison du blocage"
-#: src/Module/Friendica.php:86
+#: 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:100
+#: 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:105
+#: 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:106
+#: 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:106
+#: src/Module/Friendica.php:124
msgid "the bugtracker at github"
msgstr "le bugtracker sur GitHub"
-#: src/Module/Friendica.php:107
+#: 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:56
-msgid "Could not create group."
-msgstr "Impossible de créer le groupe."
-
-#: src/Module/Group.php:67 src/Module/Group.php:213 src/Module/Group.php:237
-msgid "Group not found."
-msgstr "Groupe introuvable."
-
-#: src/Module/Group.php:73
-msgid "Group name was not changed."
-msgstr "Le nom du groupe n'a pas été modifié."
-
-#: src/Module/Group.php:91
-msgid "Unknown group."
-msgstr "Groupe inconnu."
-
-#: src/Module/Group.php:116
-msgid "Unable to add the contact to the group."
-msgstr "Erreur lors de l'ajout du contact au groupe."
-
-#: src/Module/Group.php:119
-msgid "Contact successfully added to group."
-msgstr "Le contact a été ajouté au groupe."
-
-#: src/Module/Group.php:123
-msgid "Unable to remove the contact from the group."
-msgstr "Erreur lors du retrait du contact du groupe."
-
-#: src/Module/Group.php:126
-msgid "Contact successfully removed from group."
-msgstr "Le contact a été retiré du groupe."
-
-#: src/Module/Group.php:130
-msgid "Bad request."
-msgstr "Requête invalide."
-
-#: src/Module/Group.php:169
-msgid "Save Group"
-msgstr "Sauvegarder le groupe"
-
-#: src/Module/Group.php:170
-msgid "Filter"
-msgstr "Filtre"
-
-#: src/Module/Group.php:176
-msgid "Create a group of contacts/friends."
-msgstr "Créez un groupe de contacts/amis."
-
-#: src/Module/Group.php:218
-msgid "Unable to remove group."
-msgstr "Impossible d'enlever le groupe."
-
-#: src/Module/Group.php:269
-msgid "Delete Group"
-msgstr "Supprimer le groupe"
-
-#: src/Module/Group.php:279
-msgid "Edit Group Name"
-msgstr "Éditer le nom du groupe"
-
-#: src/Module/Group.php:289
-msgid "Members"
-msgstr "Membres"
-
-#: src/Module/Group.php:292
-msgid "Group is empty"
-msgstr "Groupe vide"
-
-#: src/Module/Group.php:305
-msgid "Remove contact from group"
-msgstr "Retirer ce contact du groupe"
-
-#: src/Module/Group.php:326
-msgid "Click on a contact to add or remove."
-msgstr "Cliquez sur un contact pour l'ajouter ou le supprimer."
-
-#: src/Module/Group.php:340
-msgid "Add contact to group"
-msgstr "Ajouter ce contact au groupe"
-
#: src/Module/HCard.php:45
msgid "No profile"
msgstr "Aucun profil"
@@ -7109,13 +7336,13 @@ msgstr "Réglages du site"
#: 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: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:304
msgid "System Language:"
@@ -7125,7 +7352,7 @@ msgstr "Langue système :"
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:318
msgid "Your Friendica site database has been installed."
@@ -7235,7 +7462,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 ""
@@ -7278,30 +7505,26 @@ 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/Display.php:136 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/Item/Feed.php:86
msgid "The feed for this item is unavailable."
msgstr "Le flux pour cet objet n'est pas disponible."
@@ -7357,20 +7580,13 @@ msgstr "La taille du fichier dépasse la limite de %s"
msgid "File upload failed."
msgstr "Le téléversement a échoué."
-#: src/Module/Media/Photo/Upload.php:153 src/Module/Media/Photo/Upload.php:154
+#: 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 "Impossible de traiter l'image."
-#: src/Module/Media/Photo/Upload.php:187 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 "L'image dépasse la taille limite de %s"
-
-#: src/Module/Media/Photo/Upload.php:205 src/Module/Profile/Photos.php:243
+#: 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 "Le téléversement de l'image a échoué."
@@ -7403,41 +7619,41 @@ msgstr "Supprimé"
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:491
+#: 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:498
+#: 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:505
-msgid "Public Forum"
-msgstr "Forum public"
+#: 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:512
+#: 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 Forum"
-msgstr "Forum Privé"
+msgid "Private Group"
+msgstr "Groupe Privé"
-#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:463
+#: 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:470
+#: 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:477
+#: 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:484
-msgid "Community Forum"
-msgstr "Forum Communautaire"
+#: 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"
@@ -7494,6 +7710,7 @@ 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"
@@ -7569,6 +7786,8 @@ 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"
@@ -7829,10 +8048,6 @@ msgstr "Terme"
msgid "URL"
msgstr "URL"
-#: src/Module/Moderation/Item/Source.php:85
-msgid "Mention"
-msgstr "Mention"
-
#: src/Module/Moderation/Item/Source.php:86
msgid "Implicit Mention"
msgstr "Mention implicite"
@@ -7855,6 +8070,238 @@ msgstr "Merci de vérifier que la clé de configuration debug.store_source
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"
@@ -7864,8 +8311,8 @@ msgid "Automatic Follower Account"
msgstr "Compte d'abonné automatique"
#: src/Module/Moderation/Summary.php:55
-msgid "Public Forum Account"
-msgstr "Forum public"
+msgid "Public Group Account"
+msgstr "Compte de groupe public"
#: src/Module/Moderation/Summary.php:56
msgid "Automatic Friend Account"
@@ -7876,8 +8323,8 @@ msgid "Blog Account"
msgstr "Compte de blog"
#: src/Module/Moderation/Summary.php:58
-msgid "Private Forum Account"
-msgstr "Compte de Forum privé"
+msgid "Private Group Account"
+msgstr "Compte de groupe privé"
#: src/Module/Moderation/Summary.php:78
msgid "Registered users"
@@ -8036,7 +8483,7 @@ msgstr "Pseudo du nouvel utilisateur."
#: src/Module/Moderation/Users/Create.php:72
msgid "Email address of the new user."
-msgstr "Adresse mail du nouvel utilisateur."
+msgstr "Adresse de courriel du nouvel utilisateur."
#: src/Module/Moderation/Users/Deleted.php:81
msgid "Users awaiting permanent deletion"
@@ -8182,11 +8629,11 @@ msgstr "Notifications de page d'accueil"
msgid "Show unread"
msgstr "Afficher non-lus"
-#: src/Module/Notifications/Ping.php:245
+#: src/Module/Notifications/Ping.php:246
msgid "{0} requested registration"
msgstr "{0} a demandé à s'inscrire"
-#: src/Module/Notifications/Ping.php:254
+#: 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."
@@ -8205,7 +8652,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:77
+#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78
msgid "Incomplete request data"
msgstr "Requête incomplète"
@@ -8216,11 +8663,11 @@ 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:82
+#: src/Module/OAuth/Token.php:83
msgid "Invalid data or unknown client"
msgstr "Données invalides ou client inconnu"
-#: src/Module/OAuth/Token.php:104
+#: src/Module/OAuth/Token.php:108
msgid "Unsupported or missing grant type"
msgstr "Type de \"grant\" manquant ou non pris en charge"
@@ -8338,28 +8785,28 @@ msgstr "CCI : %s
"
#: src/Module/PermissionTooltip.php:240
#, php-format
msgid "Audience: %s
"
-msgstr ""
+msgstr "Audience : %s
"
#: src/Module/PermissionTooltip.php:243
#, php-format
msgid "Attributed To: %s
"
-msgstr ""
+msgstr "Attribué à : %s
"
-#: src/Module/Photo.php:129
+#: src/Module/Photo.php:130
msgid "The Photo is not available."
msgstr "La photo n'est pas disponible."
-#: src/Module/Photo.php:154
+#: 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:191
+#: 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:193
+#: src/Module/Photo.php:194
#, php-format
msgid "Invalid photo with id %s."
msgstr "La photo avec l'identifiant %s est invalide."
@@ -8394,13 +8841,13 @@ msgstr "lien audio"
#: src/Module/Post/Tag/Remove.php:106
msgid "Remove Item Tag"
-msgstr "Enlever l'étiquette de l'élément"
+msgstr "Enlever le tag de l'élément"
#: src/Module/Post/Tag/Remove.php:107
msgid "Select a tag to remove: "
-msgstr "Sélectionner une étiquette à supprimer :"
+msgstr "Sélectionner un tag à supprimer :"
-#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:178
+#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180
#: src/Module/Settings/TwoFactor/Trusted.php:144
msgid "Remove"
msgstr "Utiliser comme photo de profil"
@@ -8411,24 +8858,31 @@ msgstr "Aucun 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:1032
-#: src/Protocol/OStatus.php:1007
+#: 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:1036 src/Protocol/OStatus.php:1012
+#: 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:1039 src/Protocol/OStatus.php:1016
+#: 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:59
+#, 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"
@@ -8447,7 +8901,7 @@ msgstr "Le serveur ne peut pas accepter la mise en ligne d'un nouveau fichier en
msgid "Image file is empty."
msgstr "Fichier image vide."
-#: src/Module/Profile/Photos.php:376
+#: src/Module/Profile/Photos.php:356
msgid "View Album"
msgstr "Voir l'album"
@@ -8462,7 +8916,7 @@ msgid ""
"class=\"btn btn-sm pull-right\">Cancel"
msgstr "Vous êtes en train de consulter votre profil en tant que %s Annuler"
-#: src/Module/Profile/Profile.php:167 src/Module/Settings/Account.php:575
+#: src/Module/Profile/Profile.php:167
msgid "Full Name:"
msgstr "Nom complet :"
@@ -8483,12 +8937,12 @@ msgid "Birthday:"
msgstr "Anniversaire :"
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
msgid "Age: "
msgstr "Age : "
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -8497,13 +8951,13 @@ msgstr[1] "%d ans"
msgstr[2] "%d ans"
#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:246
+#: src/Module/Settings/Profile/Index.php:284
msgid "Description:"
msgstr "Description :"
#: src/Module/Profile/Profile.php:261
-msgid "Forums:"
-msgstr "Forums :"
+msgid "Groups:"
+msgstr "Groupes :"
#: src/Module/Profile/Profile.php:273
msgid "View profile as:"
@@ -8673,7 +9127,7 @@ 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:100
-#: src/Module/Settings/Account.php:566
+#: src/Module/Settings/Account.php:567
msgid "New Password:"
msgstr "Nouveau mot de passe :"
@@ -8682,7 +9136,7 @@ msgid "Leave empty for an auto generated password."
msgstr "Laisser ce champ libre pour obtenir un mot de passe généré automatiquement."
#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101
-#: src/Module/Settings/Account.php:567
+#: src/Module/Settings/Account.php:568
msgid "Confirm:"
msgstr "Confirmer :"
@@ -8709,11 +9163,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:154
+#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156
msgid "Parent Password:"
msgstr "Mot de passe du compte parent :"
-#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:154
+#: 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 "Veuillez saisir le mot de passe du compte parent pour authentifier votre requête."
@@ -8741,7 +9195,7 @@ 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:342
#, php-format
@@ -8786,7 +9240,7 @@ 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:59
msgid "Search term was not saved."
@@ -8900,24 +9354,24 @@ msgid "Update Password"
msgstr "Mettre à jour le mot de passe"
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: src/Module/Settings/Account.php:569
msgid "Current Password:"
msgstr "Mot de passe actuel :"
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: 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:100
-#: src/Module/Settings/Account.php:552
+#: 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 "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:100
-#: src/Module/Settings/Account.php:553
+#: 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."
@@ -9041,99 +9495,99 @@ msgstr "Courriel invalide."
msgid "Cannot change to that email."
msgstr "Ne peut pas changer vers ce courriel."
-#: 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
+#: 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:363
+#: 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:382
+#: src/Module/Settings/Account.php:383
msgid "Importing Contacts done"
msgstr "Import des contacts effectué"
-#: src/Module/Settings/Account.php:395
+#: 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:412
+#: 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:454
+#: src/Module/Settings/Account.php:455
msgid "Personal Page Subtypes"
msgstr "Sous-catégories de page personnelle"
-#: src/Module/Settings/Account.php:455
-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:465
+#: src/Module/Settings/Account.php:466
msgid "Account for a personal profile."
msgstr "Compte pour profil personnel."
-#: src/Module/Settings/Account.php:472
+#: 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:479
+#: 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:486
+#: src/Module/Settings/Account.php:487
msgid "Account for community discussions."
msgstr "Compte pour des discussions communautaires."
-#: src/Module/Settings/Account.php:493
+#: 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:500
+#: 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:507
+#: 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:514
+#: 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:519
-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:521
+#: 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:530
+#: src/Module/Settings/Account.php:531
msgid "OpenID:"
msgstr "OpenID:"
-#: src/Module/Settings/Account.php:530
+#: src/Module/Settings/Account.php:531
msgid "(Optional) Allow this OpenID to login to this account."
msgstr " (Facultatif) Autoriser cet OpenID à se connecter à ce compte."
-#: src/Module/Settings/Account.php:538
+#: 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:538
+#: src/Module/Settings/Account.php:539
#, php-format
msgid ""
"Your profile will be published in this node's local "
@@ -9141,89 +9595,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:544
+#: 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:557
+#: src/Module/Settings/Account.php:558
msgid "Account Settings"
msgstr "Compte"
-#: src/Module/Settings/Account.php:558
+#: 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:565
+#: src/Module/Settings/Account.php:566
msgid "Password Settings"
msgstr "Réglages de mot de passe"
-#: src/Module/Settings/Account.php:567
+#: 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:569
+#: src/Module/Settings/Account.php:570
msgid "Password:"
msgstr "Mot de passe :"
-#: 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 "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:572
+#: src/Module/Settings/Account.php:573
msgid "Delete OpenID URL"
msgstr "Supprimer l'URL OpenID"
-#: src/Module/Settings/Account.php:574
+#: src/Module/Settings/Account.php:575
msgid "Basic Settings"
msgstr "Réglages de base"
#: 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:577
+#: src/Module/Settings/Account.php:578
msgid "Your Timezone:"
msgstr "Votre fuseau horaire :"
-#: src/Module/Settings/Account.php:578
+#: src/Module/Settings/Account.php:579
msgid "Your Language:"
msgstr "Votre langue :"
-#: 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 "Détermine la langue que nous utilisons pour afficher votre interface Friendica et pour vous envoyer des courriels"
-#: src/Module/Settings/Account.php:579
+#: src/Module/Settings/Account.php:580
msgid "Default Post Location:"
msgstr "Emplacement de publication par défaut:"
-#: src/Module/Settings/Account.php:580
+#: src/Module/Settings/Account.php:581
msgid "Use Browser Location:"
msgstr "Utiliser la localisation géographique du navigateur:"
-#: src/Module/Settings/Account.php:582
+#: 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:584
+#: 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: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 "(pour limiter l'impact du spam)"
-#: src/Module/Settings/Account.php:586
+#: src/Module/Settings/Account.php:587
msgid "Allow your profile to be searchable globally?"
msgstr "Publier votre profil publiquement"
-#: 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 "
@@ -9231,43 +9690,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:587
+#: 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: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 "La liste de vos contacts est affichée sur votre profil. Activer cette option pour désactiver son affichage."
-#: src/Module/Settings/Account.php:588
+#: 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:588
+#: 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 "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:589
+#: src/Module/Settings/Account.php:590
msgid "Make public posts unlisted"
msgstr "Délister vos publications publiques"
-#: 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 "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:590
+#: 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: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 "
@@ -9275,233 +9734,241 @@ 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:591
+#: 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: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 "Vos contacts peuvent partager des publications sur votre mur. Ces publication seront visibles par vos abonnés."
-#: src/Module/Settings/Account.php:592
+#: src/Module/Settings/Account.php:593
msgid "Allow friends to tag your posts?"
-msgstr "Autoriser vos contacts à ajouter des tags à vos publications?"
-
-#: src/Module/Settings/Account.php:592
-msgid "Your contacts can add additional tags to your posts."
-msgstr "Vos contacts peuvent ajouter des tag à vos publications."
+msgstr "Autoriser vos contacts à ajouter des tags à vos publications ?"
#: src/Module/Settings/Account.php:593
+msgid "Your contacts can add additional tags to your posts."
+msgstr "Vos contacts peuvent ajouter des tags à vos publications."
+
+#: 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: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 "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:594
+#: 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: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:600
+#: src/Module/Settings/Account.php:602
msgid "Expiration settings"
msgstr "Réglages d'expiration"
-#: src/Module/Settings/Account.php:601
+#: 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:601
+#: 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:602
+#: src/Module/Settings/Account.php:604
msgid "Expire posts"
msgstr "Faire expirer les publications"
-#: src/Module/Settings/Account.php:602
+#: 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:603
+#: src/Module/Settings/Account.php:605
msgid "Expire personal notes"
msgstr "Faire expirer les notes personnelles"
-#: 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 "Faire expirer les publications marquées"
-#: 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 "Par défaut, marquer une publication empêche leur expiration."
-#: src/Module/Settings/Account.php:605
+#: 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: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 "Empêche vos propres publications d'expirer. S'applique à tous les choix précédents."
-#: src/Module/Settings/Account.php:608
+#: src/Module/Settings/Account.php:610
msgid "Notification Settings"
msgstr "Réglages de notification"
-#: src/Module/Settings/Account.php:609
+#: 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:610
+#: src/Module/Settings/Account.php:612
msgid "You receive an introduction"
msgstr "Vous recevez une introduction"
-#: src/Module/Settings/Account.php:611
+#: src/Module/Settings/Account.php:613
msgid "Your introductions are confirmed"
msgstr "Vos introductions sont confirmées"
-#: src/Module/Settings/Account.php:612
+#: 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:613
+#: src/Module/Settings/Account.php:615
msgid "Someone writes a followup comment"
msgstr "Quelqu'un vous commente"
-#: src/Module/Settings/Account.php:614
+#: src/Module/Settings/Account.php:616
msgid "You receive a private message"
msgstr "Vous recevez un message privé"
-#: src/Module/Settings/Account.php:615
+#: 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:616
-msgid "You are tagged in a post"
-msgstr "Vous avez été mentionné•e dans une publication"
-
#: src/Module/Settings/Account.php:618
+msgid "You are tagged in a post"
+msgstr "Vous avez été mentionné(e) dans une publication"
+
+#: 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:619
+#: src/Module/Settings/Account.php:621
msgid "Someone tagged you"
msgstr "Quelqu'un vous a mentionné"
-#: src/Module/Settings/Account.php:620
+#: 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:621
+#: src/Module/Settings/Account.php:623
msgid "Someone liked your content"
msgstr "Quelqu'un a aimé votre contenu"
-#: src/Module/Settings/Account.php:621 src/Module/Settings/Account.php:622
+#: 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:622
+#: src/Module/Settings/Account.php:624
msgid "Someone shared your content"
msgstr "Quelqu'un a partagé votre contenu"
-#: src/Module/Settings/Account.php:623
+#: 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:624
+#: 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:625
+#: 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:627
+#: src/Module/Settings/Account.php:629
msgid "Activate desktop notifications"
msgstr "Activer les notifications de bureau"
-#: src/Module/Settings/Account.php:627
+#: 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:631
+#: src/Module/Settings/Account.php:633
msgid "Text-only notification emails"
msgstr "Courriels de notification en format texte"
-#: src/Module/Settings/Account.php:633
+#: 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:637
+#: src/Module/Settings/Account.php:639
msgid "Show detailled notifications"
msgstr "Notifications détaillées"
-#: src/Module/Settings/Account.php:639
+#: 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:643
+#: 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:645
+#: 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:648
+#: 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:649
+#: 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:652
+#: src/Module/Settings/Account.php:654
msgid "Import Contacts"
msgstr "Importer des contacts"
-#: src/Module/Settings/Account.php:653
+#: 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:654
+#: src/Module/Settings/Account.php:656
msgid "Upload File"
msgstr "Téléverser le fichier"
-#: src/Module/Settings/Account.php:657
+#: src/Module/Settings/Account.php:659
msgid "Relocate"
msgstr "Relocaliser"
-#: src/Module/Settings/Account.php:658
+#: 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:659
+#: src/Module/Settings/Account.php:661
msgid "Resend relocate message to contacts"
msgstr "Renvoyer un message de relocalisation aux contacts."
@@ -9561,7 +10028,7 @@ 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."
+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"
@@ -9633,13 +10100,13 @@ msgstr "Quand activé, le champ \"spoiler_text\" dans l'API sera utilisé pour l
#: src/Module/Settings/Connectors.php:226
msgid "API: Automatically links at the end of the post as attached posts"
-msgstr ""
+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 ""
+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"
@@ -9710,224 +10177,250 @@ msgstr "Déplacer vers"
msgid "Move to folder:"
msgstr "Déplacer vers :"
-#: src/Module/Settings/Delegation.php:52
+#: src/Module/Settings/Delegation.php:54
msgid "Delegation successfully granted."
msgstr "Délégation accordée avec succès."
-#: src/Module/Settings/Delegation.php:54
+#: src/Module/Settings/Delegation.php:56
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:58
+#: src/Module/Settings/Delegation.php:60
msgid "Delegation successfully revoked."
msgstr "Délégation retirée avec succès."
-#: src/Module/Settings/Delegation.php:80
-#: src/Module/Settings/Delegation.php:102
+#: src/Module/Settings/Delegation.php:82
+#: src/Module/Settings/Delegation.php:104
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:94
+#: src/Module/Settings/Delegation.php:96
msgid "Delegate user not found."
msgstr "Délégué introuvable."
-#: src/Module/Settings/Delegation.php:142
+#: src/Module/Settings/Delegation.php:144
msgid "No parent user"
msgstr "Pas d'utilisateur parent"
-#: src/Module/Settings/Delegation.php:153
-#: src/Module/Settings/Delegation.php:164
+#: src/Module/Settings/Delegation.php:155
+#: src/Module/Settings/Delegation.php:166
msgid "Parent User"
msgstr "Compte parent"
-#: src/Module/Settings/Delegation.php:161
+#: src/Module/Settings/Delegation.php:163
msgid "Additional Accounts"
msgstr "Comptes supplémentaires"
-#: src/Module/Settings/Delegation.php:162
+#: 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 "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:163
+#: src/Module/Settings/Delegation.php:165
msgid "Register an additional account"
msgstr "Enregistrer un compte supplémentaire"
-#: src/Module/Settings/Delegation.php:167
+#: 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 "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:171
+#: src/Module/Settings/Delegation.php:173
msgid "Delegates"
msgstr "Délégataires"
-#: src/Module/Settings/Delegation.php:173
+#: 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 "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:174
+#: src/Module/Settings/Delegation.php:176
msgid "Existing Page Delegates"
msgstr "Délégataires existants"
-#: src/Module/Settings/Delegation.php:176
+#: src/Module/Settings/Delegation.php:178
msgid "Potential Delegates"
msgstr "Délégataires potentiels"
-#: src/Module/Settings/Delegation.php:179
+#: src/Module/Settings/Delegation.php:181
msgid "Add"
msgstr "Ajouter"
-#: src/Module/Settings/Delegation.php:180
+#: src/Module/Settings/Delegation.php:182
msgid "No entries."
msgstr "Aucune entrée."
-#: src/Module/Settings/Display.php:137
+#: src/Module/Settings/Display.php:146
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:177
+#: src/Module/Settings/Display.php:186
#, php-format
msgid "%s - (Unsupported)"
msgstr "%s- (non supporté)"
-#: src/Module/Settings/Display.php:212
+#: src/Module/Settings/Display.php:221
msgid "No preview"
msgstr "Pas d'aperçu"
-#: src/Module/Settings/Display.php:213
+#: src/Module/Settings/Display.php:222
msgid "No image"
msgstr "Pas d'image"
-#: src/Module/Settings/Display.php:214
+#: src/Module/Settings/Display.php:223
msgid "Small Image"
msgstr "Petite image"
-#: src/Module/Settings/Display.php:215
+#: src/Module/Settings/Display.php:224
msgid "Large Image"
msgstr "Grande image"
-#: src/Module/Settings/Display.php:246
+#: src/Module/Settings/Display.php:259
msgid "Display Settings"
msgstr "Affichage"
-#: src/Module/Settings/Display.php:248
+#: src/Module/Settings/Display.php:261
msgid "General Theme Settings"
msgstr "Paramètres généraux de thème"
-#: src/Module/Settings/Display.php:249
+#: src/Module/Settings/Display.php:262
msgid "Custom Theme Settings"
msgstr "Paramètres personnalisés de thème"
-#: src/Module/Settings/Display.php:250
+#: src/Module/Settings/Display.php:263
msgid "Content Settings"
msgstr "Paramètres de contenu"
-#: src/Module/Settings/Display.php:251 view/theme/duepuntozero/config.php:86
+#: 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 "Réglages du thème graphique"
-#: src/Module/Settings/Display.php:257
+#: src/Module/Settings/Display.php:265
+msgid "Timelines"
+msgstr "Flux"
+
+#: src/Module/Settings/Display.php:272
msgid "Display Theme:"
msgstr "Thème d'affichage:"
-#: src/Module/Settings/Display.php:258
+#: src/Module/Settings/Display.php:273
msgid "Mobile Theme:"
msgstr "Thème mobile:"
-#: src/Module/Settings/Display.php:261
+#: src/Module/Settings/Display.php:276
msgid "Number of items to display per page:"
msgstr "Nombre d’éléments par page :"
-#: src/Module/Settings/Display.php:261 src/Module/Settings/Display.php:262
+#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277
msgid "Maximum of 100 items"
msgstr "Maximum de 100 éléments"
-#: src/Module/Settings/Display.php:262
+#: src/Module/Settings/Display.php:277
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:263
+#: src/Module/Settings/Display.php:278
msgid "Update browser every xx seconds"
msgstr "Mettre à jour l'affichage toutes les xx secondes"
-#: src/Module/Settings/Display.php:263
+#: src/Module/Settings/Display.php:278
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:264
+#: src/Module/Settings/Display.php:279
msgid "Display emoticons"
msgstr "Afficher les émoticônes"
-#: src/Module/Settings/Display.php:264
+#: src/Module/Settings/Display.php:279
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:265
+#: src/Module/Settings/Display.php:280
msgid "Infinite scroll"
msgstr "Défilement infini"
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:280
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:266
+#: src/Module/Settings/Display.php:281
msgid "Enable Smart Threading"
msgstr "Activer le fil de discussion intelligent"
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:281
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:267
+#: src/Module/Settings/Display.php:282
msgid "Display the Dislike feature"
msgstr "Afficher la fonctionnalité \"Je n'aime pas\""
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:282
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:268
+#: src/Module/Settings/Display.php:283
msgid "Display the resharer"
-msgstr "Afficher le repartageur"
+msgstr "Afficher le partageur"
-#: src/Module/Settings/Display.php:268
+#: src/Module/Settings/Display.php:283
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:269
+#: src/Module/Settings/Display.php:284
msgid "Stay local"
msgstr "Rester local"
-#: src/Module/Settings/Display.php:269
+#: src/Module/Settings/Display.php:284
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:270
+#: src/Module/Settings/Display.php:285
msgid "Link preview mode"
msgstr "Mode de prévisualisation des liens"
-#: src/Module/Settings/Display.php:270
+#: src/Module/Settings/Display.php:285
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:272
+#: src/Module/Settings/Display.php:287
+msgid "Timelines for the network page:"
+msgstr "Flux pour la page réseau :"
+
+#: src/Module/Settings/Display.php:287
+msgid "Select all the timelines that you want to see on your network page."
+msgstr "Sélectionnez tous les flux que vous souhaitez voir sur votre page réseau."
+
+#: src/Module/Settings/Display.php:288
+msgid "Channel languages:"
+msgstr "Langues de la chaîne :"
+
+#: src/Module/Settings/Display.php:288
+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:290
msgid "Beginning of week:"
msgstr "Début de la semaine :"
-#: src/Module/Settings/Display.php:273
+#: src/Module/Settings/Display.php:291
msgid "Default calendar view:"
msgstr "Vue par défaut du calendrier :"
+#: src/Module/Settings/Display.php:300 src/Module/Settings/Display.php:308
+#: src/Module/Settings/Display.php:312
+#, php-format
+msgid "%s: %s"
+msgstr "%s : %s"
+
#: src/Module/Settings/Features.php:74
msgid "Additional Features"
msgstr "Fonctions supplémentaires"
@@ -9940,155 +10433,151 @@ msgstr "Applications connectées"
msgid "Remove authorization"
msgstr "Révoquer l'autorisation"
-#: src/Module/Settings/Profile/Index.php:84
-msgid "Profile Name is required."
-msgstr "Le nom du profil est requis."
+#: 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:134
+#: 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:175
-#: src/Module/Settings/Profile/Index.php:195
+#: src/Module/Settings/Profile/Index.php:205
+#: src/Module/Settings/Profile/Index.php:226
msgid "Label:"
msgstr "Description :"
-#: src/Module/Settings/Profile/Index.php:176
-#: src/Module/Settings/Profile/Index.php:196
+#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:227
msgid "Value:"
msgstr "Contenu :"
-#: src/Module/Settings/Profile/Index.php:186
-#: src/Module/Settings/Profile/Index.php:206
+#: 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:187
-#: src/Module/Settings/Profile/Index.php:207
+#: 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:193
+#: 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:216
+#: 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:218
+#: 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:228
+#: src/Module/Settings/Profile/Index.php:255
msgid "Profile Actions"
msgstr "Actions de Profil"
-#: src/Module/Settings/Profile/Index.php:229
+#: src/Module/Settings/Profile/Index.php:256
msgid "Edit Profile Details"
msgstr "Éditer les détails du profil"
-#: src/Module/Settings/Profile/Index.php:231
+#: src/Module/Settings/Profile/Index.php:258
msgid "Change Profile Photo"
msgstr "Changer la photo du profil"
-#: src/Module/Settings/Profile/Index.php:236
+#: src/Module/Settings/Profile/Index.php:261
msgid "Profile picture"
msgstr "Image de profil"
-#: src/Module/Settings/Profile/Index.php:237
+#: src/Module/Settings/Profile/Index.php:262
msgid "Location"
msgstr "Localisation"
-#: src/Module/Settings/Profile/Index.php:238 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:239
+#: src/Module/Settings/Profile/Index.php:264
msgid "Custom Profile Fields"
msgstr "Champs de profil personalisés"
-#: src/Module/Settings/Profile/Index.php:241 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:245
-msgid "Display name:"
-msgstr "Nom d'utilisateur :"
-
-#: src/Module/Settings/Profile/Index.php:248
-msgid "Street Address:"
-msgstr "Adresse postale :"
-
-#: src/Module/Settings/Profile/Index.php:249
-msgid "Locality/City:"
-msgstr "Ville :"
-
-#: src/Module/Settings/Profile/Index.php:250
-msgid "Region/State:"
-msgstr "Région / État :"
-
-#: src/Module/Settings/Profile/Index.php:251
-msgid "Postal/Zip Code:"
-msgstr "Code postal :"
-
-#: src/Module/Settings/Profile/Index.php:252
-msgid "Country:"
-msgstr "Pays :"
-
-#: src/Module/Settings/Profile/Index.php:254
-msgid "XMPP (Jabber) address:"
-msgstr "Adresse XMPP (Jabber) :"
-
-#: src/Module/Settings/Profile/Index.php:254
-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:255
-msgid "Matrix (Element) address:"
-msgstr "Adresse Matrix (Element) :"
-
-#: src/Module/Settings/Profile/Index.php:255
-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:256
-msgid "Homepage URL:"
-msgstr "Page personnelle :"
-
-#: src/Module/Settings/Profile/Index.php:257
-msgid "Public Keywords:"
-msgstr "Mots-clés publics :"
-
-#: src/Module/Settings/Profile/Index.php:257
-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:258
-msgid "Private Keywords:"
-msgstr "Mots-clés privés :"
-
-#: src/Module/Settings/Profile/Index.php:258
-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:259
+#: src/Module/Settings/Profile/Index.php:266
#, php-format
msgid ""
"Custom fields appear on your profile page.
\n"
"\t\t\t\tYou can use BBCodes in the field values.
\n"
"\t\t\t\tReorder by dragging the field title.
\n"
"\t\t\t\tEmpty the label field to remove a custom field.
\n"
-"\t\t\t\tNon-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\tVous pouvez utilisez les BBCodes dans le contenu des champs.
\n\t\t\t\tTriez les champs en glissant-déplaçant leur titre.
\n\t\t\t\tLaissez le titre d'un champ vide pour le supprimer lors de la soumission du formulaire .
\n\t\t\t\tLes champs non-publics peuvent être consultés uniquement par les contacts Friendica autorisés dans les permissions.
"
+"\t\t\t\tNon-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\tVous pouvez utilisez les BBCodes dans le contenu des champs.
\n\t\t\t\tTriez les champs en glissant-déplaçant leur titre.
\n\t\t\t\tLaissez le titre d'un champ vide pour le supprimer lors de la soumission du formulaire .
\n\t\t\t\tLes 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/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
@@ -10200,6 +10689,42 @@ msgstr "Ceci supprimera totalement votre compte. Cette opération est irréversi
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
@@ -10521,21 +11046,42 @@ msgid ""
" e.g. Mastodon."
msgstr "Exporter vos abonnements au format CSV. Compatible avec Mastodon."
+#: 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 "Not Found"
-msgstr "Non trouvé"
+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 ""
-"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 "Malheureusement, la discussion demandée ne vous est pas accessible.
\nLes raisons possibles sont :
\n\n\t- La publication parente n'est pas visible
\n\t- La publication parente a été supprimée
\n\t- Le noeud a bloqué l'auteur/autrice d'origine ou l'auteur/autrice de la publication partagée
\n\t- Vous avez ignoré ou bloqué l'auteur/autrice d'origine ou l'auteur/autrice de la publication partagée
\n
"
+"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:"
@@ -10546,7 +11092,7 @@ msgstr "Stack trace:"
msgid "Exception thrown in %s:%d"
msgstr "Exception produite dans %s:%d"
-#: src/Module/Tos.php:57 src/Module/Tos.php:106
+#: 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"
@@ -10559,14 +11105,14 @@ 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:107
+#: 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:108
+#: 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"
@@ -10577,11 +11123,11 @@ msgid ""
"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:105
+#: src/Module/Tos.php:63 src/Module/Tos.php:106
msgid "Privacy Statement"
msgstr "Politique de Confidentialité"
-#: src/Module/Tos.php:102
+#: src/Module/Tos.php:103
msgid "Rules"
msgstr "Règles"
@@ -10589,6 +11135,10 @@ msgstr "Règles"
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/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."
@@ -10637,11 +11187,11 @@ msgstr "Erreur ! Pas de ficher de version existant ! Êtes vous sur un compte Fr
msgid "User '%s' already exists on this server!"
msgstr "L'utilisateur '%s' existe déjà sur ce serveur!"
-#: src/Module/User/Import.php:263
+#: src/Module/User/Import.php:267
msgid "User creation error"
msgstr "Erreur de création d'utilisateur"
-#: src/Module/User/Import.php:312
+#: src/Module/User/Import.php:316
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
@@ -10649,11 +11199,11 @@ 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:361
+#: src/Module/User/Import.php:365
msgid "User profile creation error"
msgstr "Erreur de création du profil utilisateur"
-#: src/Module/User/Import.php:412
+#: 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"
@@ -10787,15 +11337,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?"
@@ -10966,7 +11516,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
@@ -11184,7 +11734,7 @@ msgstr "%2$s a accepté votre [url=%1$s]demande de connexion[/url]."
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:444
#, php-format
@@ -11262,7 +11812,7 @@ 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:783
#, php-format
@@ -11302,199 +11852,208 @@ 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:135
+#: src/Object/Post.php:138
msgid "Private Message"
msgstr "Message privé"
-#: src/Object/Post.php:139
+#: src/Object/Post.php:142
msgid "Public Message"
msgstr "Message Public"
-#: src/Object/Post.php:143
+#: src/Object/Post.php:146
msgid "Unlisted Message"
msgstr "Message non référencé"
-#: src/Object/Post.php:178
+#: src/Object/Post.php:181
msgid "This entry was edited"
msgstr "Cette entrée a été éditée"
-#: src/Object/Post.php:206
+#: src/Object/Post.php:209
msgid "Connector Message"
msgstr "Message du connecteur"
-#: src/Object/Post.php:222 src/Object/Post.php:224
+#: src/Object/Post.php:225 src/Object/Post.php:227
msgid "Edit"
msgstr "Éditer"
-#: src/Object/Post.php:248
+#: src/Object/Post.php:261
msgid "Delete globally"
msgstr "Effacer globalement"
-#: src/Object/Post.php:248
+#: src/Object/Post.php:261
msgid "Remove locally"
msgstr "Effacer localement"
-#: src/Object/Post.php:265
+#: src/Object/Post.php:268
#, php-format
msgid "Block %s"
msgstr "Bloquer %s"
-#: src/Object/Post.php:270
+#: src/Object/Post.php:273
#, php-format
msgid "Ignore %s"
msgstr "Ignorer %s"
-#: src/Object/Post.php:275
+#: src/Object/Post.php:278
+#, php-format
+msgid "Collapse %s"
+msgstr "Réduire %s"
+
+#: src/Object/Post.php:282
+msgid "Report post"
+msgstr "Signaler la publication"
+
+#: src/Object/Post.php:293
msgid "Save to folder"
msgstr "Sauvegarder dans le dossier"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I will attend"
msgstr "Je vais participer"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I will not attend"
msgstr "Je ne vais pas participer"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I might attend"
msgstr "Je vais peut-être participer"
-#: src/Object/Post.php:340
+#: src/Object/Post.php:363
msgid "Ignore thread"
msgstr "Ignorer cette conversation"
-#: src/Object/Post.php:341
+#: src/Object/Post.php:364
msgid "Unignore thread"
msgstr "Ne pas ignorer cette conversation"
-#: src/Object/Post.php:342
+#: src/Object/Post.php:365
msgid "Toggle ignore status"
msgstr "Commuter le statut de suivi"
-#: src/Object/Post.php:352
+#: src/Object/Post.php:375
msgid "Add star"
msgstr "Ajouter une étoile"
-#: src/Object/Post.php:353
+#: src/Object/Post.php:376
msgid "Remove star"
msgstr "Retirer l'étoile"
-#: src/Object/Post.php:354
+#: src/Object/Post.php:377
msgid "Toggle star status"
msgstr "Commuter l'état de l'étoile"
-#: src/Object/Post.php:365
+#: src/Object/Post.php:388
msgid "Pin"
msgstr "Épingler"
-#: src/Object/Post.php:366
+#: src/Object/Post.php:389
msgid "Unpin"
msgstr "Désépingler"
-#: src/Object/Post.php:367
+#: src/Object/Post.php:390
msgid "Toggle pin status"
msgstr "Commuter le statut de l'épingle"
-#: src/Object/Post.php:370
+#: src/Object/Post.php:393
msgid "Pinned"
msgstr "Épinglé"
-#: src/Object/Post.php:375
+#: src/Object/Post.php:398
msgid "Add tag"
-msgstr "Ajouter une étiquette"
+msgstr "Ajouter un tag"
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote share this"
msgstr "Citer et repartager ceci"
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote Share"
msgstr "Citer et repartager"
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare this"
-msgstr "Repartager ceci"
+msgstr "Partager ceci"
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare"
-msgstr "Repartager"
+msgstr "Partager"
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Cancel your Reshare"
msgstr "Annuler votre repartage"
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Unshare"
msgstr "Ne plus partager"
-#: src/Object/Post.php:443
+#: src/Object/Post.php:466
#, php-format
msgid "%s (Received %s)"
msgstr "%s ( Reçu %s)"
-#: src/Object/Post.php:448
+#: src/Object/Post.php:472
msgid "Comment this item on your system"
msgstr "Commenter ce sujet sur votre instance"
-#: src/Object/Post.php:448
+#: src/Object/Post.php:472
msgid "Remote comment"
msgstr "Commentaire distant"
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via ..."
msgstr "Partager par..."
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via external services"
msgstr "Partager par des services externes"
-#: src/Object/Post.php:498
+#: src/Object/Post.php:523
msgid "to"
msgstr "à"
-#: src/Object/Post.php:499
+#: src/Object/Post.php:524
msgid "via"
msgstr "via"
-#: src/Object/Post.php:500
+#: src/Object/Post.php:525
msgid "Wall-to-Wall"
msgstr "Inter-mur"
-#: src/Object/Post.php:501
+#: src/Object/Post.php:526
msgid "via Wall-To-Wall:"
msgstr "en Inter-mur :"
-#: src/Object/Post.php:545
+#: src/Object/Post.php:573
#, php-format
msgid "Reply to %s"
msgstr "Répondre à %s"
-#: src/Object/Post.php:548
+#: src/Object/Post.php:576
msgid "More"
msgstr "Plus"
-#: src/Object/Post.php:566
+#: src/Object/Post.php:595
msgid "Notifier task is pending"
msgstr "La notification de la tâche est en cours"
-#: src/Object/Post.php:567
+#: src/Object/Post.php:596
msgid "Delivery to remote servers is pending"
msgstr "La distribution aux serveurs distants est en attente"
-#: src/Object/Post.php:568
+#: src/Object/Post.php:597
msgid "Delivery to remote servers is underway"
msgstr "La distribution aux serveurs distants est en cours"
-#: src/Object/Post.php:569
+#: src/Object/Post.php:598
msgid "Delivery to remote servers is mostly done"
msgstr "La distribution aux serveurs distants est presque terminée"
-#: src/Object/Post.php:570
+#: src/Object/Post.php:599
msgid "Delivery to remote servers is done"
msgstr "La distribution aux serveurs distants est terminée"
-#: src/Object/Post.php:590
+#: src/Object/Post.php:619
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
@@ -11502,50 +12061,50 @@ msgstr[0] "%d commentaire"
msgstr[1] "%d commentaires"
msgstr[2] "%d commentaires"
-#: src/Object/Post.php:591
+#: src/Object/Post.php:620
msgid "Show more"
msgstr "Montrer plus"
-#: src/Object/Post.php:592
+#: src/Object/Post.php:621
msgid "Show fewer"
msgstr "Montrer moins"
-#: src/Object/Post.php:628
+#: src/Object/Post.php:657
#, php-format
msgid "Reshared by: %s"
-msgstr "Repartagé par : %s"
+msgstr "Partagé par : %s"
-#: src/Object/Post.php:633
+#: src/Object/Post.php:662
#, php-format
msgid "Viewed by: %s"
msgstr "Vu par : %s"
-#: src/Object/Post.php:638
+#: src/Object/Post.php:667
#, php-format
msgid "Liked by: %s"
msgstr "Aimé par : %s"
-#: src/Object/Post.php:643
+#: src/Object/Post.php:672
#, php-format
msgid "Disliked by: %s"
msgstr "Pas aimé par : %s"
-#: src/Object/Post.php:648
+#: src/Object/Post.php:677
#, php-format
msgid "Attended by: %s"
msgstr "Y assisteront : %s"
-#: src/Object/Post.php:653
+#: src/Object/Post.php:682
#, php-format
msgid "Maybe attended by: %s"
msgstr "Y assisteront peut-être : %s"
-#: src/Object/Post.php:658
+#: src/Object/Post.php:687
#, php-format
msgid "Not attended by: %s"
msgstr "N'y assisteront pas : %s"
-#: src/Object/Post.php:663
+#: src/Object/Post.php:692
#, php-format
msgid "Reacted with %s by: %s"
msgstr "La réaction %s a été faite par : %s"
@@ -11554,21 +12113,21 @@ msgstr "La réaction %s a été faite par : %s"
msgid "(no subject)"
msgstr "(aucun sujet)"
-#: src/Protocol/OStatus.php:1388
+#: src/Protocol/OStatus.php:1390
#, php-format
msgid "%s is now following %s."
msgstr "%s suit désormais %s."
-#: src/Protocol/OStatus.php:1389
+#: src/Protocol/OStatus.php:1391
msgid "following"
msgstr "following"
-#: src/Protocol/OStatus.php:1392
+#: src/Protocol/OStatus.php:1394
#, php-format
msgid "%s stopped following %s."
msgstr "%s ne suit plus %s."
-#: src/Protocol/OStatus.php:1393
+#: src/Protocol/OStatus.php:1395
msgid "stopped following"
msgstr "retiré de la liste de suivi"
@@ -11926,8 +12485,8 @@ msgid "Textareas font size"
msgstr "Taille de police des zones de texte"
#: view/theme/vier/config.php:91
-msgid "Comma separated list of helper forums"
-msgstr "Liste de forums d'entraide, séparés par des virgules"
+msgid "Comma separated list of helper groups"
+msgstr "Liste de groupe d'entraide, séparés par des virgules"
#: view/theme/vier/config.php:131
msgid "don't show"
@@ -11945,7 +12504,7 @@ msgstr "Définir le style"
msgid "Community Pages"
msgstr "Pages Communautaires"
-#: view/theme/vier/config.php:139 view/theme/vier/theme.php:149
+#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148
msgid "Community Profiles"
msgstr "Profils communautaires"
@@ -11953,7 +12512,7 @@ msgstr "Profils communautaires"
msgid "Help or @NewHere ?"
msgstr "Besoin d'aide ou @NouveauIci ?"
-#: view/theme/vier/config.php:141 view/theme/vier/theme.php:320
+#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319
msgid "Connect Services"
msgstr "Connecter des services"
@@ -11961,10 +12520,10 @@ msgstr "Connecter des services"
msgid "Find Friends"
msgstr "Trouver des contacts"
-#: view/theme/vier/config.php:143 view/theme/vier/theme.php:176
+#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175
msgid "Last users"
msgstr "Derniers utilisateurs"
-#: view/theme/vier/theme.php:235
+#: 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 5c19e57385..32cc8985ad 100644
--- a/view/lang/fr/strings.php
+++ b/view/lang/fr/strings.php
@@ -25,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.
@@ -57,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é.';
@@ -146,7 +146,7 @@ $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['%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['The maximum accepted image size is %s'] = 'La taille maximum d\'image autorisée est de %s';
@@ -173,11 +173,11 @@ $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)';
@@ -198,6 +198,26 @@ $a->strings['Apologies but the website is unavailable at the moment.'] = 'Désol
$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.';
@@ -279,12 +299,74 @@ $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['and'] = 'et';
$a->strings['and %d other people'] = 'et %d autres personnes';
+$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) ?';
@@ -298,6 +380,8 @@ $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';
@@ -315,18 +399,13 @@ $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['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['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['%s reshared this.'] = '%s a partagé ceci.';
+$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';
@@ -341,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';
@@ -357,19 +470,20 @@ $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['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['Forums'] = 'Forums';
-$a->strings['External link to forum'] = 'Lien sortant vers le forum';
+$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';
@@ -383,14 +497,15 @@ $a->strings['View Contact'] = 'Voir Contact';
$a->strings['Send PM'] = 'Message privé';
$a->strings['Block'] = 'Bloquer';
$a->strings['Ignore'] = 'Ignorer';
-$a->strings['Collapse'] = 'Fusionner';
+$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';
@@ -487,8 +602,9 @@ $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';
@@ -502,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';
@@ -524,12 +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['XMPP:'] = 'XMPP';
$a->strings['Matrix:'] = 'Matrix :';
$a->strings['Location:'] = 'Localisation :';
$a->strings['Network:'] = 'Réseau';
$a->strings['Unfollow'] = 'Se désabonner';
+$a->strings['Mention'] = 'Mention';
+$a->strings['Post to group'] = 'Publier sur le groupe';
+$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';
@@ -537,7 +658,7 @@ $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 group to show a filtered list. You can also mention the special groups "Followers" and "Mutuals".'] = 'Commencer à écrire le nom d\'un contact ou d\'un groupe pour afficher une liste filtrée. Vous pouvez aussi mentionner les groupes spéciaux "Followers" et "Mutuels".';
+$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';
@@ -648,6 +769,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é!';
@@ -664,7 +787,7 @@ $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['
@@ -692,9 +815,18 @@ $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['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.';
@@ -732,44 +864,34 @@ $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 fusionné';
+$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';
@@ -847,12 +969,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:
@@ -1022,37 +1144,37 @@ $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',
+ 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 utilisateur actif 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 utilisateur actif 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 utilisateur enregistré',
+ 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 publication ou commentaire créé 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 publication 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 utilisateur 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';
@@ -1067,7 +1189,8 @@ $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['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';
@@ -1142,7 +1265,7 @@ $a->strings['The email address your server shall use to send notification emails
$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['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';
@@ -1171,6 +1294,8 @@ $a->strings['Maximum length in pixels of the longest side of uploaded images. De
$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';
@@ -1182,7 +1307,7 @@ $a->strings['Will not waste system resources polling external sites for abandond
$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['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';
@@ -1195,9 +1320,9 @@ $a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Activer c
$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['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';
@@ -1220,7 +1345,7 @@ $a->strings['Email administrators on new registration'] = 'Envoyer un courriel a
$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é (n\'est pas valide pour ';
+$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.';
@@ -1262,7 +1387,7 @@ $a->strings['If enabled, general server and usage data will be published. The da
$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['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';
@@ -1277,10 +1402,10 @@ $a->strings['Maximum numbers of comments per post on the display page'] = 'Nombr
$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['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 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['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';
@@ -1291,13 +1416,13 @@ $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['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['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';
@@ -1309,6 +1434,7 @@ $a->strings['Save & Use storage backend'] = 'Enregistrer et utiliser ce moteur d
$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.';
@@ -1323,8 +1449,6 @@ $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 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.';
@@ -1366,7 +1490,7 @@ $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['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';
@@ -1394,10 +1518,13 @@ $a->strings['Weekly posting limit of %d post reached. The post was rejected.'] =
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.',
+ 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';
@@ -1411,14 +1538,20 @@ $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['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.';
@@ -1445,6 +1578,29 @@ $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.',
@@ -1457,19 +1613,19 @@ $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'] = 'Fusionnés';
-$a->strings['Only show collapsed contacts'] = 'N\'afficher que les contacts fusionné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 groups'] = 'Organisez vos groupes de contacts';
+$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'] = 'Dé-fusionner';
+$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';
@@ -1483,7 +1639,6 @@ $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 not found.'] = 'Contact introuvable.';
$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';
@@ -1491,7 +1646,6 @@ $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)'] = [
@@ -1530,7 +1684,7 @@ $a->strings['OStatus support is disabled. Contact can\'t be added.'] = 'Le suppo
$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['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';
@@ -1543,12 +1697,13 @@ $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 a été dé-fusionné';
-$a->strings['Contact has been collapsed'] = 'Le contact a été fusionné';
+$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)';
@@ -1556,7 +1711,7 @@ $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 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';
@@ -1577,27 +1732,38 @@ $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 fusionné';
+$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 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['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 fusionné';
+$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 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.';
@@ -1608,29 +1774,17 @@ $a->strings['Unfollowing is currently not supported by your network.'] = 'Le dé
$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['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['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['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['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';
@@ -1728,26 +1882,6 @@ $a->strings['Please visit Friendi.ca to learn m
$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 :';
@@ -1775,10 +1909,10 @@ $a->strings['For security reasons the password must not be empty'] = 'Pour des r
$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['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 mails envoyés.';
+$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
';
@@ -1802,7 +1936,7 @@ $a->strings['Our apologies. This system is not currently configured to connect w
$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['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 :';
@@ -1816,7 +1950,6 @@ $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 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['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';
@@ -1830,7 +1963,6 @@ $a->strings['Or - did you try to upload an empty file?'] = 'Ou — auriez-vous
$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 exceeds size limit of %s'] = 'L\'image dépasse la taille limite de %s';
$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';
@@ -1841,13 +1973,13 @@ $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'] = [
@@ -1962,18 +2094,68 @@ $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['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['Private Group Account'] = 'Compte de groupe privé';
$a->strings['Registered users'] = 'Utilisateurs inscrits';
$a->strings['Pending registrations'] = 'Inscriptions en attente';
$a->strings['%s user blocked'] = [
@@ -2011,7 +2193,7 @@ $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['User waiting for permanent deletion'] = 'Utilisateur en attente de suppression définitive';
@@ -2086,6 +2268,8 @@ $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.';
@@ -2097,13 +2281,14 @@ $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 l\'étiquette de l\'élément';
-$a->strings['Select a tag to remove: '] = 'Sélectionner une étiquette à supprimer :';
+$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';
@@ -2123,7 +2308,7 @@ $a->strings['%d year old'] = [
2 => '%d ans',
];
$a->strings['Description:'] = 'Description :';
-$a->strings['Forums:'] = 'Forums :';
+$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['Profile unavailable.'] = 'Profil indisponible.';
@@ -2175,7 +2360,7 @@ $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.';
@@ -2185,7 +2370,7 @@ $a->strings['Your registration is pending approval by the site owner.'] = 'Votre
$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é.';
@@ -2246,7 +2431,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".';
@@ -2255,7 +2440,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.'] = ' (Facultatif) Autoriser cet OpenID à se connecter à ce compte.';
@@ -2267,9 +2452,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 :';
@@ -2291,11 +2477,13 @@ $a->strings['Make all posted pictures accessible'] = 'Rendre toutes les images e
$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) :';
@@ -2309,14 +2497,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';
@@ -2353,7 +2541,7 @@ $a->strings['Email access is disabled on this site.'] = 'L\'accès courriel est
$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 timeline. Vous pouvez désactiver ce comportement, ou l\'étendre aux conversations dans lesquelles vos comptes suivis ont aimé une publication.';
+$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"';
@@ -2367,6 +2555,8 @@ $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';
@@ -2411,6 +2601,7 @@ $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['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,18 +2617,23 @@ $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['Timelines for the network page:'] = 'Flux pour la page réseau :';
+$a->strings['Select all the timelines that you want to see on your network page.'] = 'Sélectionnez tous les flux que vous souhaitez voir sur votre page réseau.';
+$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['Default calendar view:'] = 'Vue par défaut du calendrier :';
+$a->strings['%s: %s'] = '%s : %s';
$a->strings['Additional Features'] = 'Fonctions supplémentaires';
$a->strings['Connected Apps'] = 'Applications connectées';
$a->strings['Remove authorization'] = 'Révoquer l\'autorisation';
-$a->strings['Profile Name is required.'] = 'Le nom du profil est requis.';
+$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 :';
@@ -2454,7 +2650,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 :';
@@ -2469,15 +2673,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';
@@ -2502,6 +2697,14 @@ $a->strings['Your user account has been successfully removed. Bye bye!'] = 'Votr
$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à.';
@@ -2596,22 +2799,14 @@ $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['Not Found'] = 'Non trouvé';
-$a->strings['Unfortunately, the requested conversation isn\'t available to you.
-Possible reasons include:
-
- - The top-level post isn\'t visible.
- - The top-level post was deleted.
- - The node has blocked the top-level author or the author of the shared post.
- - You have ignored or blocked the top-level author or the author of the shared post.
-
'] = 'Malheureusement, la discussion demandée ne vous est pas accessible.
-Les raisons possibles sont :
-
- - La publication parente n\'est pas visible
- - La publication parente a été supprimée
- - Le noeud a bloqué l\'auteur/autrice d\'origine ou l\'auteur/autrice de la publication partagée
- - Vous avez ignoré ou bloqué l\'auteur/autrice d\'origine ou l\'auteur/autrice de la publication partagée
-
';
+$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. ';
@@ -2620,6 +2815,7 @@ $a->strings['At any point in time a logged in user can export their account data
$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['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.';
@@ -2661,8 +2857,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';
@@ -2696,7 +2892,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';
@@ -2738,7 +2934,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.';
@@ -2756,7 +2952,7 @@ $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 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';
@@ -2774,6 +2970,8 @@ $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';
@@ -2788,11 +2986,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)';
@@ -2818,7 +3016,7 @@ $a->strings['%d comment'] = [
];
$a->strings['Show more'] = 'Montrer plus';
$a->strings['Show fewer'] = 'Montrer moins';
-$a->strings['Reshared by: %s'] = 'Repartagé par : %s';
+$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';
@@ -2914,7 +3112,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 ba0eb53b4a..893c77202d 100644
--- a/view/lang/gd/messages.po
+++ b/view/lang/gd/messages.po
@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-04-23 21:21+0000\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://app.transifex.com/Friendica/friendica/language/gd/)\n"
@@ -37,26 +37,26 @@ msgstr "Cha d’ fhuair sinn grèim air a nì."
msgid "Empty post discarded."
msgstr "Chaidh post falamh a thilgeil air falbh."
-#: mod/item.php:411 src/Module/Admin/Themes/Details.php:39
+#: 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 "Cha deach an nì a lorg."
-#: mod/item.php:435 mod/message.php:68 mod/message.php:114 mod/notes.php:45
-#: mod/photos.php:152 mod/photos.php:669 src/Model/Event.php:522
+#: 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:52
+#: 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/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/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
@@ -66,9 +66,9 @@ msgstr "Cha deach an nì a lorg."
#: 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:69
-#: src/Module/Settings/Display.php:69 src/Module/Settings/Display.php:151
+#: 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
@@ -214,90 +214,90 @@ 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/message.php:46 mod/message.php:129 src/Content/Nav.php:319
+#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321
msgid "New Message"
msgstr "Teachdaireachd ùr"
-#: 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 "Cha deach faightear a thaghadh."
-#: mod/message.php:88
+#: mod/message.php:87
msgid "Unable to locate contact information."
msgstr "Cha do lorg sinn am fiosrachadh conaltraidh."
-#: 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 "Cha b’ urrainn dhuinn an teachdaireachd a chur."
-#: 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 "Dh’fhàillig cruinneachadh nan teachdaireachdan."
-#: 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 "Tilg air falbh"
-#: mod/message.php:136 src/Content/Nav.php:316 view/theme/frio/theme.php:241
+#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Messages"
msgstr "Teachdaireachdan"
-#: mod/message.php:149
+#: mod/message.php:148
msgid "Conversation not found."
msgstr "Cha deach an còmhradh a lorg."
-#: mod/message.php:154
+#: mod/message.php:153
msgid "Message was not deleted."
msgstr "Cha deach an teachdaireachd a sguabadh às."
-#: mod/message.php:169
+#: mod/message.php:168
msgid "Conversation was not removed."
msgstr "Cha deach an còmhradh a thoirt air falbh."
-#: mod/message.php:182 mod/message.php:287 src/Module/Profile/UnkMail.php:145
+#: 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:191 src/Module/Profile/UnkMail.php:151
+#: mod/message.php:190 src/Module/Profile/UnkMail.php:151
msgid "Send Private Message"
msgstr "Cuir teachdaireachd phearsanta"
-#: mod/message.php:192 mod/message.php:347
+#: mod/message.php:191 mod/message.php:346
msgid "To:"
msgstr "Gu:"
-#: mod/message.php:193 mod/message.php:348
+#: mod/message.php:192 mod/message.php:347
msgid "Subject:"
msgstr "Cuspair:"
-#: mod/message.php:197 mod/message.php:351 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:200 mod/message.php:355 src/Content/Conversation.php:360
+#: 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:201 mod/message.php:356 src/Module/Post/Edit.php:135
+#: 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:202 mod/message.php:358 mod/photos.php:1291
-#: src/Content/Conversation.php:389 src/Content/Conversation.php:733
-#: src/Module/Item/Compose.php:204 src/Module/Post/Edit.php:145
-#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:550
+#: 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:203 mod/message.php:357 mod/photos.php:702
-#: mod/photos.php:819 mod/photos.php:1097 mod/photos.php:1138
-#: mod/photos.php:1194 mod/photos.php:1268
+#: 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:339
+#: 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
@@ -305,59 +305,64 @@ msgstr "Fuirich ort"
#: 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:230 src/Object/Post.php:1063
+#: 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:224
+#: mod/message.php:223
msgid "No messages."
msgstr "Chan eil teachdaireachd sam bith ann."
-#: mod/message.php:280
+#: mod/message.php:279
msgid "Message not available."
msgstr "Chan eil an teachdaireachd ri fhaighinn."
-#: mod/message.php:324
+#: mod/message.php:323
msgid "Delete message"
msgstr "Sguab às an teachdaireachd"
-#: mod/message.php:326 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:341 mod/message.php:454
+#: mod/message.php:340 mod/message.php:453
msgid "Delete conversation"
msgstr "Sguab às an còmhradh"
-#: mod/message.php:343
+#: mod/message.php:342
msgid ""
"No secure communications available. You may be able to "
"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"
@@ -374,14 +379,14 @@ msgstr "Nòtaichean pearsanta"
msgid "Personal notes are visible only by yourself."
msgstr "Chan fhaic ach thu fhèin na nòtaichean pearsanta."
-#: mod/notes.php:57 src/Content/Text/HTML.php:857
+#: 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/photos.php:67 mod/photos.php:132 mod/photos.php:577
-#: src/Model/Event.php:514 src/Model/Profile.php:234
+#: 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
@@ -393,22 +398,22 @@ msgid "User not found."
msgstr "Cha deach an cleachdaiche a lorg."
#: mod/photos.php:106 src/Module/BaseProfile.php:68
-#: src/Module/Profile/Photos.php:399
+#: src/Module/Profile/Photos.php:379
msgid "Photo Albums"
msgstr "Pasgain dhealbhan"
-#: mod/photos.php:107 src/Module/Profile/Photos.php:400
-#: src/Module/Profile/Photos.php:420
+#: 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:109 mod/photos.php:867 src/Module/Profile/Photos.php:402
-#: src/Module/Profile/Photos.php:422
+#: 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:121 src/Module/BaseSettings.php:74
-#: src/Module/Profile/Photos.php:383
+#: mod/photos.php:121 src/Module/BaseSettings.php:72
+#: src/Module/Profile/Photos.php:363
msgid "everybody"
msgstr "a h-uile duine"
@@ -420,72 +425,72 @@ msgstr "Chan eil fiosrachadh conaltraidh ri fhaighinn"
msgid "Album not found."
msgstr "Cha deach an t-albam a lorg."
-#: mod/photos.php:242
+#: mod/photos.php:244
msgid "Album successfully deleted"
msgstr "Chaidh an t-albam a sguabadh às"
-#: mod/photos.php:244
+#: mod/photos.php:246
msgid "Album was empty."
msgstr "Bha an t-albam falamh."
-#: mod/photos.php:276
+#: mod/photos.php:277
msgid "Failed to delete the photo."
msgstr "Cha b’ urrainn dhuinn an dealbh a sguabadh às."
-#: mod/photos.php:544
+#: mod/photos.php:545
msgid "a photo"
msgstr "dealbh"
-#: mod/photos.php:544
+#: 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:581 src/Module/Conversation/Community.php:188
-#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:315
+#: 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:586
+#: mod/photos.php:587
msgid "No photos selected"
msgstr "Cha deach dealbh a thaghadh"
-#: mod/photos.php:718
+#: mod/photos.php:721
#, php-format
msgid "The maximum accepted image size is %s"
-msgstr ""
+msgstr "Cha ghabh sinn ri dealbhan nas motha na %s"
-#: mod/photos.php:725
+#: mod/photos.php:728
msgid "Upload Photos"
msgstr "Luchdaich suas dealbhan"
-#: mod/photos.php:729 mod/photos.php:815
+#: mod/photos.php:732 mod/photos.php:820
msgid "New album name: "
msgstr "Ainm an albaim ùir: "
-#: mod/photos.php:730
+#: mod/photos.php:733
msgid "or select existing album:"
msgstr "no tagh albam a tha ann:"
-#: mod/photos.php:731
+#: 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:733 mod/photos.php:1093 src/Content/Conversation.php:391
-#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:182
+#: 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:796
+#: 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:797 mod/photos.php:820
+#: mod/photos.php:802 mod/photos.php:825
msgid "Delete Album"
msgstr "Sguab às an t-albam"
-#: mod/photos.php:798 mod/photos.php:899 src/Content/Conversation.php:407
+#: 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
@@ -495,256 +500,273 @@ msgstr "Sguab às an t-albam"
msgid "Cancel"
msgstr "Sguir dheth"
-#: mod/photos.php:824
+#: mod/photos.php:829
msgid "Edit Album"
msgstr "Deasaich an t-albam"
-#: mod/photos.php:825
+#: mod/photos.php:830
msgid "Drop Album"
msgstr "Thoir air falbh an t-albam"
-#: mod/photos.php:829
+#: mod/photos.php:834
msgid "Show Newest First"
msgstr "Seall an fheadhainn as ùire an toiseach"
-#: mod/photos.php:831
+#: mod/photos.php:836
msgid "Show Oldest First"
msgstr "Seall an fheadhainn as sine an toiseach"
-#: mod/photos.php:852 src/Module/Profile/Photos.php:370
+#: mod/photos.php:857 src/Module/Profile/Photos.php:350
msgid "View Photo"
msgstr "Seall an dealbh"
-#: mod/photos.php:885
+#: 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:887
+#: mod/photos.php:891
msgid "Photo not available"
msgstr "Chan eil an dealbhan ri fhaighinn"
-#: mod/photos.php:897
+#: 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:898 mod/photos.php:1098
+#: mod/photos.php:902 mod/photos.php:1102
msgid "Delete Photo"
msgstr "Sguab às an dealbh"
-#: mod/photos.php:996
+#: mod/photos.php:1000
msgid "View photo"
msgstr "Seall an dealbh"
-#: mod/photos.php:998
+#: mod/photos.php:1002
msgid "Edit photo"
msgstr "Deasaich an dealbh"
-#: mod/photos.php:999
+#: mod/photos.php:1003
msgid "Delete photo"
msgstr "Sguab às an dealbh"
-#: mod/photos.php:1000
+#: mod/photos.php:1004
msgid "Use as profile photo"
msgstr "Cleachd ’na dhealbh pròifile"
-#: mod/photos.php:1007
+#: mod/photos.php:1011
msgid "Private Photo"
msgstr "Dealbh prìobhaideach"
-#: mod/photos.php:1013
+#: mod/photos.php:1017
msgid "View Full Size"
msgstr "Seall air a làn-mheud"
-#: mod/photos.php:1066
+#: mod/photos.php:1070
msgid "Tags: "
msgstr "Tagaichean: "
-#: mod/photos.php:1069
+#: mod/photos.php:1073
msgid "[Select tags to remove]"
msgstr "[Tagh tagaichean gus an toirt air falbh]"
-#: mod/photos.php:1084
+#: mod/photos.php:1088
msgid "New album name"
msgstr "Ainm albaim ùir"
-#: mod/photos.php:1085
+#: mod/photos.php:1089
msgid "Caption"
msgstr "Fo-thiotal"
-#: mod/photos.php:1086
+#: mod/photos.php:1090
msgid "Add a Tag"
msgstr "Cuir taga ris"
-#: mod/photos.php:1086
+#: 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:1087
+#: mod/photos.php:1091
msgid "Do not rotate"
msgstr "Na cuairtich"
-#: mod/photos.php:1088
+#: mod/photos.php:1092
msgid "Rotate CW (right)"
msgstr "Cuairtich a’ dol deiseil"
-#: mod/photos.php:1089
+#: mod/photos.php:1093
msgid "Rotate CCW (left)"
msgstr "Cuairtich a’ dol tuathail"
-#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1265
-#: src/Module/Contact.php:588 src/Module/Item/Compose.php:188
-#: src/Object/Post.php:1060
+#: 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:1137 mod/photos.php:1193 mod/photos.php:1267
-#: src/Object/Post.php:544 src/Object/Post.php:1062
+#: 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:1139 mod/photos.php:1195 mod/photos.php:1269
-#: src/Content/Conversation.php:404 src/Module/Calendar/Event/Form.php:248
-#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:165
-#: src/Object/Post.php:1074
+#: 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:1140 src/Content/Conversation.php:359
-#: src/Module/Post/Edit.php:130 src/Object/Post.php:1064
+#: 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:1226 src/Content/Conversation.php:649
-#: src/Object/Post.php:257
+#: mod/photos.php:1236 src/Content/Conversation.php:1464
+#: src/Object/Post.php:260
msgid "Select"
msgstr "Tagh"
-#: mod/photos.php:1227 src/Content/Conversation.php:650
+#: 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:1288 src/Object/Post.php:385
+#: mod/photos.php:1298 src/Object/Post.php:408
msgid "Like"
msgstr "’S toigh leam seo"
-#: mod/photos.php:1289 src/Object/Post.php:385
+#: mod/photos.php:1299 src/Object/Post.php:408
msgid "I like this (toggle)"
msgstr "’S toigh leam seo (toglaich)"
-#: mod/photos.php:1290 src/Object/Post.php:386
+#: mod/photos.php:1300 src/Object/Post.php:409
msgid "Dislike"
msgstr "Cha toigh leam seo"
-#: mod/photos.php:1292 src/Object/Post.php:386
+#: 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:1314
+#: mod/photos.php:1324
msgid "Map"
msgstr "Mapa"
-#: src/App.php:470
+#: 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:574
+#: 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:247
+#: src/App/Page.php:248
msgid "Delete this item?"
msgstr "A bheil thu airson an nì seo a sguabadh às?"
-#: src/App/Page.php:248
+#: 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:249
+#: src/App/Page.php:250
msgid ""
"Ignore this author? You won't be able to see their posts and their "
"notifications."
-msgstr ""
+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 "Like not successful"
-msgstr ""
+msgid "Collapse this author's posts?"
+msgstr "A bheil thu airson postaichean an ùghdair seo a cho-theannachadh?"
#: src/App/Page.php:252
-msgid "Dislike not successful"
+msgid "Ignore this author's server?"
msgstr ""
-#: src/App/Page.php:253
-msgid "Sharing not successful"
-msgstr ""
-
-#: src/App/Page.php:254
-msgid "Attendance unsuccessful"
+#: 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 "Backend error"
-msgstr ""
+msgid "Like not successful"
+msgstr "Cha deach leinn a chur ris na h-annsachdan"
#: src/App/Page.php:256
-msgid "Network error"
-msgstr ""
+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 "Drop files here to upload"
-msgstr ""
+msgid "Backend error"
+msgstr "Mearachd a’ backend"
#: src/App/Page.php:260
-msgid "Your browser does not support drag and drop file uploads."
-msgstr ""
+msgid "Network error"
+msgstr "Mearachd lìonraidh"
-#: src/App/Page.php:261
+#: 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 ""
-
-#: src/App/Page.php:262
-msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
-msgstr ""
-
-#: src/App/Page.php:263
-msgid "You can't upload files of this type."
-msgstr ""
-
-#: src/App/Page.php:264
-msgid "Server responded with {{statusCode}} code."
-msgstr ""
-
-#: src/App/Page.php:265
-msgid "Cancel upload"
-msgstr ""
+msgstr "Cleachd an t-seann-dòigh airson faidhlichean a luchdadh suas leis an fhoirm gu h-ìosal."
#: src/App/Page.php:266
-msgid "Upload canceled."
-msgstr ""
+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 "Are you sure you want to cancel this upload?"
-msgstr ""
+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 "Remove file"
-msgstr ""
+msgid "Server responded with {{statusCode}} code."
+msgstr "Dh’fhreagair am frithealaiche le còd {{statusCode}}."
#: src/App/Page.php:269
-msgid "You can't upload any more files."
-msgstr ""
+msgid "Cancel upload"
+msgstr "Sguir dhen luchdadh suas"
-#: src/App/Page.php:347
+#: 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 ""
+msgstr "toglaich mobile"
#: src/App/Router.php:309
#, php-format
@@ -759,33 +781,33 @@ msgstr "Cha deach an duilleag a lorg."
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:400
+#: 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:427
+#: src/BaseModule.php:428
msgid "All contacts"
msgstr "A h-uile neach-aithne"
-#: src/BaseModule.php:432 src/Content/Widget.php:239 src/Core/ACL.php:195
-#: src/Module/Contact.php:407 src/Module/PermissionTooltip.php:127
-#: src/Module/PermissionTooltip.php:149
+#: 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:437 src/Content/Widget.php:240
-#: src/Module/Contact.php:408
+#: src/BaseModule.php:438 src/Content/Widget.php:240
+#: src/Module/Contact.php:418
msgid "Following"
msgstr "A’ leantainn"
-#: src/BaseModule.php:442 src/Content/Widget.php:241
-#: src/Module/Contact.php:409
+#: src/BaseModule.php:443 src/Content/Widget.php:241
+#: src/Module/Contact.php:421
msgid "Mutual friends"
msgstr "Caraidean an cumantas"
-#: src/BaseModule.php:450
+#: src/BaseModule.php:451
msgid "Common"
msgstr "Cumanta"
@@ -824,7 +846,7 @@ msgstr "Chaidh an neach-aithne a bhacadh on nòd"
#: src/Console/MergeContacts.php:75
#, php-format
msgid "%d %s, %d duplicates."
-msgstr ""
+msgstr "%d %s, dùblachaidhean: %d."
#: src/Console/MergeContacts.php:78
#, php-format
@@ -834,7 +856,7 @@ msgstr "Tha uri-id falamh dhan neach-aithne %s."
#: 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:102
#, php-format
@@ -935,7 +957,7 @@ 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:663
+#: 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
@@ -1108,393 +1130,526 @@ msgstr "pnut"
#: src/Content/ContactSelector.php:143
msgid "Tumblr"
-msgstr ""
+msgstr "Tumblr"
-#: src/Content/ContactSelector.php:179
+#: 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:218
+#: src/Content/Conversation.php:226
msgid "and"
msgstr "agus"
-#: src/Content/Conversation.php:221
+#: src/Content/Conversation.php:229
#, php-format
msgid "and %d other people"
msgstr "agus %d eile"
-#: src/Content/Conversation.php:227
+#: 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:229
-#, 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:231
-#, php-format
-msgid "%2$s attends."
-msgid_plural "%2$s attend."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: src/Content/Conversation.php:233
-#, php-format
-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:235
-#, php-format
-msgid "%2$s attends maybe."
-msgid_plural "%2$s attend maybe."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+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$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:241
+#, php-format
+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$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:245
+#, php-format
msgid "%2$s reshared this."
msgid_plural "%2$s reshared this."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+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:266
+#: src/Content/Conversation.php:274
#, php-format
msgid " likes this"
msgid_plural " like this"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+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:269
+#: 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] ""
+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:272
+#: src/Content/Conversation.php:280
#, php-format
msgid " attends"
msgid_plural " attend"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+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:275
+#: src/Content/Conversation.php:283
#, php-format
msgid " doesn't attend"
msgid_plural " don't attend"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+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:278
+#: src/Content/Conversation.php:286
#, php-format
msgid " attends maybe"
msgid_plural " attend maybe"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+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:281
+#: src/Content/Conversation.php:289
#, php-format
msgid " reshared this"
msgid_plural " reshared this"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] "Cho-roinn seo"
+msgstr[1] "Cho-roinn seo"
+msgstr[2] "Cho-roinn seo"
+msgstr[3] "Cho-roinn seo"
-#: src/Content/Conversation.php:328
+#: src/Content/Conversation.php:336
msgid "Visible to everybody"
msgstr "Chì a h-uile duine e"
-#: src/Content/Conversation.php:329 src/Module/Item/Compose.php:198
-#: src/Object/Post.php:1073
+#: 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:330
+#: src/Content/Conversation.php:338
msgid "Tag term:"
msgstr "Teirm tagaidh:"
-#: src/Content/Conversation.php:331 src/Module/Filer/SaveTag.php:73
+#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73
msgid "Save to Folder:"
msgstr "Sàbhail gu pasgan:"
-#: src/Content/Conversation.php:332
+#: src/Content/Conversation.php:340
msgid "Where are you right now?"
msgstr "Càit a bheil thu an-dràsta?"
-#: src/Content/Conversation.php:333
+#: src/Content/Conversation.php:341
msgid "Delete item(s)?"
msgstr "An sguab thu seo às?"
-#: src/Content/Conversation.php:345 src/Module/Item/Compose.php:175
+#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175
msgid "Created at"
msgstr "Air a chruthachadh"
-#: src/Content/Conversation.php:355
+#: src/Content/Conversation.php:363
msgid "New Post"
msgstr "Post ùr"
-#: src/Content/Conversation.php:358
+#: src/Content/Conversation.php:366
msgid "Share"
msgstr "Co-roinn"
-#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:132
+#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132
msgid "upload photo"
msgstr "luchdaich suas dealbh"
-#: src/Content/Conversation.php:362 src/Module/Post/Edit.php:133
+#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133
msgid "Attach file"
msgstr "Ceangail faidhle ris"
-#: src/Content/Conversation.php:363 src/Module/Post/Edit.php:134
+#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134
msgid "attach file"
msgstr "ceangail faidhle ris"
-#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190
-#: src/Module/Post/Edit.php:171 src/Object/Post.php:1065
+#: 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:365 src/Module/Item/Compose.php:191
-#: src/Module/Post/Edit.php:172 src/Object/Post.php:1066
+#: 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:366 src/Module/Item/Compose.php:192
-#: src/Module/Post/Edit.php:173 src/Object/Post.php:1067
+#: 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:367 src/Module/Item/Compose.php:193
-#: src/Module/Post/Edit.php:174 src/Object/Post.php:1068
+#: 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:368 src/Module/Item/Compose.php:194
-#: src/Module/Post/Edit.php:175 src/Object/Post.php:1069
+#: 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:369 src/Module/Item/Compose.php:195
-#: src/Object/Post.php:1070
+#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197
+#: src/Object/Post.php:1104
msgid "Image"
msgstr "Dealbh"
-#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:196
-#: src/Module/Post/Edit.php:176 src/Object/Post.php:1071
+#: 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:371 src/Module/Item/Compose.php:197
-#: src/Module/Post/Edit.php:177 src/Object/Post.php:1072
+#: 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:372
+#: src/Content/Conversation.php:382
msgid "Video"
msgstr "Video"
-#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:200
+#: 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:374 src/Module/Post/Edit.php:142
+#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142
msgid "set location"
msgstr "suidhich d’ ionad"
-#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:143
+#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143
msgid "Clear browser location"
msgstr "Falamhaich ionad a’ bhrabhsair"
-#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:144
+#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144
msgid "clear location"
msgstr "falamhaich an ionad"
-#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:205
+#: 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:380 src/Module/Item/Compose.php:206
+#: 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:385 src/Module/Item/Compose.php:222
+#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224
msgid "Scheduled at"
msgstr "Air an sgeideal"
-#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:146
+#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146
msgid "Permission settings"
msgstr "Roghainnean cead"
-#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:155
+#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155
msgid "Public post"
msgstr "Post poblach"
-#: src/Content/Conversation.php:414 src/Content/Widget/VCard.php:113
-#: src/Model/Profile.php:469 src/Module/Admin/Logs/View.php:92
-#: src/Module/Post/Edit.php:180
+#: 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:415 src/Module/Post/Edit.php:181
+#: 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:417 src/Module/Post/Edit.php:184
+#: 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:677 src/Object/Post.php:244
-msgid "Pinned item"
-msgstr "Nì prìnichte"
-
-#: src/Content/Conversation.php:693 src/Object/Post.php:496
-#: src/Object/Post.php:497
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Seall a’ phròifil aig %s @ %s"
-
-#: src/Content/Conversation.php:706 src/Object/Post.php:484
-msgid "Categories:"
-msgstr "Roinnean-seòrsa:"
-
-#: src/Content/Conversation.php:707 src/Object/Post.php:485
-msgid "Filed under:"
-msgstr "Air a chlàradh fo:"
-
-#: src/Content/Conversation.php:715 src/Object/Post.php:510
-#, php-format
-msgid "%s from %s"
-msgstr "%s o %s"
-
-#: src/Content/Conversation.php:731
-msgid "View in context"
-msgstr "Seall le co-theacsa"
-
-#: src/Content/Conversation.php:796
+#: src/Content/Conversation.php:595
msgid "remove"
msgstr "thoir air falbh"
-#: src/Content/Conversation.php:800
+#: src/Content/Conversation.php:599
msgid "Delete Selected Items"
msgstr "Sguab às na nithean a thagh thu"
-#: src/Content/Conversation.php:865 src/Content/Conversation.php:868
-#: src/Content/Conversation.php:871 src/Content/Conversation.php:874
-#: src/Content/Conversation.php:877
+#: 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:880
+#: src/Content/Conversation.php:769
#, php-format
msgid "You are following %s."
msgstr "Tha thu a’ leantainn air %s."
-#: src/Content/Conversation.php:883
+#: 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:896
+#: src/Content/Conversation.php:796
#, php-format
msgid "%s reshared this."
msgstr "Co-roinn %s seo."
-#: src/Content/Conversation.php:898
+#: src/Content/Conversation.php:798
msgid "Reshared"
msgstr "’Ga cho-roinneadh"
-#: src/Content/Conversation.php:898
+#: src/Content/Conversation.php:798
#, php-format
msgid "Reshared by %s <%s>"
msgstr "’Ga cho-roinneadh le %s <%s>"
-#: src/Content/Conversation.php:901
+#: 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:904
+#: src/Content/Conversation.php:804
msgid "Stored for general reasons"
msgstr "Chaidh a stòradh air adhbharan coitcheann"
-#: src/Content/Conversation.php:907
+#: src/Content/Conversation.php:807
msgid "Global post"
msgstr "Post co-naisgte"
-#: src/Content/Conversation.php:910
+#: src/Content/Conversation.php:810
msgid "Sent via an relay server"
msgstr "Chaidh a chur slighe frithealaiche ath-sheachadain"
-#: src/Content/Conversation.php:910
+#: 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:913
+#: src/Content/Conversation.php:813
msgid "Fetched"
msgstr "Air fhaighinn"
-#: src/Content/Conversation.php:913
+#: src/Content/Conversation.php:813
#, php-format
msgid "Fetched because of %s <%s>"
msgstr "Air fhaighinn ri linn %s <%s>"
-#: src/Content/Conversation.php:916
+#: 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:919
+#: src/Content/Conversation.php:819
msgid "Local delivery"
msgstr "Lìbhrigeadh ionadail"
-#: src/Content/Conversation.php:922
+#: 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:925
+#: src/Content/Conversation.php:825
msgid "Distributed"
msgstr "Sgaoilte"
-#: src/Content/Conversation.php:928
+#: 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"
@@ -1524,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"
@@ -1570,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"
@@ -1595,421 +1750,431 @@ msgstr "Seall ceann-là na ballrachd sa phròifil"
#: src/Content/Feature.php:126
msgid "Advanced Calendar Settings"
-msgstr ""
+msgstr "Roghainnean adhartach a’ mhìosachain"
#: src/Content/Feature.php:127
msgid "Allow anonymous access to your calendar"
-msgstr ""
+msgstr "Ceadaich inntrigeadh gun ainm dhan mhìosachan agad"
#: 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 ""
+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/ForumManager.php:151 src/Content/Nav.php:276
-#: src/Content/Text/HTML.php:878 src/Content/Widget.php:528
-msgid "Forums"
-msgstr "Fòraman"
+#: 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/ForumManager.php:153
-msgid "External link to forum"
-msgstr "Ceangal cèin dhan fhòram"
+#: src/Content/GroupManager.php:154
+msgid "External link to group"
+msgstr "Ceangal cèin dhan bhuidheann"
-#: src/Content/ForumManager.php:156 src/Content/Widget.php:507
+#: 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:409
-#: src/Content/Widget.php:508
+#: 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:326 src/Model/Item.php:2922
+#: src/Content/GroupManager.php:160
+msgid "Create new group"
+msgstr "Cruthaich buidheann ùr"
+
+#: src/Content/Item.php:331 src/Model/Item.php:3003
msgid "event"
msgstr "tachartas"
-#: src/Content/Item.php:329 src/Content/Item.php:339
+#: src/Content/Item.php:334 src/Content/Item.php:344
msgid "status"
msgstr "staid"
-#: src/Content/Item.php:335 src/Model/Item.php:2924
+#: 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:349 src/Module/Post/Tag/Add.php:141
+#: 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:419 view/theme/frio/theme.php:262
+#: 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:420 src/Model/Contact.php:1204
+#: src/Content/Item.php:429 src/Model/Contact.php:1227
msgid "View Status"
msgstr "Seall an staid"
-#: src/Content/Item.php:421 src/Content/Item.php:441
-#: src/Model/Contact.php:1148 src/Model/Contact.php:1196
-#: src/Model/Contact.php:1205 src/Module/Directory.php:157
-#: src/Module/Settings/Profile/Index.php:233
+#: 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:422 src/Model/Contact.php:1206
+#: src/Content/Item.php:431 src/Model/Contact.php:1229
msgid "View Photos"
msgstr "Seall na dealbhan"
-#: src/Content/Item.php:423 src/Model/Contact.php:1197
-#: src/Model/Contact.php:1207
+#: 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:424 src/Model/Contact.php:1198
-#: src/Model/Contact.php:1208
+#: 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:425 src/Model/Contact.php:1209
+#: src/Content/Item.php:434 src/Model/Contact.php:1232
msgid "Send PM"
msgstr "Cuir TPh"
-#: src/Content/Item.php:426 src/Module/Contact.php:439
-#: src/Module/Contact/Profile.php:477
+#: 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:427 src/Module/Contact.php:440
-#: src/Module/Contact/Profile.php:485
+#: 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:428 src/Module/Contact.php:441
-#: src/Module/Contact/Profile.php:493
+#: 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:432 src/Object/Post.php:465
+#: src/Content/Item.php:442 src/Object/Post.php:490
msgid "Languages"
msgstr "Cànanan"
-#: src/Content/Item.php:438 src/Content/Widget.php:80
-#: src/Model/Contact.php:1199 src/Model/Contact.php:1210
-#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:196
+#: 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/Item.php:863
+#: src/Content/Item.php:882
msgid "Unable to fetch user."
-msgstr ""
+msgstr "Chan urrainn dhuinn an cleachdaiche fhaighinn dhut."
-#: src/Content/Nav.php:120
+#: src/Content/Nav.php:121
msgid "Nothing new here"
msgstr "Chan eil dad ùr an-seo"
-#: src/Content/Nav.php:124 src/Module/Special/HTTPException.php:77
+#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77
msgid "Go back"
msgstr "Air ais"
-#: src/Content/Nav.php:125
+#: src/Content/Nav.php:126
msgid "Clear notifications"
msgstr "Falamhaich na brathan"
-#: src/Content/Nav.php:126 src/Content/Text/HTML.php:865
-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:220 src/Module/Security/Login.php:157
+#: src/Content/Nav.php:222 src/Module/Security/Login.php:157
msgid "Logout"
msgstr "Clàraich a-mach"
-#: src/Content/Nav.php:220
+#: src/Content/Nav.php:222
msgid "End this session"
msgstr "Cuir crìoch air an t-seisean seo"
-#: src/Content/Nav.php:222 src/Module/Bookmarklet.php:44
+#: 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:222
+#: src/Content/Nav.php:224
msgid "Sign in"
msgstr "Clàraich a-steach"
-#: src/Content/Nav.php:227 src/Module/BaseProfile.php:57
-#: src/Module/Contact.php:483
+#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57
+#: src/Module/Contact.php:512
msgid "Conversations"
-msgstr ""
+msgstr "Còmhraidhean"
-#: src/Content/Nav.php:227
+#: src/Content/Nav.php:229
msgid "Conversations you started"
-msgstr ""
+msgstr "Na còmhraidhean a thòisich thusa"
-#: src/Content/Nav.php:228 src/Module/BaseProfile.php:49
-#: src/Module/BaseSettings.php:100 src/Module/Contact.php:475
-#: src/Module/Contact/Profile.php:392 src/Module/Profile/Profile.php:268
+#: 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:228 view/theme/frio/theme.php:230
+#: 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:229 src/Module/BaseProfile.php:65
+#: 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:229 view/theme/frio/theme.php:234
+#: src/Content/Nav.php:231 view/theme/frio/theme.php:234
msgid "Your photos"
msgstr "Na dealbhan agad"
-#: src/Content/Nav.php:230 src/Module/BaseProfile.php:73
-#: src/Module/BaseProfile.php:76 src/Module/Contact.php:499
+#: 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:230 view/theme/frio/theme.php:235
+#: 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:231 src/Content/Nav.php:291
+#: 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:252 view/theme/frio/theme.php:236
+#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236
#: view/theme/frio/theme.php:240
msgid "Calendar"
-msgstr ""
+msgstr "Mìosachan"
-#: src/Content/Nav.php:231 view/theme/frio/theme.php:236
+#: src/Content/Nav.php:233 view/theme/frio/theme.php:236
msgid "Your calendar"
-msgstr ""
+msgstr "Am mìosachan agad"
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Personal notes"
msgstr "Nòtaichean pearsanta"
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Your personal notes"
msgstr "Na nòtaichean pearsanta agad"
-#: src/Content/Nav.php:249 src/Content/Nav.php:306
+#: src/Content/Nav.php:251 src/Content/Nav.php:308
msgid "Home"
msgstr "Dachaigh"
-#: src/Content/Nav.php:249 src/Module/Settings/OAuth.php:73
+#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73
msgid "Home Page"
msgstr "Duilleag-dhachaigh"
-#: src/Content/Nav.php:253 src/Module/Register.php:168
+#: 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:253
+#: src/Content/Nav.php:255
msgid "Create an account"
msgstr "Cruthaich cunntas"
-#: src/Content/Nav.php:259 src/Module/Help.php:67
+#: 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:241
+#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240
msgid "Help"
msgstr "Cobhair"
-#: src/Content/Nav.php:259
+#: src/Content/Nav.php:261
msgid "Help and documentation"
msgstr "Cobhair is docamaideadh"
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:265
msgid "Apps"
msgstr "Aplacaidean"
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:265
msgid "Addon applications, utilities, games"
msgstr "Tuilleadain aplacaide, goireis is geama"
-#: src/Content/Nav.php:267 src/Content/Text/HTML.php:863
+#: 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:267
+#: src/Content/Nav.php:269
msgid "Search site content"
msgstr "Lorg susbaint san làrach"
-#: src/Content/Nav.php:270 src/Content/Text/HTML.php:872
+#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874
msgid "Full Text"
msgstr "Teacsa slàn"
-#: src/Content/Nav.php:271 src/Content/Text/HTML.php:873
+#: 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:272 src/Content/Nav.php:327
-#: src/Content/Text/HTML.php:874 src/Module/BaseProfile.php:127
-#: src/Module/BaseProfile.php:130 src/Module/Contact.php:410
-#: src/Module/Contact.php:506 view/theme/frio/theme.php:243
+#: 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:287
+#: src/Content/Nav.php:289
msgid "Community"
msgstr "Coimhearsnachd"
-#: src/Content/Nav.php:287
+#: 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:294
+#: src/Content/Nav.php:296
msgid "Directory"
msgstr "Eòlaire"
-#: src/Content/Nav.php:294
+#: src/Content/Nav.php:296
msgid "People directory"
msgstr "Eòlaire nan daoine"
-#: src/Content/Nav.php:296 src/Module/BaseAdmin.php:85
+#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85
#: src/Module/BaseModeration.php:108
msgid "Information"
msgstr "Fiosrachadh"
-#: src/Content/Nav.php:296
+#: src/Content/Nav.php:298
msgid "Information about this friendica instance"
msgstr "Fiosrachadh mun ionstans Friendica seo"
-#: src/Content/Nav.php:299 src/Module/Admin/Tos.php:78
+#: 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:100
+#: src/Module/Tos.php:101
msgid "Terms of Service"
msgstr "Teirmichean na seirbheise"
-#: src/Content/Nav.php:299
+#: src/Content/Nav.php:301
msgid "Terms of Service of this Friendica instance"
msgstr "Teirmichean seirbheise an ionstans Friendica seo"
-#: src/Content/Nav.php:304 view/theme/frio/theme.php:239
+#: src/Content/Nav.php:306 view/theme/frio/theme.php:239
msgid "Network"
msgstr "Lìonra"
-#: src/Content/Nav.php:304 view/theme/frio/theme.php:239
+#: 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:306 view/theme/frio/theme.php:229
+#: 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:310
+#: src/Content/Nav.php:312
msgid "Introductions"
-msgstr ""
+msgstr "Cuir an aithne"
-#: src/Content/Nav.php:310
+#: src/Content/Nav.php:312
msgid "Friend Requests"
msgstr "Iarrtasan càirdeis"
-#: src/Content/Nav.php:311 src/Module/BaseNotifications.php:149
+#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149
#: src/Module/Notifications/Introductions.php:75
msgid "Notifications"
msgstr "Brathan"
-#: src/Content/Nav.php:312
+#: src/Content/Nav.php:314
msgid "See all notifications"
msgstr "Seall gach brath"
-#: src/Content/Nav.php:313 src/Module/Settings/Connectors.php:244
+#: 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:313
+#: 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:316 view/theme/frio/theme.php:241
+#: src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Private mail"
msgstr "Post prìobhaideach"
-#: src/Content/Nav.php:317
+#: src/Content/Nav.php:319
msgid "Inbox"
msgstr "Am bogsa a-steach"
-#: src/Content/Nav.php:318
+#: src/Content/Nav.php:320
msgid "Outbox"
msgstr "Am bogsa a-mach"
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Accounts"
msgstr "Cunntasan"
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Manage other pages"
msgstr "Stiùir duilleagan eile"
-#: 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/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:325 view/theme/frio/theme.php:242
+#: src/Content/Nav.php:327 view/theme/frio/theme.php:242
msgid "Account settings"
msgstr "Roghainnean a’ chunntais"
-#: src/Content/Nav.php:327 view/theme/frio/theme.php:243
+#: 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:332 src/Module/BaseAdmin.php:119
+#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119
msgid "Admin"
msgstr "Rianachd"
-#: src/Content/Nav.php:332
+#: src/Content/Nav.php:334
msgid "Site setup and configuration"
msgstr "Suidheachadh ’s rèiteachadh na làraich"
-#: src/Content/Nav.php:333 src/Module/BaseModeration.php:127
+#: 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/Summary.php:76
+#: 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 ""
+msgstr "Maorsainneachd"
-#: src/Content/Nav.php:333
+#: src/Content/Nav.php:335
msgid "Content and user moderation"
-msgstr ""
+msgstr "Susbaint is maorsainneachd chleachdaichean"
-#: src/Content/Nav.php:336
+#: src/Content/Nav.php:338
msgid "Navigation"
msgstr "Seòladaireachd"
-#: src/Content/Nav.php:336
+#: 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"
@@ -2029,51 +2194,51 @@ msgstr "air adhart"
msgid "last"
msgstr "dhan deireadh"
-#: src/Content/Text/BBCode.php:713 src/Content/Text/BBCode.php:1599
-#: src/Content/Text/BBCode.php:1600
+#: 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:931
+#: src/Content/Text/BBCode.php:914
#, php-format
msgid "%2$s %3$s"
msgstr "%2$s %3$s"
-#: src/Content/Text/BBCode.php:956 src/Model/Item.php:3607
-#: src/Model/Item.php:3613 src/Model/Item.php:3614
+#: 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:1506 src/Content/Text/HTML.php:902
+#: 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:1539
+#: src/Content/Text/BBCode.php:1576
msgid "$1 wrote:"
msgstr "Sgrìobh $1:"
-#: src/Content/Text/BBCode.php:1604 src/Content/Text/BBCode.php:1605
+#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642
msgid "Encrypted content"
msgstr "Susbaint chrioptaichte"
-#: src/Content/Text/BBCode.php:1869
+#: src/Content/Text/BBCode.php:1901
msgid "Invalid source protocol"
msgstr "Pròtacal tùis mì-dhligheach"
-#: src/Content/Text/BBCode.php:1888
+#: src/Content/Text/BBCode.php:1920
msgid "Invalid link protocol"
msgstr "Pròtacal ceangail mì-dhligheach"
-#: src/Content/Text/HTML.php:780
+#: src/Content/Text/HTML.php:782
msgid "Loading more entries..."
msgstr "A’ luchdadh barrachd nithean…"
-#: src/Content/Text/HTML.php:781
+#: src/Content/Text/HTML.php:783
msgid "The end"
-msgstr ""
+msgstr "A’ chrìoch"
-#: src/Content/Text/HTML.php:857 src/Content/Widget/VCard.php:109
-#: src/Model/Profile.php:463 src/Module/Contact/Profile.php:437
+#: 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"
@@ -2102,88 +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:194
+#: 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:195
+#: 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:197
+#: 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:432
-#: src/Module/Directory.php:96 view/theme/vier/theme.php:198
+#: 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:83 src/Module/Contact/Suggestions.php:73
-#: view/theme/vier/theme.php:199
+#: view/theme/vier/theme.php:198
msgid "Friend Suggestions"
msgstr "Molaidhean charaidean"
-#: src/Content/Widget.php:84 view/theme/vier/theme.php:200
+#: 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:201
+#: 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:202
+#: 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:88
-#: view/theme/vier/theme.php:203
+#: view/theme/vier/theme.php:202
msgid "Global Directory"
msgstr "Eòlaire co-naisgte"
-#: src/Content/Widget.php:89 view/theme/vier/theme.php:205
+#: src/Content/Widget.php:89 view/theme/vier/theme.php:204
msgid "Local Directory"
msgstr "Eòlaire ionadail"
-#: src/Content/Widget.php:215 src/Model/Group.php:587
-#: src/Module/Contact.php:394 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:217
msgid "Everyone"
msgstr "A h-uile duine"
-#: src/Content/Widget.php:246
+#: 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:248 src/Module/Contact.php:338
-#: src/Module/Group.php:291
+#: 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:287
+#: src/Content/Widget.php:288
msgid "Protocols"
msgstr "Pròtacalan"
-#: src/Content/Widget.php:289
+#: src/Content/Widget.php:290
msgid "All Protocols"
msgstr "Gach pròtacal"
-#: src/Content/Widget.php:317
+#: src/Content/Widget.php:318
msgid "Saved Folders"
msgstr "Pasganan air an sàbhaladh"
-#: src/Content/Widget.php:319 src/Content/Widget.php:350
+#: src/Content/Widget.php:320 src/Content/Widget.php:351
msgid "Everything"
msgstr "A h-uile càil"
-#: src/Content/Widget.php:348
+#: src/Content/Widget.php:349
msgid "Categories"
msgstr "Roinnean-seòrsa"
-#: src/Content/Widget.php:405
+#: src/Content/Widget.php:406
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
@@ -2192,30 +2361,38 @@ 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:501
+#: src/Content/Widget.php:506
msgid "Archives"
msgstr "Tasg-lannan"
-#: src/Content/Widget.php:525
+#: 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:526
+#: src/Content/Widget.php:535
msgid "Organisations"
msgstr "Buidhnean"
-#: src/Content/Widget.php:527 src/Model/Contact.php:1656
+#: src/Content/Widget.php:536 src/Model/Contact.php:1698
msgid "News"
msgstr "Naidheachdan"
-#: src/Content/Widget.php:531 src/Module/Settings/Account.php:453
+#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454
msgid "Account Types"
msgstr "Seòrsaichean chunntasan"
-#: src/Content/Widget.php:532 src/Module/Moderation/BaseUsers.php:69
+#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69
msgid "All"
msgstr "Na h-uile"
+#: 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"
@@ -2266,32 +2443,32 @@ msgstr[3] "Tagaichean a’ treandadh (san %d uair a thìde seo chaidh)"
msgid "More Trending Tags"
msgstr "Barrachd thagaichean a’ treandadh"
-#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:378
-#: src/Module/Contact/Profile.php:381 src/Module/Profile/Profile.php:199
+#: 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:379
-#: src/Module/Contact/Profile.php:383 src/Module/Profile/Profile.php:203
+#: 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: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/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:107 src/Model/Profile.php:476
+#: 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/Contact.php:1200
-#: src/Model/Contact.php:1211 src/Model/Profile.php:465
-#: src/Module/Contact/Profile.php:429
+#: 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"
@@ -2332,9 +2509,9 @@ msgstr "Thèid an t-susbaint seo a shealltainn dhan fheadhainn san dàrna bhogsa
#: src/Core/ACL.php:324
msgid ""
-"Start typing the name of a contact or a group to show a filtered list. You "
-"can also mention the special groups \"Followers\" and \"Mutuals\"."
-msgstr ""
+"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:"
@@ -2675,161 +2852,172 @@ msgstr "Tha an stòr-dàta ’ga chleachdadh mu thràth."
msgid "Could not connect to database."
msgstr "Cha b’ urrainn dhuinn ceangal ris an stòr-dàta."
-#: src/Core/L10n.php:408 src/Model/Event.php:432
-#: src/Module/Settings/Display.php:222
+#: src/Core/L10n.php:476 src/Model/Event.php:430
+#: src/Module/Settings/Display.php:235
msgid "Monday"
msgstr "DiLuain"
-#: src/Core/L10n.php:408 src/Model/Event.php:433
-#: src/Module/Settings/Display.php:223
+#: 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:408 src/Model/Event.php:434
-#: src/Module/Settings/Display.php:224
+#: src/Core/L10n.php:476 src/Model/Event.php:432
+#: src/Module/Settings/Display.php:237
msgid "Wednesday"
msgstr "DiCiadain"
-#: src/Core/L10n.php:408 src/Model/Event.php:435
-#: src/Module/Settings/Display.php:225
+#: src/Core/L10n.php:476 src/Model/Event.php:433
+#: src/Module/Settings/Display.php:238
msgid "Thursday"
msgstr "DiarDaoin"
-#: src/Core/L10n.php:408 src/Model/Event.php:436
-#: src/Module/Settings/Display.php:226
+#: src/Core/L10n.php:476 src/Model/Event.php:434
+#: src/Module/Settings/Display.php:239
msgid "Friday"
msgstr "DihAoine"
-#: src/Core/L10n.php:408 src/Model/Event.php:437
-#: src/Module/Settings/Display.php:227
+#: src/Core/L10n.php:476 src/Model/Event.php:435
+#: src/Module/Settings/Display.php:240
msgid "Saturday"
msgstr "DiSathairne"
-#: src/Core/L10n.php:408 src/Model/Event.php:431
-#: src/Module/Settings/Display.php:221
+#: 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:412 src/Model/Event.php:452
+#: src/Core/L10n.php:480 src/Model/Event.php:450
msgid "January"
msgstr "Am Faoilleach"
-#: src/Core/L10n.php:412 src/Model/Event.php:453
+#: src/Core/L10n.php:480 src/Model/Event.php:451
msgid "February"
msgstr "An Gearran"
-#: src/Core/L10n.php:412 src/Model/Event.php:454
+#: src/Core/L10n.php:480 src/Model/Event.php:452
msgid "March"
msgstr "Am Màrt"
-#: src/Core/L10n.php:412 src/Model/Event.php:455
+#: src/Core/L10n.php:480 src/Model/Event.php:453
msgid "April"
msgstr "An Giblean"
-#: src/Core/L10n.php:412 src/Core/L10n.php:431 src/Model/Event.php:443
+#: 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:412 src/Model/Event.php:456
+#: src/Core/L10n.php:480 src/Model/Event.php:454
msgid "June"
msgstr "An t-Ògmhios"
-#: src/Core/L10n.php:412 src/Model/Event.php:457
+#: src/Core/L10n.php:480 src/Model/Event.php:455
msgid "July"
msgstr "An t-Iuchar"
-#: src/Core/L10n.php:412 src/Model/Event.php:458
+#: src/Core/L10n.php:480 src/Model/Event.php:456
msgid "August"
msgstr "An Lùnastal"
-#: src/Core/L10n.php:412 src/Model/Event.php:459
+#: src/Core/L10n.php:480 src/Model/Event.php:457
msgid "September"
msgstr "An t-Sultain"
-#: src/Core/L10n.php:412 src/Model/Event.php:460
+#: src/Core/L10n.php:480 src/Model/Event.php:458
msgid "October"
msgstr "An Dàmhair"
-#: src/Core/L10n.php:412 src/Model/Event.php:461
+#: src/Core/L10n.php:480 src/Model/Event.php:459
msgid "November"
msgstr "An t-Samhain"
-#: src/Core/L10n.php:412 src/Model/Event.php:462
+#: src/Core/L10n.php:480 src/Model/Event.php:460
msgid "December"
msgstr "An Dùbhlachd"
-#: src/Core/L10n.php:427 src/Model/Event.php:424
+#: src/Core/L10n.php:495 src/Model/Event.php:422
msgid "Mon"
msgstr "DiL"
-#: src/Core/L10n.php:427 src/Model/Event.php:425
+#: src/Core/L10n.php:495 src/Model/Event.php:423
msgid "Tue"
msgstr "DiM"
-#: src/Core/L10n.php:427 src/Model/Event.php:426
+#: src/Core/L10n.php:495 src/Model/Event.php:424
msgid "Wed"
msgstr "DiC"
-#: src/Core/L10n.php:427 src/Model/Event.php:427
+#: src/Core/L10n.php:495 src/Model/Event.php:425
msgid "Thu"
msgstr "Dia"
-#: src/Core/L10n.php:427 src/Model/Event.php:428
+#: src/Core/L10n.php:495 src/Model/Event.php:426
msgid "Fri"
msgstr "Dih"
-#: src/Core/L10n.php:427 src/Model/Event.php:429
+#: src/Core/L10n.php:495 src/Model/Event.php:427
msgid "Sat"
msgstr "DiS"
-#: src/Core/L10n.php:427 src/Model/Event.php:423
+#: src/Core/L10n.php:495 src/Model/Event.php:421
msgid "Sun"
msgstr "DiD"
-#: src/Core/L10n.php:431 src/Model/Event.php:439
+#: src/Core/L10n.php:499 src/Model/Event.php:437
msgid "Jan"
msgstr "Faoi"
-#: src/Core/L10n.php:431 src/Model/Event.php:440
+#: src/Core/L10n.php:499 src/Model/Event.php:438
msgid "Feb"
msgstr "Gearr"
-#: src/Core/L10n.php:431 src/Model/Event.php:441
+#: src/Core/L10n.php:499 src/Model/Event.php:439
msgid "Mar"
msgstr "Màrt"
-#: src/Core/L10n.php:431 src/Model/Event.php:442
+#: src/Core/L10n.php:499 src/Model/Event.php:440
msgid "Apr"
msgstr "Gibl"
-#: src/Core/L10n.php:431 src/Model/Event.php:444
+#: src/Core/L10n.php:499 src/Model/Event.php:442
msgid "Jun"
msgstr "Ògmh"
-#: src/Core/L10n.php:431 src/Model/Event.php:445
+#: src/Core/L10n.php:499 src/Model/Event.php:443
msgid "Jul"
msgstr "Iuch"
-#: src/Core/L10n.php:431 src/Model/Event.php:446
+#: src/Core/L10n.php:499 src/Model/Event.php:444
msgid "Aug"
msgstr "Lùna"
-#: src/Core/L10n.php:431
+#: src/Core/L10n.php:499
msgid "Sep"
msgstr "Sult"
-#: src/Core/L10n.php:431 src/Model/Event.php:448
+#: src/Core/L10n.php:499 src/Model/Event.php:446
msgid "Oct"
msgstr "Dàmh"
-#: src/Core/L10n.php:431 src/Model/Event.php:449
+#: src/Core/L10n.php:499 src/Model/Event.php:447
msgid "Nov"
msgstr "Samh"
-#: src/Core/L10n.php:431 src/Model/Event.php:450
+#: src/Core/L10n.php:499 src/Model/Event.php:448
msgid "Dec"
msgstr "Dùbh"
+#: 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/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:147 src/Core/Renderer.php:181
#: src/Render/FriendicaSmartyEngine.php:60
@@ -2874,22 +3062,22 @@ msgid ""
" 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:197
+#: 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:239
+#: 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:313
+#: 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:353
+#: src/Core/Update.php:339
#, php-format
msgid ""
"\n"
@@ -2899,49 +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:359
+#: 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:363 src/Core/Update.php:391
+#: 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:385
+#: src/Core/Update.php:371
#, php-format
msgid ""
"\n"
"\t\t\t\tThe friendica database was successfully updated from %s to %s."
-msgstr ""
+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"
@@ -2949,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:221
+#: 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:225
+#: src/Database/DBStructure.php:236
#, php-format
msgid "%s: Database update"
msgstr "%s: Ùrachadh an stòir-dhàta"
-#: src/Database/DBStructure.php:482
+#: src/Database/DBStructure.php:493
#, php-format
msgid "%s: updating %s table."
msgstr "%s: Ag ùrachadh clàr %s."
@@ -2993,82 +3181,122 @@ 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:1217 src/Module/Moderation/Users/Pending.php:102
+#: 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/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:1652
+#: src/Model/Contact.php:1694
msgid "Organisation"
msgstr "Buidheann"
-#: src/Model/Contact.php:1660
-msgid "Forum"
-msgstr "Fòram"
+#: src/Model/Contact.php:1702
+msgid "Group"
+msgstr "Buidheann"
-#: src/Model/Contact.php:2947
+#: src/Model/Contact.php:3005
msgid "Disallowed profile URL."
msgstr "URL pròifile mì-dhligheach."
-#: src/Model/Contact.php:2952 src/Module/Friendica.php:83
+#: src/Model/Contact.php:3010 src/Module/Friendica.php:101
msgid "Blocked domain"
msgstr "Àrainn bhacte"
-#: src/Model/Contact.php:2957
+#: src/Model/Contact.php:3015
msgid "Connect URL missing."
msgstr "Tha URL a’ cheangail a dhìth."
-#: src/Model/Contact.php:2966
+#: 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:2984
+#: src/Model/Contact.php:3042
#, php-format
msgid "Expected network %s does not match actual network %s"
-msgstr ""
+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:3001
+#: 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:3003
+#: 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:3006
+#: 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:3009
+#: 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:3012
+#: 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:3013
+#: 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:3019
+#: 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:3024
+#: 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:3089
+#: src/Model/Contact.php:3148
msgid "Unable to retrieve contact information."
msgstr "Cha d’ fhuair sinn grèim air fiosrachadh an neach-aithne."
@@ -3076,56 +3304,56 @@ msgstr "Cha d’ fhuair sinn grèim air fiosrachadh an neach-aithne."
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:75 src/Model/Event.php:92 src/Model/Event.php:471
-#: src/Model/Event.php:940
+#: 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:78 src/Model/Event.php:98 src/Model/Event.php:472
-#: src/Model/Event.php:944
+#: 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:421
+#: src/Model/Event.php:419
msgid "all-day"
msgstr "fad an latha"
-#: src/Model/Event.php:447
+#: src/Model/Event.php:445
msgid "Sept"
msgstr "Sult"
-#: src/Model/Event.php:464 src/Module/Calendar/Show.php:128
+#: 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:465 src/Module/Calendar/Show.php:129
-#: src/Module/Settings/Display.php:232 src/Util/Temporal.php:353
+#: 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:466 src/Module/Calendar/Show.php:130
-#: src/Module/Settings/Display.php:233 src/Util/Temporal.php:354
+#: 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:467 src/Module/Calendar/Show.php:131
-#: src/Module/Settings/Display.php:234 src/Util/Temporal.php:355
+#: 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:469
+#: src/Model/Event.php:467
msgid "No events to display"
msgstr "Chan eil tachartas ri shealltainn ann"
-#: src/Model/Event.php:518 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69
+#: 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:559 src/Module/Calendar/Event/Show.php:67
+#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67
msgid "Event not found."
-msgstr ""
+msgstr "Cha deach an tachartas a lorg."
#: src/Model/Event.php:637
msgid "l, F j"
@@ -3155,110 +3383,66 @@ msgstr "D g:i a"
msgid "g:i A"
msgstr "g:i a"
-#: src/Model/Event.php:959 src/Model/Event.php:961
+#: src/Model/Event.php:964 src/Model/Event.php:966
msgid "Show map"
msgstr "Seall am mapa"
-#: src/Model/Event.php:960
+#: src/Model/Event.php:965
msgid "Hide map"
msgstr "Falaich am mapa"
-#: src/Model/Event.php:1053
+#: src/Model/Event.php:1058
#, php-format
msgid "%s's birthday"
msgstr "Cò-là breith aig %s"
-#: src/Model/Event.php:1054
+#: 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:192
-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:177 src/Module/Group.php:200
-#: src/Module/Group.php:275
-msgid "Group Name: "
-msgstr "Ainm a’ bhuidhinn: "
-
-#: src/Model/Group.php:596
-msgid "Edit groups"
-msgstr "Deasaich buidhnean"
-
-#: src/Model/Item.php:2023
+#: 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:2926
+#: src/Model/Item.php:3007
msgid "activity"
msgstr "gnìomhachd"
-#: src/Model/Item.php:2928
+#: src/Model/Item.php:3009
msgid "comment"
msgstr "beachd"
-#: src/Model/Item.php:2931 src/Module/Post/Tag/Add.php:123
+#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123
msgid "post"
msgstr "post"
-#: src/Model/Item.php:3093
+#: src/Model/Item.php:3182
#, php-format
msgid "%s is blocked"
-msgstr ""
+msgstr "Tha %s ’ga bhacadh"
-#: src/Model/Item.php:3095
+#: src/Model/Item.php:3184
#, php-format
msgid "%s is ignored"
-msgstr ""
+msgstr "Tha %s ’ga leigeil seachad"
-#: src/Model/Item.php:3097
+#: src/Model/Item.php:3186
#, php-format
msgid "Content from %s is collapsed"
-msgstr ""
+msgstr "Tha susbaint o %s ’ga cho-theannachadh"
-#: src/Model/Item.php:3101
+#: src/Model/Item.php:3190
#, php-format
msgid "Content warning: %s"
msgstr "Rabhadh susbainte: %s"
-#: src/Model/Item.php:3519
+#: src/Model/Item.php:3652
msgid "bytes"
msgstr "baidht"
-#: src/Model/Item.php:3550
+#: src/Model/Item.php:3683
#, php-format
msgid "%2$s (%3$d%%, %1$d vote)"
msgid_plural "%2$s (%3$d%%, %1$d votes)"
@@ -3267,7 +3451,7 @@ msgstr[1] "%2$s (%3$d%%, %1$d bhòt)"
msgstr[2] "%2$s (%3$d%%, %1$d bhòtaichean)"
msgstr[3] "%2$s (%3$d%%, %1$d bhòt)"
-#: src/Model/Item.php:3552
+#: src/Model/Item.php:3685
#, php-format
msgid "%2$s (%1$d vote)"
msgid_plural "%2$s (%1$d votes)"
@@ -3276,7 +3460,7 @@ msgstr[1] "%2$s (%1$d bhòt)"
msgstr[2] "%2$s (%1$d bhòtaichean)"
msgstr[3] "%2$s (%1$d bhòt)"
-#: src/Model/Item.php:3557
+#: src/Model/Item.php:3690
#, php-format
msgid "%d voter. Poll end: %s"
msgid_plural "%d voters. Poll end: %s"
@@ -3285,7 +3469,7 @@ msgstr[1] "Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s"
msgstr[2] "Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s"
msgstr[3] "Rinn %d bhòtadh. Crìoch a’ chunntais-bheachd: %s"
-#: src/Model/Item.php:3559
+#: src/Model/Item.php:3692
#, php-format
msgid "%d voter."
msgid_plural "%d voters."
@@ -3294,12 +3478,12 @@ msgstr[1] "Rinn %d bhòtadh."
msgstr[2] "Rinn %d bhòtadh."
msgstr[3] "Rinn %d bhòtadh."
-#: src/Model/Item.php:3561
+#: src/Model/Item.php:3694
#, php-format
msgid "Poll end: %s"
msgstr "Crìoch a’ bhunntais-bheachd:%s"
-#: src/Model/Item.php:3595 src/Model/Item.php:3596
+#: src/Model/Item.php:3728 src/Model/Item.php:3729
msgid "View on separate page"
msgstr "Seall air duilleag fa leth"
@@ -3307,227 +3491,228 @@ msgstr "Seall air duilleag fa leth"
msgid "[no subject]"
msgstr "[gun chuspair]"
-#: src/Model/Photo.php:1189 src/Module/Media/Photo/Upload.php:197
+#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170
msgid "Wall Photos"
msgstr "Dealbhan balla"
-#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:283
+#: 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:363
+#: src/Model/Profile.php:361
msgid "Change profile photo"
msgstr "Atharraich dealbh na pròifil"
-#: src/Model/Profile.php:376 src/Module/Directory.php:152
+#: 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:377 src/Module/Contact/Profile.php:385
+#: 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:467
+#: src/Model/Profile.php:465
msgid "Atom feed"
msgstr "Inbhir Atom"
-#: src/Model/Profile.php:474
+#: src/Model/Profile.php:472
msgid "This website has been verified to belong to the same person."
-msgstr ""
+msgstr "Chaidh dearbhadh gu bheil an làrach-lìn seo aig an aon neach."
-#: src/Model/Profile.php:511
+#: src/Model/Profile.php:509
msgid "F d"
msgstr "d F"
-#: src/Model/Profile.php:575 src/Model/Profile.php:664
+#: src/Model/Profile.php:573 src/Model/Profile.php:662
msgid "[today]"
msgstr "[an-diugh]"
-#: src/Model/Profile.php:584
+#: src/Model/Profile.php:582
msgid "Birthday Reminders"
msgstr "Cuimhneachain co-là breith"
-#: src/Model/Profile.php:585
+#: src/Model/Profile.php:583
msgid "Birthdays this week:"
msgstr "Co-làithean breith an t-seachdain seo:"
-#: src/Model/Profile.php:613
+#: src/Model/Profile.php:611
msgid "g A l F d"
msgstr "g a l d F"
-#: src/Model/Profile.php:651
+#: src/Model/Profile.php:649
msgid "[No description]"
msgstr "[Gun tuairisgeul]"
-#: src/Model/Profile.php:677
+#: src/Model/Profile.php:675
msgid "Event Reminders"
msgstr "Cuimhneachain air tachartasan"
-#: src/Model/Profile.php:678
+#: 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:875
+#: 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:1015
+#: src/Model/Profile.php:1013
msgid "Hometown:"
msgstr "Baile d’ àraich:"
-#: src/Model/Profile.php:1016
+#: src/Model/Profile.php:1014
msgid "Marital Status:"
msgstr "Inbhe pòsaidh:"
-#: src/Model/Profile.php:1017
+#: src/Model/Profile.php:1015
msgid "With:"
msgstr "Le:"
-#: src/Model/Profile.php:1018
+#: src/Model/Profile.php:1016
msgid "Since:"
msgstr "O chionn:"
-#: src/Model/Profile.php:1019
+#: src/Model/Profile.php:1017
msgid "Sexual Preference:"
msgstr "Aidmheil cleamhnais:"
-#: src/Model/Profile.php:1020
+#: src/Model/Profile.php:1018
msgid "Political Views:"
msgstr "Beachdan poilitigeach:"
-#: src/Model/Profile.php:1021
+#: src/Model/Profile.php:1019
msgid "Religious Views:"
msgstr "Beachdan creideamhach:"
-#: src/Model/Profile.php:1022
+#: src/Model/Profile.php:1020
msgid "Likes:"
msgstr "’S toigh seo le:"
-#: src/Model/Profile.php:1023
+#: src/Model/Profile.php:1021
msgid "Dislikes:"
msgstr "Cha toigh seo le:"
-#: src/Model/Profile.php:1024
+#: src/Model/Profile.php:1022
msgid "Title/Description:"
msgstr "Tiotal/Tuairisgeul:"
-#: src/Model/Profile.php:1025 src/Module/Admin/Summary.php:221
+#: 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:1026
+#: src/Model/Profile.php:1024
msgid "Musical interests"
msgstr "Ùidhean ciùil"
-#: src/Model/Profile.php:1027
+#: src/Model/Profile.php:1025
msgid "Books, literature"
msgstr "Leabhraichean ⁊ litreachas"
-#: src/Model/Profile.php:1028
+#: src/Model/Profile.php:1026
msgid "Television"
msgstr "Telebhisean"
-#: src/Model/Profile.php:1029
+#: src/Model/Profile.php:1027
msgid "Film/dance/culture/entertainment"
msgstr "Film/dannsa/cultar/dibheirsean"
-#: src/Model/Profile.php:1030
+#: src/Model/Profile.php:1028
msgid "Hobbies/Interests"
msgstr "Cur-seachadan/ùidhean"
-#: src/Model/Profile.php:1031
+#: src/Model/Profile.php:1029
msgid "Love/romance"
msgstr "Gaol/suirghe"
-#: src/Model/Profile.php:1032
+#: src/Model/Profile.php:1030
msgid "Work/employment"
msgstr "Obair/fastadh"
-#: src/Model/Profile.php:1033
+#: src/Model/Profile.php:1031
msgid "School/education"
msgstr "Sgoil/foghlam"
-#: src/Model/Profile.php:1034
+#: src/Model/Profile.php:1032
msgid "Contact information and Social Networks"
msgstr "Fiosrachadh conaltraidh is meadhanan sòisealta"
-#: src/Model/User.php:214 src/Model/User.php:1120
+#: 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:754
+#: 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:796
+#: src/Model/User.php:848
msgid "Empty passwords are not allowed."
msgstr "Chan eil faclan-faire bàna ceadaichte."
-#: src/Model/User.php:800
+#: 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:804
+#: 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:808
+#: src/Model/User.php:860
msgid "The password can't contain white spaces nor accentuated letters"
-msgstr ""
+msgstr "Chan fhaod àite bàn no litir le stràc a bhith am broinn an fhacail-fhaire"
-#: src/Model/User.php:1003
+#: 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:1010
+#: src/Model/User.php:1076
msgid "An invitation is required."
msgstr "Tha feum air cuireadh."
-#: src/Model/User.php:1014
+#: src/Model/User.php:1080
msgid "Invitation could not be verified."
msgstr "Cha b’ urrainn dhuinn an cuireadh a dhearbhadh."
-#: src/Model/User.php:1022
+#: src/Model/User.php:1088
msgid "Invalid OpenID url"
msgstr "URL OpenID mì-dhligheach"
-#: src/Model/User.php:1035 src/Security/Authentication.php:241
+#: 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:1035 src/Security/Authentication.php:241
+#: src/Model/User.php:1101 src/Security/Authentication.php:241
msgid "The error message was:"
msgstr "Seo teachdaireachd na mearachd:"
-#: src/Model/User.php:1041
+#: src/Model/User.php:1107
msgid "Please enter the required information."
msgstr "Cuir a-steach am fiosrachadh riatanach."
-#: src/Model/User.php:1055
+#: 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:1062
+#: src/Model/User.php:1128
#, php-format
msgid "Username should be at least %s character."
msgid_plural "Username should be at least %s characters."
@@ -3536,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:1066
+#: src/Model/User.php:1132
#, php-format
msgid "Username should be at most %s character."
msgid_plural "Username should be at most %s characters."
@@ -3545,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:1074
+#: 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:1079
+#: 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:1083
+#: 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:1086
+#: 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:1090 src/Model/User.php:1096
+#: 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:1102
+#: 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:1110 src/Model/User.php:1167
+#: 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:1154 src/Model/User.php:1158
+#: 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:1181
+#: 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:1188
+#: 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:1193
+#: src/Model/User.php:1259
msgid "Friends"
msgstr "Caraidean"
-#: src/Model/User.php:1197
+#: 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:1236
+#: src/Model/User.php:1307
msgid "Profile Photos"
msgstr "Dealbhan na pròifil"
-#: src/Model/User.php:1431
+#: src/Model/User.php:1487
#, php-format
msgid ""
"\n"
@@ -3606,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:1434
+#: src/Model/User.php:1490
#, php-format
msgid ""
"\n"
@@ -3636,14 +3821,14 @@ msgid ""
"\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 ""
+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:1467 src/Model/User.php:1574
+#: 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:1487
+#: src/Model/User.php:1543
#, php-format
msgid ""
"\n"
@@ -3658,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:1506
+#: src/Model/User.php:1562
#, php-format
msgid "Registration at %s"
msgstr "An clàradh air %s"
-#: src/Model/User.php:1530
+#: src/Model/User.php:1586
#, php-format
msgid ""
"\n"
@@ -3672,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:1538
+#: src/Model/User.php:1594
#, php-format
msgid ""
"\n"
@@ -3702,7 +3887,7 @@ msgid ""
"\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 ""
+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."
@@ -3729,10 +3914,10 @@ msgid "Enable"
msgstr "Cuir an comas"
#: src/Module/Admin/Addons/Details.php:111
-#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:209
+#: 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:220
+#: 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
@@ -3742,7 +3927,7 @@ msgstr "Rianachd"
#: src/Module/Admin/Addons/Details.php:112
#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92
-#: src/Module/BaseSettings.php:134
+#: src/Module/BaseSettings.php:132
msgid "Addons"
msgstr "Tuilleadain"
@@ -3773,10 +3958,10 @@ 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:560 src/Module/Settings/Addons.php:78
+#: 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:169 src/Module/Settings/Display.php:247
+#: 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"
@@ -3791,7 +3976,7 @@ 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."
+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"
@@ -3861,15 +4046,17 @@ msgstr "Glais gleus %s"
msgid "Manage Additional Features"
msgstr "Stiùir na gleusan a bharrachd"
-#: src/Module/Admin/Federation.php:75
+#: 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:149 src/Module/Admin/Federation.php:398
+#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403
msgid "unknown"
msgstr "chan eil fhios"
-#: src/Module/Admin/Federation.php:182
+#: src/Module/Admin/Federation.php:187
#, php-format
msgid "%2$s total system"
msgid_plural "%2$s total systems"
@@ -3878,7 +4065,7 @@ 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:183
+#: src/Module/Admin/Federation.php:188
#, php-format
msgid "%2$s active user last month"
msgid_plural "%2$s active users last month"
@@ -3887,7 +4074,7 @@ 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:184
+#: 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"
@@ -3896,7 +4083,7 @@ 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:185
+#: src/Module/Admin/Federation.php:190
#, php-format
msgid "%2$s registered user"
msgid_plural "%2$s registered users"
@@ -3905,7 +4092,7 @@ 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:186
+#: 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"
@@ -3914,7 +4101,7 @@ 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:189
+#: src/Module/Admin/Federation.php:194
#, php-format
msgid "%2$s post per user"
msgid_plural "%2$s posts per user"
@@ -3923,7 +4110,7 @@ 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:194
+#: src/Module/Admin/Federation.php:199
#, php-format
msgid "%2$s user per system"
msgid_plural "%2$s users per system"
@@ -3932,18 +4119,18 @@ 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:204
+#: 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:210 src/Module/BaseAdmin.php:87
+#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87
msgid "Federation Statistics"
msgstr "Stadastaireachd a’ cho-nasgaidh"
-#: src/Module/Admin/Federation.php:214
+#: src/Module/Admin/Federation.php:219
#, php-format
msgid ""
"Currently this node is aware of %2$s node (%3$s active users last month, "
@@ -3989,7 +4176,7 @@ msgstr "Cuir dì-bhugachadh an comas"
#: src/Module/Admin/Site.php:428
msgid ""
"Read-only because it is set by an environment variable"
-msgstr ""
+msgstr "Cead-leughaidh a-mhàin on a chaidh a shuidheachadh le caochladair àrainne"
#: src/Module/Admin/Logs/Settings.php:92
msgid "Log file"
@@ -4138,7 +4325,8 @@ msgstr "Àithne"
msgid "Job Parameters"
msgstr "Paramadairean na h-obrach"
-#: src/Module/Admin/Queue.php:78 src/Module/Settings/OAuth.php:74
+#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95
+#: src/Module/Settings/OAuth.php:74
msgid "Created"
msgstr "Air a chruthachadh"
@@ -4149,13 +4337,13 @@ msgstr "Prìomhachas"
#: src/Module/Admin/Site.php:212
#, php-format
msgid "%s is no valid input for maximum image size"
-msgstr ""
+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:169
+#: 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:330 src/Module/Settings/Display.php:179
+#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188
#, php-format
msgid "%s - (Experimental)"
msgstr "%s – (deuchainneil)"
@@ -4166,7 +4354,7 @@ msgstr "Gun duilleag coimhearsnachd"
#: src/Module/Admin/Site.php:343
msgid "No community page for visitors"
-msgstr ""
+msgstr "Gun duilleag coimhearsnachd do dh’aoighean"
#: src/Module/Admin/Site.php:344
msgid "Public postings from users of this site"
@@ -4245,7 +4433,7 @@ msgid "Policies"
msgstr "Poileasaidhean"
#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252
-#: src/Module/Contact.php:516 src/Module/Profile/Profile.php:276
+#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276
msgid "Advanced"
msgstr "Adhartach"
@@ -4414,7 +4602,7 @@ 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 ""
+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:439
msgid "Maximum image length"
@@ -4442,7 +4630,7 @@ msgstr "Poileasaidh clàraidh"
#: src/Module/Admin/Site.php:443
msgid "Maximum Users"
-msgstr ""
+msgstr "Àireamh as motha de chleachdaichean"
#: src/Module/Admin/Site.php:443
msgid ""
@@ -4450,7 +4638,7 @@ msgid ""
"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 ""
+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"
@@ -4575,8 +4763,8 @@ msgstr "Postaichean prìobhaideach ’na bhun-roghainn do chleachdaichean ùra"
#: 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:456
msgid "Don't include post content in email notifications"
@@ -4682,13 +4870,13 @@ msgstr "Cuid an comas an dearbhadh nach leig le cleachdaichean clàradh ach le b
#: src/Module/Admin/Site.php:466
msgid "Email administrators on new registration"
-msgstr ""
+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 ""
+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"
@@ -4990,14 +5178,14 @@ msgid "On large systems the text search can slow down the system extremely."
msgstr "Air siostaman mòra, ’s urrainn dhan lorg teacsa maille mhòr a chur air an t-siostam."
#: src/Module/Admin/Site.php:507
-msgid "Generate counts per contact group when calculating network count"
-msgstr "Cruthaich cunntasan do bhuidhnean luchd-aithne nuair a thèid cunntas an lìonraidh àireamhachadh"
+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:507
msgid ""
-"On systems with users that heavily use contact groups the query can be very "
-"expensive."
-msgstr "Air siostaman far an bheil tòrr bhuidhnean luchd-aithne ’gan cleachdadh, faodaidh a’ cheist seo a bhith glè dhaor."
+"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:509
msgid "Maximum number of parallel workers"
@@ -5040,7 +5228,7 @@ msgid ""
"received."
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:513 src/Module/Contact/Profile.php:286
+#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309
#: src/Module/Settings/TwoFactor/Index.php:125
msgid "Disabled"
msgstr "À comas"
@@ -5129,7 +5317,7 @@ msgstr "Chan eil roghainnean gnàthaichte aig a’ backend seo"
msgid ""
"Changing the current backend is prohibited because it is set by an "
"environment variable"
-msgstr ""
+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)"
@@ -5175,7 +5363,7 @@ msgstr "Tha an table_definition_cache agad ro ìosal (%d). Dh’fhaoidte gun adh
msgid ""
"There is a new version of Friendica available for download. Your current "
"version is %1$s, upstream version is %2$s"
-msgstr "Tha tionndadh ùr dhe Friendica ri fhaighinn airson luchdadh a-nuas. ’S e %1$s a tha san tionndadh làithreach agad, ’S e %2$s a tha san tionndadh upstream."
+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:94
msgid ""
@@ -5196,7 +5384,7 @@ 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 ""
+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!"
@@ -5235,51 +5423,40 @@ msgid ""
"href=\"%s\">the installation page for help."
msgstr "Cha ghabh %s ruigsinn on t-siostam agad. Seo droch-dhuilgheadas leis an rèiteachadh nach leig leis an fhrithealaiche conaltradh le frithealaichean eile. Faic duilleag an stàlaidh airson cuideachadh."
-#: src/Module/Admin/Summary.php:142
-#, 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/Module/Admin/Summary.php:156
-#, 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/Module/Admin/Summary.php:172
+#: 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 "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:180
+#: 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 "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:188
+#: 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 "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:199
+#: src/Module/Admin/Summary.php:175
msgid "Message queues"
msgstr "Ciuthan theachdaireachdan"
-#: src/Module/Admin/Summary.php:205
+#: src/Module/Admin/Summary.php:181
msgid "Server Settings"
msgstr "Roghainnean an fhrithealaiche"
-#: src/Module/Admin/Summary.php:223
+#: src/Module/Admin/Summary.php:199
msgid "Version"
msgstr "Tionndadh"
-#: src/Module/Admin/Summary.php:227
+#: src/Module/Admin/Summary.php:203
msgid "Active addons"
msgstr "Tuilleadain ghnìomhach"
@@ -5370,16 +5547,16 @@ msgstr "Cuir a-steach teirmichean seirbheis an nòid agad an-seo. ’S urrainn d
#: src/Module/Admin/Tos.php:84
msgid "The rules"
-msgstr ""
+msgstr "Na riaghailtean"
#: src/Module/Admin/Tos.php:84
msgid "Enter your system rules here. Each line represents one rule."
-msgstr ""
+msgstr "Cuir a-steach riaghailtean an t-siostaim agad an-seo. Riochdaichidh gach loidhne riaghailt."
#: src/Module/Api/ApiResponse.php:279
#, php-format
msgid "API endpoint %s %s is not implemented but might be in the future."
-msgstr ""
+msgstr "Cha deach puing-dheiridh %s %s an API prògramachadh ach ’s dòcha gun dèid san àm ri teachd."
#: src/Module/Api/Mastodon/Apps.php:73
msgid "Missing parameters"
@@ -5432,11 +5609,11 @@ msgstr "Cha deach an nì a lorg."
msgid "Please login to continue."
msgstr "Clàraich a-steach airson leantainn air adhart."
-#: src/Module/BaseAdmin.php:63 src/Module/BaseModeration.php:86
+#: src/Module/BaseAdmin.php:63
msgid "You don't have access to administration pages."
msgstr "Chan eil inntrigeadh agad air duilleagan na rianachd."
-#: src/Module/BaseAdmin.php:67 src/Module/BaseModeration.php:90
+#: src/Module/BaseAdmin.php:67
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
@@ -5446,11 +5623,11 @@ msgstr "Chan urrainn dhan cunntas ’ga fho-stiùireadh duilleagan na rianachd i
msgid "Overview"
msgstr "Foir-shealladh"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:111
+#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
msgid "Configuration"
msgstr "Rèiteachadh"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:112
+#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
msgid "Additional features"
msgstr "Gleusan a bharrachd"
@@ -5470,7 +5647,7 @@ msgstr "Sgrùd na h-obraichean dàilichte"
msgid "Inspect worker Queue"
msgstr "Sgrùd ciutha nan obraichean"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:119
+#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
msgid "Diagnostics"
msgstr "Diagnosachd"
@@ -5480,11 +5657,11 @@ msgstr "Fiosrachadh PHP"
#: src/Module/BaseAdmin.php:108
msgid "probe address"
-msgstr ""
+msgstr "sgrùd an seòladh"
#: src/Module/BaseAdmin.php:109
msgid "check webfinger"
-msgstr ""
+msgstr "thoir sùil air webfinger"
#: src/Module/BaseAdmin.php:110
msgid "Babel"
@@ -5498,7 +5675,7 @@ msgstr "Iompachadh ActivityPub"
msgid "Addon Features"
msgstr "Gleusan tuilleadain"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:128
+#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
msgid "User registrations waiting for confirmation"
msgstr "Clàraichean chleachdaichean a’ feitheamh air dearbhadh"
@@ -5536,38 +5713,52 @@ msgstr[1] "Ràinig thu a’ chrìoch de %d phost gach mìos. Chaidh am post a dh
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/BaseModeration.php:112 src/Module/Moderation/Users/Index.php:148
+#: 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:114
+#: src/Module/BaseModeration.php:115
msgid "Tools"
msgstr "Innealan"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:116
msgid "Contact Blocklist"
msgstr "Liosta-bhacaidh an luchd-aithne"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:117
msgid "Server Blocklist"
msgstr "Liosta-bhacaidh an fhrithealaiche"
-#: src/Module/BaseModeration.php:117 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
msgid "Delete Item"
msgstr "Sguab às an nì"
-#: src/Module/BaseModeration.php:120 src/Module/Moderation/Item/Source.php:76
+#: 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:478
+#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507
msgid "Profile Details"
msgstr "Fiosrachadh na pròifil"
#: src/Module/BaseProfile.php:60
msgid "Conversations started"
-msgstr ""
+msgstr "Còmhraidhean air an tòiseachadh"
#: src/Module/BaseProfile.php:111
msgid "Only You Can See This"
@@ -5585,15 +5776,15 @@ msgstr "Postaichean a tha air an sgeideal airson foillseachadh"
msgid "Tips for New Members"
msgstr "Gliocasan dha na buill ùra"
-#: src/Module/BaseSearch.php:69
+#: src/Module/BaseSearch.php:71
#, php-format
msgid "People Search - %s"
msgstr "Lorg daoine – %s"
-#: src/Module/BaseSearch.php:79
+#: src/Module/BaseSearch.php:75
#, php-format
-msgid "Forum Search - %s"
-msgstr "Lorg fòraim – %s"
+msgid "Group Search - %s"
+msgstr "Lorg sna buidhnean – %s"
#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139
msgid "No matches"
@@ -5609,41 +5800,45 @@ 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[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:80
+#: src/Module/BaseSettings.php:78
msgid "Account"
msgstr "Cunntas"
-#: src/Module/BaseSettings.php:87 src/Module/Security/TwoFactor/Verify.php:96
+#: src/Module/BaseSettings.php:85 src/Module/Security/TwoFactor/Verify.php:96
#: src/Module/Settings/TwoFactor/Index.php:117
msgid "Two-factor authentication"
msgstr "Dearbhadh dà-cheumnach"
-#: src/Module/BaseSettings.php:120
+#: src/Module/BaseSettings.php:118
msgid "Display"
msgstr "Sealladh"
-#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:204
+#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204
msgid "Social Networks"
msgstr "Lìonraidhean sòisealta"
-#: src/Module/BaseSettings.php:141 src/Module/Settings/Delegation.php:170
+#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172
msgid "Manage Accounts"
msgstr "Stiùir na cunntasan"
-#: src/Module/BaseSettings.php:148
+#: src/Module/BaseSettings.php:146
msgid "Connected apps"
msgstr "Aplacaidean ceangailte"
-#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:98
+#: 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-phortaich an dàta pearsanta"
-#: src/Module/BaseSettings.php:162
+#: src/Module/BaseSettings.php:167
msgid "Remove account"
msgstr "Thoir air falbh an cunntas"
@@ -5658,11 +5853,11 @@ msgstr "Chaidh am post a chruthachadh"
#: 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 ""
+msgstr "Iarrtas mì-dhligheach"
#: src/Module/Calendar/Event/API.php:109
msgid "Event id is missing."
-msgstr ""
+msgstr "Tha ID an tachartais a dhìth."
#: src/Module/Calendar/Event/API.php:131
msgid "Failed to remove event"
@@ -5720,15 +5915,15 @@ 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 ""
+msgstr "Tiotal (chan eil BBCode ceadaichte)"
#: src/Module/Calendar/Event/Form.php:239
msgid "Description (BBCode allowed)"
-msgstr ""
+msgstr "Tuairisgeul (tha BBCode ceadaichte)"
#: src/Module/Calendar/Event/Form.php:241
msgid "Location (BBCode not allowed)"
-msgstr ""
+msgstr "Ionad (chan eil BBCode ceadaichte)"
#: src/Module/Calendar/Event/Form.php:244
#: src/Module/Calendar/Event/Form.php:245
@@ -5763,10 +5958,113 @@ msgstr "Seall"
msgid "Create New Event"
msgstr "Cruthaich tachartas ùr"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:235
+#: 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."
@@ -5776,159 +6074,146 @@ 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:341
+#: src/Module/Contact.php:348
msgid "Show all contacts"
msgstr "Seall an luchd-aithne gu lèir"
-#: src/Module/Contact.php:346 src/Module/Contact.php:414
+#: 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:349
+#: src/Module/Contact.php:356
msgid "Only show pending contacts"
msgstr "Na seall ach an luchd-aithne ri dhèiligeadh"
-#: src/Module/Contact.php:354 src/Module/Contact.php:415
+#: 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:357
+#: src/Module/Contact.php:364
msgid "Only show blocked contacts"
msgstr "Na seall ach an luchd-aithne bacte"
-#: src/Module/Contact.php:362 src/Module/Contact.php:417
-#: src/Object/Post.php:345
+#: 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 "’Ga leigeil seachad"
-#: src/Module/Contact.php:365
+#: src/Module/Contact.php:372
msgid "Only show ignored contacts"
msgstr "Na seall ach an luchd-aithne ’gan leigeil seachad"
-#: src/Module/Contact.php:370 src/Module/Contact.php:418
+#: src/Module/Contact.php:377 src/Module/Contact.php:444
msgid "Collapsed"
-msgstr ""
+msgstr "’Ga cho-theannachadh"
-#: src/Module/Contact.php:373
+#: src/Module/Contact.php:380
msgid "Only show collapsed contacts"
-msgstr ""
+msgstr "Na seall ach an luchd-aithne co-theannaichte"
-#: src/Module/Contact.php:378 src/Module/Contact.php:419
+#: src/Module/Contact.php:385 src/Module/Contact.php:447
msgid "Archived"
msgstr "San tasg-lann"
-#: src/Module/Contact.php:381
+#: src/Module/Contact.php:388
msgid "Only show archived contacts"
msgstr "Na seall ach an luchd-aithne san tasg-lann"
-#: src/Module/Contact.php:386 src/Module/Contact.php:416
+#: src/Module/Contact.php:393 src/Module/Contact.php:438
msgid "Hidden"
msgstr "Falaichte"
-#: src/Module/Contact.php:389
+#: src/Module/Contact.php:396
msgid "Only show hidden contacts"
msgstr "Na seall ach an luchd-aithne falaichte"
-#: src/Module/Contact.php:397
-msgid "Organize your contact groups"
-msgstr "Cuir rian air buidhnean an luchd-aithne agad"
+#: src/Module/Contact.php:404
+msgid "Organize your contact circles"
+msgstr "Cuir rian air cearcallan an luchd-aithne agad"
-#: src/Module/Contact.php:430
+#: src/Module/Contact.php:459
msgid "Search your contacts"
msgstr "Lorg san luchd-aithne agad"
-#: src/Module/Contact.php:431 src/Module/Search/Index.php:207
+#: src/Module/Contact.php:460 src/Module/Search/Index.php:207
#, php-format
msgid "Results for: %s"
msgstr "Toraidhean airson: %s"
-#: src/Module/Contact.php:438
+#: src/Module/Contact.php:467
msgid "Update"
msgstr "Ùraich"
-#: src/Module/Contact.php:439 src/Module/Contact/Profile.php:477
+#: 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:440 src/Module/Contact/Profile.php:485
+#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519
msgid "Unignore"
msgstr "Na leig seachad tuilleadh"
-#: src/Module/Contact.php:441 src/Module/Contact/Profile.php:493
+#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527
msgid "Uncollapse"
-msgstr ""
+msgstr "Na co-theannaich tuilleadh"
-#: src/Module/Contact.php:443
+#: src/Module/Contact.php:472
msgid "Batch Actions"
msgstr "Gnìomhan ’nan grunnan"
-#: src/Module/Contact.php:486
+#: src/Module/Contact.php:515
msgid "Conversations started by this contact"
msgstr "Na còmhraidhean a thòisich an neach-aithne seo"
-#: src/Module/Contact.php:491
+#: src/Module/Contact.php:520
msgid "Posts and Comments"
msgstr "Postaichean ’s beachdan"
-#: src/Module/Contact.php:494
+#: src/Module/Contact.php:523
msgid "Individual Posts and Replies"
-msgstr ""
+msgstr "Postaichean ’s freagairtean fa leth"
-#: src/Module/Contact.php:502
+#: src/Module/Contact.php:531
msgid "Posts containing media objects"
msgstr "Postaichean sa bheil nithean meadhain"
-#: src/Module/Contact.php:509
+#: src/Module/Contact.php:539
msgid "View all known contacts"
msgstr "Seall a h-uile neach-aithne as aithne dhut"
-#: src/Module/Contact.php:519
+#: src/Module/Contact.php:550
msgid "Advanced Contact Settings"
msgstr "Roghainnean adhartach an luchd-aithne"
-#: src/Module/Contact.php:555
+#: src/Module/Contact.php:586
msgid "Mutual Friendship"
msgstr "Co-dhàimh"
-#: src/Module/Contact.php:559
+#: src/Module/Contact.php:590
msgid "is a fan of yours"
msgstr "dealasach ort"
-#: src/Module/Contact.php:563
+#: src/Module/Contact.php:594
msgid "you are a fan of"
msgstr "tha thu dealasach air"
-#: src/Module/Contact.php:581
+#: src/Module/Contact.php:612
msgid "Pending outgoing contact request"
msgstr "Iarrtas neach-aithne a-mach gun dèiligeadh"
-#: src/Module/Contact.php:583
+#: src/Module/Contact.php:614
msgid "Pending incoming contact request"
msgstr "Iarrtas neach-aithne a-steach ri dhèiligeadh"
-#: src/Module/Contact.php:596 src/Module/Contact/Profile.php:346
+#: src/Module/Contact.php:627 src/Module/Contact/Profile.php:371
#, php-format
msgid "Visit %s's profile [%s]"
msgstr "Tadhail air a’ phròifil aig %s [%s]"
-#: 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
-#: src/Module/Group.php:97 src/Module/Group.php:106
-msgid "Contact not found."
-msgstr "Cha deach an neach-aithne a lorg."
-
#: src/Module/Contact/Advanced.php:99
msgid "Contact update failed."
msgstr "Dh’fhàillig ùrachadh an neach-aithne."
@@ -5939,6 +6224,7 @@ 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
@@ -5965,11 +6251,6 @@ msgstr "URL a’ chunntais-bheachd/an inbhir"
msgid "New photo from this URL"
msgstr "Dealbh ùr on URL seo"
-#: src/Module/Contact/Contacts.php:66 src/Module/Conversation/Network.php:189
-#: src/Module/Group.php:101
-msgid "Invalid contact."
-msgstr "Neach-aithne mì-dhligheach."
-
#: src/Module/Contact/Contacts.php:89
msgid "No known contacts."
msgstr "Chan eil luchd-aithne ann."
@@ -6036,7 +6317,7 @@ msgstr[2] "Luchd-aithne (%s)"
msgstr[3] "Luchd-aithne (%s)"
#: 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/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
@@ -6074,15 +6355,16 @@ msgstr "Freagair seo:"
msgid "Your Identity Address:"
msgstr "Seòladh do dhearbh-aithne:"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:375
+#: 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:387
+#: 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:"
@@ -6099,7 +6381,7 @@ msgstr "Cuir nòta pearsanta ris:"
#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138
msgid "Posts and Replies"
-msgstr ""
+msgstr "Postaichean ’s freagairtean"
#: src/Module/Contact/Follow.php:221
msgid "The contact could not be added."
@@ -6108,8 +6390,8 @@ 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:82 src/Module/Media/Photo/Upload.php:87
-#: src/Module/Media/Photo/Upload.php:136
+#: 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."
@@ -6121,248 +6403,312 @@ msgstr "Chan eil faclan-luirg rim maidseadh ann. Cuir faclan-luirg ris a’ phr
msgid "Profile Match"
msgstr "Maidseadh na pròifile"
-#: src/Module/Contact/Profile.php:128
+#: 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:178
+#: src/Module/Contact/Profile.php:190
msgid "Contact has been unblocked"
msgstr "Chaidh an neach-aithne a dhì-bhacadh"
-#: src/Module/Contact/Profile.php:182
+#: src/Module/Contact/Profile.php:194
msgid "Contact has been blocked"
msgstr "Chaidh an neach-aithne a bhacadh"
-#: src/Module/Contact/Profile.php:194
+#: src/Module/Contact/Profile.php:206
msgid "Contact has been unignored"
msgstr "Chan eil an neach-aithne ’ga leigeil seachad tuilleadh"
-#: src/Module/Contact/Profile.php:198
+#: src/Module/Contact/Profile.php:210
msgid "Contact has been ignored"
msgstr "Tha an neach-aithne ’ga leigeil seachad"
-#: src/Module/Contact/Profile.php:210
+#: src/Module/Contact/Profile.php:222
msgid "Contact has been uncollapsed"
-msgstr ""
+msgstr "Chan eil an neach-aithne ’ga cho-theannachadh tuilleadh"
-#: src/Module/Contact/Profile.php:214
+#: src/Module/Contact/Profile.php:226
msgid "Contact has been collapsed"
-msgstr ""
+msgstr "Tha an neach-aithne ’ga cho-theannachadh"
-#: src/Module/Contact/Profile.php:242
+#: src/Module/Contact/Profile.php:254
#, php-format
msgid "You are mutual friends with %s"
msgstr "Tha co-dhàimh eadar thu fhèin is %s a-nis"
-#: src/Module/Contact/Profile.php:243
+#: src/Module/Contact/Profile.php:255
#, php-format
msgid "You are sharing with %s"
msgstr "Tha thu a’ co-roinneadh le %s"
-#: src/Module/Contact/Profile.php:244
+#: src/Module/Contact/Profile.php:256
#, php-format
msgid "%s is sharing with you"
msgstr "Tha %s a’ co-roinneadh leat"
-#: src/Module/Contact/Profile.php:260
+#: 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:262
+#: 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 "Chan ann idir"
-#: src/Module/Contact/Profile.php:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was not successful)"
msgstr "(Cha deach leis an ùrachadh)"
-#: src/Module/Contact/Profile.php:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was successful)"
msgstr "(Chaidh leis an ùrachadh)"
-#: src/Module/Contact/Profile.php:267 src/Module/Contact/Profile.php:448
+#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482
msgid "Suggest friends"
msgstr "Mol caraidean"
-#: src/Module/Contact/Profile.php:271
+#: src/Module/Contact/Profile.php:294
#, php-format
msgid "Network type: %s"
msgstr "Seòrsa an lìonraidh: %s"
-#: src/Module/Contact/Profile.php:276
+#: src/Module/Contact/Profile.php:299
msgid "Communications lost with this contact!"
msgstr "Chaidh an conaltradh leis an neach-aithne seo a chall!"
-#: src/Module/Contact/Profile.php:282
+#: src/Module/Contact/Profile.php:305
msgid "Fetch further information for feeds"
msgstr "Faigh barrachd fiosrachaidh dha na h-inbhirean"
-#: src/Module/Contact/Profile.php:284
+#: 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:287
+#: src/Module/Contact/Profile.php:310
msgid "Fetch information"
msgstr "Faigh am fiosrachadh"
-#: src/Module/Contact/Profile.php:288
+#: src/Module/Contact/Profile.php:311
msgid "Fetch keywords"
msgstr "Faigh na faclan-luirg"
-#: src/Module/Contact/Profile.php:289
+#: src/Module/Contact/Profile.php:312
msgid "Fetch information and keywords"
msgstr "Faigh am fiosrachadh ’s na faclan-luirg"
-#: src/Module/Contact/Profile.php:299 src/Module/Contact/Profile.php:304
-#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:315
+#: 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 "Gun sgàthanachadh"
-#: src/Module/Contact/Profile.php:300 src/Module/Contact/Profile.php:310
-#: src/Module/Contact/Profile.php:316
+#: 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 "Sgàthanaich ’na phost leam fhìn"
-#: src/Module/Contact/Profile.php:305 src/Module/Contact/Profile.php:311
+#: 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:328
+#: src/Module/Contact/Profile.php:353
msgid "Contact Information / Notes"
msgstr "Fiosrachadh an neach-aithne / Nòtaichean"
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:354
msgid "Contact Settings"
msgstr "Roghainnean an neach-aithne"
-#: src/Module/Contact/Profile.php:337
+#: src/Module/Contact/Profile.php:362
msgid "Contact"
msgstr "Neach-aithne"
-#: src/Module/Contact/Profile.php:341
+#: src/Module/Contact/Profile.php:366
msgid "Their personal note"
msgstr "An nòta pearsanta aca"
-#: src/Module/Contact/Profile.php:343
+#: src/Module/Contact/Profile.php:368
msgid "Edit contact notes"
msgstr "Deasaich notaichean an neach-aithne"
-#: src/Module/Contact/Profile.php:347
+#: src/Module/Contact/Profile.php:372
msgid "Block/Unblock contact"
msgstr "Bac/Dì-bhac an neach-aithne"
-#: src/Module/Contact/Profile.php:348
+#: 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:349
+#: src/Module/Contact/Profile.php:374
msgid "View conversations"
msgstr "Seall na còmhraidhean"
-#: src/Module/Contact/Profile.php:354
+#: src/Module/Contact/Profile.php:379
msgid "Last update:"
msgstr "An t-ùrachadh mu dheireadh:"
-#: src/Module/Contact/Profile.php:356
+#: src/Module/Contact/Profile.php:381
msgid "Update public posts"
msgstr "Ùraich na postaichean poblach"
-#: src/Module/Contact/Profile.php:358 src/Module/Contact/Profile.php:458
+#: 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:360
+#: src/Module/Contact/Profile.php:385
msgid "Awaiting connection acknowledge"
msgstr "A’ feitheamh air aithneachadh a’ cheangail"
-#: src/Module/Contact/Profile.php:361
+#: src/Module/Contact/Profile.php:386
msgid "Currently blocked"
msgstr "’Ga bhacadh an-dràsta"
-#: src/Module/Contact/Profile.php:362
+#: src/Module/Contact/Profile.php:387
msgid "Currently ignored"
msgstr "’Ga leigeil seachad an-dràsta"
-#: src/Module/Contact/Profile.php:363
+#: src/Module/Contact/Profile.php:388
msgid "Currently collapsed"
-msgstr ""
+msgstr "’Ga cho-theannachadh an-dràsta"
-#: src/Module/Contact/Profile.php:364
+#: src/Module/Contact/Profile.php:389
msgid "Currently archived"
msgstr "San tasg-lann an-dràsta"
-#: src/Module/Contact/Profile.php:367
+#: 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 "Falaich an neach-aithne seo o chàch"
-#: src/Module/Contact/Profile.php:367
+#: 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:368
+#: src/Module/Contact/Profile.php:395
msgid "Notification for new posts"
msgstr "Brathan air postaichean ùra"
-#: src/Module/Contact/Profile.php:368
+#: src/Module/Contact/Profile.php:395
msgid "Send a notification of every new post of this contact"
msgstr "Cuir brath airson gach post ùr aig an neach-aithne seo"
-#: src/Module/Contact/Profile.php:370
+#: src/Module/Contact/Profile.php:397
msgid "Keyword Deny List"
msgstr "Liosta-dhiùltaidh nam facal-luirg"
-#: src/Module/Contact/Profile.php:370
+#: 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 "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:388
+#: src/Module/Contact/Profile.php:415
#: src/Module/Settings/TwoFactor/Index.php:139
msgid "Actions"
msgstr "Gnìomhan"
-#: src/Module/Contact/Profile.php:390
+#: 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:396
+#: src/Module/Contact/Profile.php:423
msgid "Mirror postings from this contact"
msgstr "Sgàthanaich na postaichean on neach-aithne seo"
-#: src/Module/Contact/Profile.php:398
+#: 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:468
-msgid "Refetch contact data"
+#: src/Module/Contact/Profile.php:428
+msgid "Channel Settings"
msgstr ""
-#: src/Module/Contact/Profile.php:479
+#: 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 "Faigh dàta an neach-aithne a-rithist"
+
+#: src/Module/Contact/Profile.php:513
msgid "Toggle Blocked status"
msgstr "Toglaich stad a’ bhacaidh"
-#: src/Module/Contact/Profile.php:487
+#: src/Module/Contact/Profile.php:521
msgid "Toggle Ignored status"
msgstr "Toglaich staid na leigeil seachad"
-#: src/Module/Contact/Profile.php:495
+#: src/Module/Contact/Profile.php:529
msgid "Toggle Collapsed status"
-msgstr ""
+msgstr "Toglaich staid a’ cho-theannachaidh"
-#: src/Module/Contact/Profile.php:502 src/Module/Contact/Revoke.php:106
+#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106
msgid "Revoke Follow"
msgstr "Cùl-ghairm an leantainn"
-#: src/Module/Contact/Profile.php:504
+#: src/Module/Contact/Profile.php:538
msgid "Revoke the follow from this contact"
msgstr "Thoir air an neach-aithne seo nach lean iad ort tuilleadh"
@@ -6374,10 +6720,6 @@ msgstr "Droch-iarrtas."
msgid "Unknown contact."
msgstr "Neach-aithne nach aithne dhuinn."
-#: src/Module/Contact/Revoke.php:73 src/Module/Group.php:110
-msgid "Contact is deleted."
-msgstr "Chaidh an neach-aithne a sguabadh às."
-
#: src/Module/Contact/Revoke.php:77
msgid "Contact is being deleted."
msgstr "Tha an neach-aithne ’ga sguabadh às."
@@ -6425,102 +6767,54 @@ msgstr "Chan eil thu a’ leantainn air an neach-aithne tuilleadh"
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:74
+#: 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: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 "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:87
-msgid "Local Community"
-msgstr "Coimhearsnachd ionadail"
-
-#: src/Module/Conversation/Community.php:90
-msgid "Posts from local users on this server"
-msgstr "Postaichean o luchd-cleachdaidh ionadail an fhrithealaiche seo"
-
-#: src/Module/Conversation/Community.php:98
-msgid "Global Community"
-msgstr "Coimhearsnachd cho-naisgte"
-
-#: src/Module/Conversation/Community.php:101
-msgid "Posts from users of the whole federated network"
-msgstr "Postaichean on luchd-cleachdaidh air an lìonra cho-naisgte gu lèir"
-
-#: src/Module/Conversation/Community.php:134
-msgid "Own Contacts"
-msgstr "An luchd-aithne agadsa"
-
-#: src/Module/Conversation/Community.php:138
-msgid "Include"
-msgstr "Gabh a-staigh"
-
-#: src/Module/Conversation/Community.php:139
-msgid "Hide"
-msgstr "Falaich"
-
-#: src/Module/Conversation/Community.php:156 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
-msgid "No results."
-msgstr "Chan eil toradh ann."
-
-#: src/Module/Conversation/Community.php:212
+#: src/Module/Conversation/Community.php:179
msgid "Community option not available."
msgstr "Chan eil roghainn na coimhearsnachd ri fhaighinn."
-#: src/Module/Conversation/Community.php:228
+#: src/Module/Conversation/Community.php:195
msgid "Not available."
msgstr "Chan eil seo ri fhaighinn."
-#: src/Module/Conversation/Network.php:175
-msgid "No such group"
-msgstr "Chan eil am bhuidheann seo ann"
+#: src/Module/Conversation/Network.php:218
+msgid "No such circle"
+msgstr "Chan eil an cearcall seo ann"
-#: src/Module/Conversation/Network.php:179
+#: src/Module/Conversation/Network.php:222
#, php-format
-msgid "Group: %s"
-msgstr "Buidheann: %s"
+msgid "Circle: %s"
+msgstr "Cearcall: %s"
-#: src/Module/Conversation/Network.php:257
-msgid "Latest Activity"
-msgstr "A’ ghnìomhachd as ùire"
+#: src/Module/Conversation/Network.php:317
+msgid "Network feed not available."
+msgstr ""
-#: src/Module/Conversation/Network.php:260
-msgid "Sort by latest activity"
-msgstr "Seòrsaich a-rèir na gnìomhachd as ùire"
+#: src/Module/Conversation/Timeline.php:158
+msgid "Own Contacts"
+msgstr "An luchd-aithne agadsa"
-#: src/Module/Conversation/Network.php:265
-msgid "Latest Posts"
-msgstr "Na postaichean as ùire"
+#: src/Module/Conversation/Timeline.php:162
+msgid "Include"
+msgstr "Gabh a-staigh"
-#: src/Module/Conversation/Network.php:268
-msgid "Sort by post received date"
-msgstr "Seòrsaich a-rèir ceann-là faighinn nam post"
-
-#: src/Module/Conversation/Network.php:273
-msgid "Latest Creation"
-msgstr "An cruthachadh as ùire"
-
-#: src/Module/Conversation/Network.php:276
-msgid "Sort by post creation date"
-msgstr "Seòrsaich a-rèir ceann-là cruthachadh nam post"
-
-#: src/Module/Conversation/Network.php:281
-#: src/Module/Settings/Profile/Index.php:235
-msgid "Personal"
-msgstr "Pearsanta"
-
-#: src/Module/Conversation/Network.php:284
-msgid "Posts that mention or involve you"
-msgstr "Postaichean le iomradh ort no sa bheil thu an sàs"
-
-#: src/Module/Conversation/Network.php:289 src/Object/Post.php:357
-msgid "Starred"
-msgstr "Rionnag"
-
-#: src/Module/Conversation/Network.php:292
-msgid "Favourite Posts"
-msgstr "Na postaichean as annsa"
+#: src/Module/Conversation/Timeline.php:163
+msgid "Hide"
+msgstr "Falaich"
#: src/Module/Credits.php:44
msgid "Credits"
@@ -6740,7 +7034,7 @@ msgid "Twitter Source / Tweet URL (requires API key)"
msgstr "Bun-tùs Twitter / URL a’ tweet (feum air iuchair API)"
#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47
-#: src/Module/Settings/Profile/Index.php:144
+#: src/Module/Settings/Profile/Index.php:177
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"
@@ -6779,11 +7073,11 @@ 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"
@@ -6818,226 +7112,146 @@ msgstr "Stiùirich na cunntasan agad"
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:145
msgid "Select an identity to manage: "
-msgstr ""
+msgstr "Tagh dearbh-aithne ri stiùireadh: "
#: 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:90
msgid "Find on this site"
-msgstr ""
+msgstr "Lorg air an làrach seo"
#: src/Module/Directory.php:92
msgid "Results for:"
-msgstr ""
+msgstr "Toraidhean airson:"
#: src/Module/Directory.php:94
msgid "Site Directory"
-msgstr ""
+msgstr "Eòlaire na làraich"
#: src/Module/Filer/RemoveTag.php:105
msgid "Item was not deleted"
-msgstr ""
+msgstr "Cha deach an nì a sguabadh às"
#: src/Module/Filer/RemoveTag.php:115
msgid "Item was not removed"
-msgstr ""
+msgstr "Cha deach nì a thoirt air falbh"
#: src/Module/Filer/SaveTag.php:73
msgid "- select -"
-msgstr ""
+msgstr "– tagh –"
#: src/Module/FriendSuggest.php:82
msgid "Suggested contact not found."
-msgstr ""
+msgstr "Cha deach an neach-aithne molta a lorg."
#: src/Module/FriendSuggest.php:100
msgid "Friend suggestion sent."
-msgstr ""
+msgstr "Chaidh moladh caraid a chur."
#: src/Module/FriendSuggest.php:137
msgid "Suggest Friends"
-msgstr ""
+msgstr "Mol caraidean"
#: src/Module/FriendSuggest.php:140
#, php-format
msgid "Suggest a friend for %s"
-msgstr ""
+msgstr "Mol caraid dha %s"
-#: src/Module/Friendica.php:64
+#: src/Module/Friendica.php:82
msgid "Installed addons/apps:"
-msgstr ""
+msgstr "Aplacaidean/tuilleadain stàlaichte:"
-#: src/Module/Friendica.php:69
+#: src/Module/Friendica.php:87
msgid "No installed addons/apps"
-msgstr ""
+msgstr "Cha deach aplacaid/tuilleadan a stàladh"
-#: src/Module/Friendica.php:74
+#: 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:81
+#: 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:86
+#: 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:100
+#: 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:105
+#: 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:106
+#: 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:106
+#: src/Module/Friendica.php:124
msgid "the bugtracker at github"
-msgstr ""
+msgstr "tracaiche nam bugaichean air GitHub"
-#: src/Module/Friendica.php:107
+#: 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 ""
+msgstr "Airson beachdan, molaidhean is mssa. – cuir post-d gu “info” aig “friendi – dot – ca"
#: src/Module/HCard.php:45
msgid "No profile"
-msgstr ""
+msgstr "Chan eil pròifil ann"
#: 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:63
#, php-format
msgid "Welcome to %s"
-msgstr ""
+msgstr "Fàilte gu %s"
#: src/Module/Install.php:189
msgid "Friendica Communications Server - Setup"
-msgstr ""
+msgstr "Frithealaiche conaltradh Friendica – Suidheachadh"
#: src/Module/Install.php:200
msgid "System check"
-msgstr ""
+msgstr "Dearbhadh an t-siostaim"
#: 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 ""
+msgstr "Tha riatanas roghainneil nach deach a choileanadh"
#: src/Module/Install.php:204
msgid "OK"
-msgstr ""
+msgstr "Ceart ma-thà"
#: src/Module/Install.php:208
msgid "Next"
@@ -7045,120 +7259,120 @@ msgstr "Air adhart"
#: src/Module/Install.php:209
msgid "Check again"
-msgstr ""
+msgstr "Sgrùd a-rithist"
#: src/Module/Install.php:222
msgid "Base settings"
-msgstr ""
+msgstr "Roghainnean bunasach"
#: src/Module/Install.php:224
msgid "Base path to installation"
-msgstr ""
+msgstr "An t-slighe bhunasach dhan stàladh"
#: 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:229
msgid "The Friendica system URL"
-msgstr ""
+msgstr "URL siostam Friendica"
#: src/Module/Install.php:231
msgid ""
"Overwrite this field in case the system URL determination isn't right, "
"otherwise leave it as is."
-msgstr ""
+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:242
msgid "Database connection"
-msgstr ""
+msgstr "Ceangal stòir-dhàta"
#: 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: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: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:252
msgid "Database Server Name"
-msgstr ""
+msgstr "Ainm frithealaiche an stòir-dhàta"
#: 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:263
msgid "Database Login Password"
-msgstr ""
+msgstr "Facal-faire clàradh a-steach an stòir-dhàta"
#: 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:268
msgid "Database Name"
-msgstr ""
+msgstr "Ainm an stòir-dhàta"
#: 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:287
msgid "Site settings"
-msgstr ""
+msgstr "Roghainnean na làraich"
#: 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: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:304
msgid "System Language:"
-msgstr ""
+msgstr "Cànan an t-siostaim:"
#: 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: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:328
msgid "Installation finished"
-msgstr ""
+msgstr "Tha an stàladh deiseil"
#: src/Module/Install.php:348
msgid "What next
"
-msgstr ""
+msgstr "Dè a-nis?
"
#: 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:352
#, php-format
@@ -7166,16 +7380,16 @@ 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"
@@ -7209,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
@@ -7225,62 +7439,62 @@ 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:85
msgid "Please enter a post body."
-msgstr ""
+msgstr "Cuir a-steach bodhaig puist."
#: 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:122
msgid "Compose new personal note"
@@ -7294,29 +7508,25 @@ msgstr "Sgrìobh post ùr"
msgid "Visibility"
msgstr "Faicsinneachd"
-#: src/Module/Item/Compose.php:201
+#: src/Module/Item/Compose.php:203
msgid "Clear the location"
msgstr "Thoir an t-ionad air falbh"
-#: src/Module/Item/Compose.php:202
+#: src/Module/Item/Compose.php:204
msgid "Location services are unavailable on your device"
msgstr "Chan eil seirbheisean ionaid ri fhaighinn air an uidheam agad"
-#: 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 "Tha seirbheisean ionaid à comas. Thoir sùil air ceadan na làraich-lìn air an uidheam agad"
-#: 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/Display.php:136 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."
+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."
@@ -7335,16 +7545,16 @@ 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 ""
+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 ""
+msgstr "Feumaidh tu clàradh a-steach mus fhaigh thu cothrom air an duilleag seo."
#: src/Module/Media/Attachment/Browser.php:74
msgid "Files"
@@ -7373,20 +7583,13 @@ msgstr "Tha am faidhle nas motha na tha ceadaichte dhe %s"
msgid "File upload failed."
msgstr "Dh’fhàillig luchdadh suas an fhaidhle."
-#: src/Module/Media/Photo/Upload.php:153 src/Module/Media/Photo/Upload.php:154
+#: 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:187 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/Media/Photo/Upload.php:205 src/Module/Profile/Photos.php:243
+#: 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."
@@ -7419,41 +7622,41 @@ msgstr "Air a sguabadh às"
msgid "List of pending user deletions"
msgstr "Liosta nan cleachdaichean rin sguabadh às"
-#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:491
+#: 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:498
+#: 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:505
-msgid "Public Forum"
-msgstr "Fòram poblach"
+#: 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:512
+#: 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 Forum"
-msgstr "Fòram prìobhaideach"
+msgid "Private Group"
+msgstr "Buidheann prìobhaideach"
-#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:463
+#: 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:470
+#: 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:477
+#: 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:484
-msgid "Community Forum"
-msgstr "Fòram coimhearsnachd"
+#: 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"
@@ -7511,6 +7714,7 @@ 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"
@@ -7588,6 +7792,8 @@ 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"
@@ -7866,18 +8072,251 @@ msgstr "Cha deach an nì a lorg"
#: src/Module/Moderation/Item/Source.php:89
msgid "No source recorded"
-msgstr ""
+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 ""
+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/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"
@@ -7887,8 +8326,8 @@ msgid "Automatic Follower Account"
msgstr "Cunntas leantainn fèin-obrachail"
#: src/Module/Moderation/Summary.php:55
-msgid "Public Forum Account"
-msgstr "Cunntas fòraim phoblaich"
+msgid "Public Group Account"
+msgstr "Cunntas buidhinn phoblaich"
#: src/Module/Moderation/Summary.php:56
msgid "Automatic Friend Account"
@@ -7899,8 +8338,8 @@ msgid "Blog Account"
msgstr "Cunntas bloga"
#: src/Module/Moderation/Summary.php:58
-msgid "Private Forum Account"
-msgstr "Cunntas fòraim phrìobhaidich"
+msgid "Private Group Account"
+msgstr "Cunntas buidhinn phrìobhaidich"
#: src/Module/Moderation/Summary.php:78
msgid "Registered users"
@@ -8125,132 +8564,132 @@ 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:99
msgid "Hide Ignored Requests"
-msgstr ""
+msgstr "Falaich na h-iarrtasan a leig thu seachad"
#: 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:118
msgid "Suggested by:"
-msgstr ""
+msgstr "’Ga mholadh le:"
#: 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: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: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: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: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:156
msgid "Friend"
-msgstr ""
+msgstr "Caraid"
#: src/Module/Notifications/Introductions.php:157
msgid "Subscriber"
-msgstr ""
+msgstr "Fo-sgrìobhadh"
#: src/Module/Notifications/Introductions.php:216
msgid "No introductions."
-msgstr ""
+msgstr "Chan eil cur an aithne ann."
#: 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: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:66
msgid "Network Notifications"
-msgstr ""
+msgstr "Brathan lìonraidh"
#: src/Module/Notifications/Notifications.php:72
msgid "System Notifications"
-msgstr ""
+msgstr "Brathan an t-siostaim"
#: src/Module/Notifications/Notifications.php:78
msgid "Personal Notifications"
-msgstr ""
+msgstr "Brathan pearsanta"
#: src/Module/Notifications/Notifications.php:84
msgid "Home Notifications"
-msgstr ""
+msgstr "Brathan na dachaighe"
#: src/Module/Notifications/Notifications.php:140
msgid "Show unread"
-msgstr ""
+msgstr "Seall an fheadhainn gun leughadh"
-#: src/Module/Notifications/Ping.php:245
+#: src/Module/Notifications/Ping.php:246
msgid "{0} requested registration"
-msgstr ""
+msgstr "Dh’iarr {0} clàradh"
-#: src/Module/Notifications/Ping.php:254
+#: 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:51
msgid "Authorize application connection"
-msgstr ""
+msgstr "Ùghdarraich ceangal aplacaide"
#: 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:77
+#: 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:82
+#: src/Module/OAuth/Token.php:83
msgid "Invalid data or unknown client"
-msgstr ""
+msgstr "Dàta mì-dhligheach no cliant nach aithne dhuinn"
-#: src/Module/OAuth/Token.php:104
+#: 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"
@@ -8262,11 +8701,11 @@ msgstr "Cùm an uinneag seo fosgailte gus am bi e deiseil."
#: src/Module/OStatus/Repair.php:85
msgid "✔ Done"
-msgstr ""
+msgstr "✔ Deiseil"
#: src/Module/OStatus/Repair.php:86
msgid "No OStatus contacts to resubscribe to."
-msgstr ""
+msgstr "Chan eil neach-aithne OStatus ann airson fo-sgrìobhadh air a-rithist."
#: src/Module/OStatus/Subscribe.php:70
msgid "Subscribing to contacts"
@@ -8315,28 +8754,28 @@ 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:79
msgid "Model not found"
-msgstr ""
+msgstr "Cha deach am modail a lorg"
#: src/Module/PermissionTooltip.php:94
msgid "Unlisted"
-msgstr ""
+msgstr "Falaichte o liostaichean"
#: 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:121
msgid "Visible to:"
-msgstr ""
+msgstr "Ri fhaicinn do:"
#: src/Module/PermissionTooltip.php:204
#, php-format
msgid "Collection (%s)"
-msgstr ""
+msgstr "Cruinneachadh (%s)"
#: src/Module/PermissionTooltip.php:208
#, php-format
@@ -8346,55 +8785,55 @@ msgstr "Luchd-leantainn (%s)"
#: src/Module/PermissionTooltip.php:227
#, php-format
msgid "%d more"
-msgstr ""
+msgstr "%d eile"
#: src/Module/PermissionTooltip.php:231
#, php-format
msgid "To: %s
"
-msgstr ""
+msgstr "Gu: %s
"
#: src/Module/PermissionTooltip.php:234
#, php-format
msgid "CC: %s
"
-msgstr ""
+msgstr "CC: %s
"
#: src/Module/PermissionTooltip.php:237
#, php-format
msgid "BCC: %s
"
-msgstr ""
+msgstr "BCC: %s
"
#: src/Module/PermissionTooltip.php:240
#, php-format
msgid "Audience: %s
"
-msgstr ""
+msgstr "Èisteachd: %s
"
#: src/Module/PermissionTooltip.php:243
#, php-format
msgid "Attributed To: %s
"
-msgstr ""
+msgstr "Air a chur às leth: %s
"
-#: src/Module/Photo.php:129
+#: src/Module/Photo.php:130
msgid "The Photo is not available."
-msgstr ""
+msgstr "Chan eil an dealbh ri fhaighinn."
-#: src/Module/Photo.php:154
+#: 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:191
+#: 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:193
+#: 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/Post/Edit.php:82 src/Module/Post/Edit.php:96
msgid "Post not found."
-msgstr ""
+msgstr "Cha deach am post a lorg."
#: src/Module/Post/Edit.php:102
msgid "Edit post"
@@ -8428,34 +8867,41 @@ msgstr "Thoir air falbh taga an nì"
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:178
+#: 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/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:1032
-#: src/Protocol/OStatus.php:1007
+#: src/Module/Profile/Profile.php:354 src/Protocol/Feed.php:1098
+#: src/Protocol/OStatus.php:1009
#, php-format
msgid "%s's timeline"
-msgstr ""
+msgstr "An loidhne-ama aig %s"
#: src/Module/Profile/Conversations.php:107 src/Module/Profile/Profile.php:352
-#: src/Protocol/Feed.php:1036 src/Protocol/OStatus.php:1012
+#: src/Protocol/Feed.php:1102 src/Protocol/OStatus.php:1014
#, php-format
msgid "%s's posts"
-msgstr ""
+msgstr "Na postaichean aig %s"
#: src/Module/Profile/Conversations.php:108 src/Module/Profile/Profile.php:353
-#: src/Protocol/Feed.php:1039 src/Protocol/OStatus.php:1016
+#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018
#, php-format
msgid "%s's comments"
-msgstr ""
+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"
@@ -8475,84 +8921,84 @@ msgstr "Cha ghabh am frithealaiche ri luchdadh suas deilbh ùir aig an àm seo,
msgid "Image file is empty."
msgstr "Tha faidhle an deilbh falamh."
-#: src/Module/Profile/Photos.php:376
+#: 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: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:167 src/Module/Settings/Account.php:575
+#: src/Module/Profile/Profile.php:167
msgid "Full Name:"
-msgstr ""
+msgstr "An t-ainm slàn:"
#: src/Module/Profile/Profile.php:172
msgid "Member since:"
-msgstr ""
+msgstr "Ball o chionn:"
#: src/Module/Profile/Profile.php:178
msgid "j F, Y"
-msgstr ""
+msgstr "j F Y"
#: src/Module/Profile/Profile.php:179
msgid "j F"
-msgstr ""
+msgstr "j F"
#: src/Module/Profile/Profile.php:187 src/Util/Temporal.php:168
msgid "Birthday:"
-msgstr ""
+msgstr "Co-là breith:"
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
msgid "Age: "
-msgstr ""
+msgstr "Aois: "
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: 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:195
-#: src/Module/Settings/Profile/Index.php:246
+#: src/Module/Settings/Profile/Index.php:284
msgid "Description:"
msgstr "Tuairisgeul:"
#: src/Module/Profile/Profile.php:261
-msgid "Forums:"
-msgstr ""
+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:290
msgid "View as"
-msgstr ""
+msgstr "Seall mar"
#: src/Module/Profile/RemoteFollow.php:82
msgid "Profile unavailable."
-msgstr ""
+msgstr "Chan eil a’ phròifil ri fhaighinn."
#: src/Module/Profile/RemoteFollow.php:88
msgid "Invalid locator"
-msgstr ""
+msgstr "Lorgaire mì-dhligheach"
#: src/Module/Profile/RemoteFollow.php:95
msgid "The provided profile link doesn't seem to be valid"
-msgstr ""
+msgstr "Chan eil coltas dligheach air ceangal na pròifil a chaidh a sholar"
#: src/Module/Profile/RemoteFollow.php:100
msgid ""
@@ -8702,7 +9148,7 @@ 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
+#: src/Module/Settings/Account.php:567
msgid "New Password:"
msgstr ""
@@ -8711,7 +9157,7 @@ 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:567
+#: src/Module/Settings/Account.php:568
msgid "Confirm:"
msgstr ""
@@ -8738,11 +9184,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:156
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:156
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr ""
@@ -8798,7 +9244,7 @@ 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/Search/Acl.php:73
msgid "You must be logged in to use this module."
@@ -8929,24 +9375,24 @@ msgid "Update Password"
msgstr ""
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: src/Module/Settings/Account.php:569
msgid "Current Password:"
msgstr ""
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: 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:552
+#: 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:553
+#: src/Module/Settings/Account.php:554
msgid "Password length is limited to 72 characters."
msgstr ""
@@ -9070,99 +9516,99 @@ msgstr ""
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
+#: 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:363
+#: src/Module/Settings/Account.php:364
msgid "Contact CSV file upload error"
msgstr ""
-#: src/Module/Settings/Account.php:382
+#: src/Module/Settings/Account.php:383
msgid "Importing Contacts done"
msgstr ""
-#: src/Module/Settings/Account.php:395
+#: src/Module/Settings/Account.php:396
msgid "Relocate message has been send to your contacts"
msgstr "Chaidh teachdaireachd mun imrich a chur dhan luchd-aithne agad"
-#: src/Module/Settings/Account.php:412
+#: src/Module/Settings/Account.php:413
msgid "Unable to find your profile. Please contact your admin."
msgstr ""
-#: src/Module/Settings/Account.php:454
+#: src/Module/Settings/Account.php:455
msgid "Personal Page Subtypes"
msgstr ""
-#: src/Module/Settings/Account.php:455
-msgid "Community Forum Subtypes"
+#: src/Module/Settings/Account.php:456
+msgid "Community Group Subtypes"
msgstr ""
-#: src/Module/Settings/Account.php:465
+#: src/Module/Settings/Account.php:466
msgid "Account for a personal profile."
msgstr ""
-#: src/Module/Settings/Account.php:472
+#: src/Module/Settings/Account.php:473
msgid ""
"Account for an organisation that automatically approves contact requests as "
"\"Followers\"."
msgstr ""
-#: src/Module/Settings/Account.php:479
+#: 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:486
+#: src/Module/Settings/Account.php:487
msgid "Account for community discussions."
msgstr ""
-#: src/Module/Settings/Account.php:493
+#: 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:500
+#: 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:507
+#: src/Module/Settings/Account.php:508
msgid "Automatically approves all contact requests."
msgstr ""
-#: src/Module/Settings/Account.php:514
+#: 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:519
-msgid "Private Forum [Experimental]"
+#: src/Module/Settings/Account.php:520
+msgid "Private Group [Experimental]"
msgstr ""
-#: src/Module/Settings/Account.php:521
+#: 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:530
+#: src/Module/Settings/Account.php:531
msgid "OpenID:"
msgstr ""
-#: src/Module/Settings/Account.php:530
+#: src/Module/Settings/Account.php:531
msgid "(Optional) Allow this OpenID to login to this account."
msgstr ""
-#: src/Module/Settings/Account.php:538
+#: src/Module/Settings/Account.php:539
msgid "Publish your profile in your local site directory?"
msgstr ""
-#: src/Module/Settings/Account.php:538
+#: src/Module/Settings/Account.php:539
#, php-format
msgid ""
"Your profile will be published in this node's local "
@@ -9170,89 +9616,94 @@ msgid ""
" system settings."
msgstr ""
-#: src/Module/Settings/Account.php:544
+#: 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:557
+#: src/Module/Settings/Account.php:558
msgid "Account Settings"
msgstr ""
-#: src/Module/Settings/Account.php:558
+#: 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 ""
-#: 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: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 ""
-#: src/Module/Settings/Account.php:574
+#: src/Module/Settings/Account.php:575
msgid "Basic Settings"
msgstr ""
#: src/Module/Settings/Account.php:576
-msgid "Email Address:"
+#: 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: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 "An gabh a’ phròifil agad a lorg gu co-naisgte?"
-#: 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 "
@@ -9260,43 +9711,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
+#: src/Module/Settings/Account.php:589
msgid "Hide your public content from anonymous viewers"
msgstr ""
-#: src/Module/Settings/Account.php:588
+#: 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:589
+#: 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 "
@@ -9304,233 +9755,241 @@ 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 "’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: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 "Falbhaidh an ùine air postaichean le rionnag riutha"
-#: 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 "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: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
-msgid "You receive an introduction"
-msgstr ""
-
-#: src/Module/Settings/Account.php:611
-msgid "Your introductions are confirmed"
-msgstr ""
-
#: src/Module/Settings/Account.php:612
+msgid "You receive an introduction"
+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 "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:618
+#: src/Module/Settings/Account.php:620
msgid "Create a desktop notification when:"
msgstr ""
-#: src/Module/Settings/Account.php:619
+#: src/Module/Settings/Account.php:621
msgid "Someone tagged you"
msgstr ""
-#: src/Module/Settings/Account.php:620
+#: src/Module/Settings/Account.php:622
msgid "Someone directly commented on your post"
msgstr ""
-#: src/Module/Settings/Account.php:621
+#: 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:621 src/Module/Settings/Account.php:622
+#: 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:622
+#: src/Module/Settings/Account.php:624
msgid "Someone shared your content"
msgstr "Cho-roinn cuideigin an t-susbaint agad"
-#: src/Module/Settings/Account.php:623
+#: src/Module/Settings/Account.php:625
msgid "Someone commented in your thread"
msgstr ""
-#: src/Module/Settings/Account.php:624
+#: src/Module/Settings/Account.php:626
msgid "Someone commented in a thread where you commented"
msgstr ""
-#: src/Module/Settings/Account.php:625
+#: src/Module/Settings/Account.php:627
msgid "Someone commented in a thread where you interacted"
msgstr "Chuir cuideigin beachd ri snàithlean san do rinn thu co-luadar"
-#: src/Module/Settings/Account.php:627
+#: src/Module/Settings/Account.php:629
msgid "Activate desktop notifications"
msgstr ""
-#: src/Module/Settings/Account.php:627
+#: src/Module/Settings/Account.php:629
msgid "Show desktop popup on new notifications"
msgstr ""
-#: src/Module/Settings/Account.php:631
+#: src/Module/Settings/Account.php:633
msgid "Text-only notification emails"
msgstr ""
-#: src/Module/Settings/Account.php:633
+#: src/Module/Settings/Account.php:635
msgid "Send text only notification emails, without the html part"
msgstr ""
-#: src/Module/Settings/Account.php:637
+#: src/Module/Settings/Account.php:639
msgid "Show detailled notifications"
msgstr ""
-#: src/Module/Settings/Account.php:639
+#: 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:643
+#: src/Module/Settings/Account.php:645
msgid "Show notifications of ignored contacts"
msgstr ""
-#: src/Module/Settings/Account.php:645
+#: 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:648
+#: src/Module/Settings/Account.php:650
msgid "Advanced Account/Page Type Settings"
msgstr ""
-#: src/Module/Settings/Account.php:649
+#: src/Module/Settings/Account.php:651
msgid "Change the behaviour of this account for special situations"
msgstr ""
-#: src/Module/Settings/Account.php:652
+#: src/Module/Settings/Account.php:654
msgid "Import Contacts"
msgstr ""
-#: src/Module/Settings/Account.php:653
+#: 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:654
+#: src/Module/Settings/Account.php:656
msgid "Upload File"
msgstr ""
-#: src/Module/Settings/Account.php:657
+#: src/Module/Settings/Account.php:659
msgid "Relocate"
msgstr "Imrich"
-#: src/Module/Settings/Account.php:658
+#: 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:659
+#: src/Module/Settings/Account.php:661
msgid "Resend relocate message to contacts"
msgstr "Cuir teachdaireachd mun imrich dhan neach-aithne"
@@ -9668,7 +10127,7 @@ msgstr ""
msgid ""
"When activated, added links at the end of the post react the same way as "
"added links in the web interface."
-msgstr ""
+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"
@@ -9739,224 +10198,250 @@ msgstr "Gluais gu pasgan"
msgid "Move to folder:"
msgstr "Gluais gu pasgan:"
-#: src/Module/Settings/Delegation.php:52
-msgid "Delegation successfully granted."
-msgstr ""
-
#: src/Module/Settings/Delegation.php:54
+msgid "Delegation successfully granted."
+msgstr "Chaidh neach-ionaid a dhèanamh dheth."
+
+#: src/Module/Settings/Delegation.php:56
msgid "Parent user not found, unavailable or password doesn't match."
msgstr ""
-#: src/Module/Settings/Delegation.php:58
+#: 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:80
-#: src/Module/Settings/Delegation.php:102
+#: 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:94
+#: 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:142
+#: src/Module/Settings/Delegation.php:144
msgid "No parent user"
msgstr ""
-#: src/Module/Settings/Delegation.php:153
-#: src/Module/Settings/Delegation.php:164
+#: src/Module/Settings/Delegation.php:155
+#: src/Module/Settings/Delegation.php:166
msgid "Parent User"
msgstr ""
-#: src/Module/Settings/Delegation.php:161
+#: src/Module/Settings/Delegation.php:163
msgid "Additional Accounts"
msgstr ""
-#: src/Module/Settings/Delegation.php:162
+#: 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:163
+#: src/Module/Settings/Delegation.php:165
msgid "Register an additional account"
msgstr ""
-#: src/Module/Settings/Delegation.php:167
+#: 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:171
-msgid "Delegates"
-msgstr ""
-
#: src/Module/Settings/Delegation.php:173
+msgid "Delegates"
+msgstr "Luchd-ionaid"
+
+#: 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:174
-msgid "Existing Page Delegates"
-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:176
-msgid "Potential Delegates"
-msgstr ""
+msgid "Existing Page Delegates"
+msgstr "Luchd-ionaid làithreach na duilleige"
-#: src/Module/Settings/Delegation.php:179
+#: src/Module/Settings/Delegation.php:178
+msgid "Potential Delegates"
+msgstr "Tagraichean luchd-ionaid"
+
+#: src/Module/Settings/Delegation.php:181
msgid "Add"
msgstr ""
-#: src/Module/Settings/Delegation.php:180
+#: src/Module/Settings/Delegation.php:182
msgid "No entries."
msgstr ""
-#: src/Module/Settings/Display.php:137
+#: src/Module/Settings/Display.php:146
msgid "The theme you chose isn't available."
-msgstr ""
+msgstr "Chan eil an t-ùrlar a thagh thu ri fhaighinn."
-#: src/Module/Settings/Display.php:177
+#: src/Module/Settings/Display.php:186
#, php-format
msgid "%s - (Unsupported)"
msgstr ""
-#: src/Module/Settings/Display.php:212
+#: src/Module/Settings/Display.php:221
msgid "No preview"
msgstr ""
-#: src/Module/Settings/Display.php:213
+#: src/Module/Settings/Display.php:222
msgid "No image"
msgstr ""
-#: src/Module/Settings/Display.php:214
+#: src/Module/Settings/Display.php:223
msgid "Small Image"
msgstr ""
-#: src/Module/Settings/Display.php:215
+#: src/Module/Settings/Display.php:224
msgid "Large Image"
msgstr ""
-#: src/Module/Settings/Display.php:246
+#: src/Module/Settings/Display.php:259
msgid "Display Settings"
msgstr ""
-#: src/Module/Settings/Display.php:248
+#: src/Module/Settings/Display.php:261
msgid "General Theme Settings"
-msgstr ""
+msgstr "Roghainnean coitcheann an ùrlair"
-#: src/Module/Settings/Display.php:249
+#: src/Module/Settings/Display.php:262
msgid "Custom Theme Settings"
-msgstr ""
+msgstr "Roghainnean gnàthaichte an ùrlair"
-#: src/Module/Settings/Display.php:250
+#: src/Module/Settings/Display.php:263
msgid "Content Settings"
msgstr ""
-#: src/Module/Settings/Display.php:251 view/theme/duepuntozero/config.php:86
+#: 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:257
+#: src/Module/Settings/Display.php:272
msgid "Display Theme:"
-msgstr ""
+msgstr "Ùrlar taisbeanaidh:"
-#: src/Module/Settings/Display.php:258
+#: src/Module/Settings/Display.php:273
msgid "Mobile Theme:"
-msgstr ""
+msgstr "Ùrlar mobile:"
-#: src/Module/Settings/Display.php:261
+#: src/Module/Settings/Display.php:276
msgid "Number of items to display per page:"
msgstr ""
-#: src/Module/Settings/Display.php:261 src/Module/Settings/Display.php:262
+#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277
msgid "Maximum of 100 items"
msgstr ""
-#: src/Module/Settings/Display.php:262
+#: 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:263
+#: src/Module/Settings/Display.php:278
msgid "Update browser every xx seconds"
msgstr ""
-#: src/Module/Settings/Display.php:263
+#: src/Module/Settings/Display.php:278
msgid "Minimum of 10 seconds. Enter -1 to disable it."
msgstr ""
-#: src/Module/Settings/Display.php:264
+#: src/Module/Settings/Display.php:279
msgid "Display emoticons"
msgstr ""
-#: src/Module/Settings/Display.php:264
+#: src/Module/Settings/Display.php:279
msgid "When enabled, emoticons are replaced with matching symbols."
msgstr ""
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:280
msgid "Infinite scroll"
msgstr ""
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:280
msgid "Automatic fetch new items when reaching the page end."
msgstr ""
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:281
msgid "Enable Smart Threading"
msgstr ""
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:281
msgid "Enable the automatic suppression of extraneous thread indentation."
msgstr ""
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:282
msgid "Display the Dislike feature"
msgstr "Seall an gleus “Cha toigh leam seo”"
-#: src/Module/Settings/Display.php:267
+#: 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:268
+#: src/Module/Settings/Display.php:283
msgid "Display the resharer"
msgstr "Seall cò rinn an co-roinneadh"
-#: src/Module/Settings/Display.php:268
+#: 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:269
+#: src/Module/Settings/Display.php:284
msgid "Stay local"
msgstr ""
-#: src/Module/Settings/Display.php:269
+#: 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:270
+#: src/Module/Settings/Display.php:285
msgid "Link preview mode"
msgstr ""
-#: src/Module/Settings/Display.php:270
+#: 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:272
+#: 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:273
+#: 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 "Gleusan a bharrachd"
@@ -9969,154 +10454,150 @@ msgstr "Aplacaidean ceangailte"
msgid "Remove authorization"
msgstr "Thoir an t-ùghdarrachadh air falbh"
-#: src/Module/Settings/Profile/Index.php:84
-msgid "Profile Name is required."
+#: src/Module/Settings/Profile/Index.php:116
+msgid "Display Name is required."
msgstr ""
-#: src/Module/Settings/Profile/Index.php:134
+#: src/Module/Settings/Profile/Index.php:167
msgid "Profile couldn't be updated."
msgstr ""
-#: src/Module/Settings/Profile/Index.php:175
-#: src/Module/Settings/Profile/Index.php:195
+#: src/Module/Settings/Profile/Index.php:205
+#: src/Module/Settings/Profile/Index.php:226
msgid "Label:"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:176
-#: src/Module/Settings/Profile/Index.php:196
+#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:227
msgid "Value:"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:186
-#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:217
+#: src/Module/Settings/Profile/Index.php:238
msgid "Field Permissions"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:187
-#: src/Module/Settings/Profile/Index.php:207
+#: 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:193
+#: src/Module/Settings/Profile/Index.php:224
msgid "Add a new profile field"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:216
+#: 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:218
+#: 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:228
+#: src/Module/Settings/Profile/Index.php:255
msgid "Profile Actions"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:229
+#: src/Module/Settings/Profile/Index.php:256
msgid "Edit Profile Details"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:231
+#: src/Module/Settings/Profile/Index.php:258
msgid "Change Profile Photo"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:236
+#: src/Module/Settings/Profile/Index.php:261
msgid "Profile picture"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:237
+#: src/Module/Settings/Profile/Index.php:262
msgid "Location"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:238 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 ""
-#: src/Module/Settings/Profile/Index.php:239
+#: src/Module/Settings/Profile/Index.php:264
msgid "Custom Profile Fields"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:241 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:245
-msgid "Display name:"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:248
-msgid "Street Address:"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:249
-msgid "Locality/City:"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:250
-msgid "Region/State:"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:251
-msgid "Postal/Zip Code:"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:252
-msgid "Country:"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:254
-msgid "XMPP (Jabber) address:"
-msgstr ""
-
-#: 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 ""
-
-#: src/Module/Settings/Profile/Index.php:257
-msgid "Public Keywords:"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:257
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:258
-msgid "Private Keywords:"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:258
-msgid "(Used for searching profiles, never shown to others)"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:259
+#: src/Module/Settings/Profile/Index.php:266
#, php-format
msgid ""
"Custom fields appear on your profile page.
\n"
"\t\t\t\tYou can use BBCodes in the field values.
\n"
"\t\t\t\tReorder by dragging the field title.
\n"
"\t\t\t\tEmpty the label field to remove a custom field.
\n"
-"\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.
"
+"\t\t\t\tNon-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 ""
+
+#: 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
@@ -10229,6 +10710,42 @@ msgstr "Bheir seo air falbh an cunntas agad gu tur. Nuair a bhios sin air a thac
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
@@ -10390,11 +10907,11 @@ msgstr ""
#: 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 ""
+msgstr "Stiùir brabhsairean earbsach"
#: src/Module/Settings/TwoFactor/Index.php:146
msgid "Finish app configuration"
@@ -10550,20 +11067,41 @@ msgid ""
" 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 "Not Found"
+msgid ""
+"This node has blocked the top-level author or the author of the shared post."
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"
-"
"
+"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
@@ -10575,7 +11113,7 @@ msgstr ""
msgid "Exception thrown in %s:%d"
msgstr ""
-#: src/Module/Tos.php:57 src/Module/Tos.php:106
+#: 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"
@@ -10588,14 +11126,14 @@ msgid ""
"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 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:107
+#: 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:108
+#: 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"
@@ -10606,11 +11144,11 @@ msgid ""
"from the nodes of the communication partners."
msgstr ""
-#: src/Module/Tos.php:62 src/Module/Tos.php:105
+#: src/Module/Tos.php:63 src/Module/Tos.php:106
msgid "Privacy Statement"
msgstr ""
-#: src/Module/Tos.php:102
+#: src/Module/Tos.php:103
msgid "Rules"
msgstr ""
@@ -10618,6 +11156,10 @@ msgstr ""
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."
@@ -10666,11 +11208,11 @@ msgstr "Mearachd! Chan eil dàta mun tionndadh san fhaidhle! Nach e faidhle cunn
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:263
+#: src/Module/User/Import.php:267
msgid "User creation error"
msgstr "Mearachd a’ cruthachadh a’ chleachdaiche"
-#: src/Module/User/Import.php:312
+#: src/Module/User/Import.php:316
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
@@ -10679,11 +11221,11 @@ 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:361
+#: src/Module/User/Import.php:365
msgid "User profile creation error"
msgstr "Mearachd a’ cruthachadh pròifil a’ chleachdaiche"
-#: src/Module/User/Import.php:412
+#: 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"
@@ -10817,15 +11359,15 @@ 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."
-msgstr "Nuair a bhios caraid no dhà agad, cuir rian orra ann am buidhnean conaltraidh prìobhaideach o bhàr-taobh duilleag an luchd-aithne agad agus ’s urrainn dhut co-luadar leis gach buidheann gu prìobhaideach air duilleag an lìonraidh agad an uairsin."
+"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?"
@@ -10873,17 +11415,17 @@ msgstr "Cha toigh le %s am post aig %s"
#: 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: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: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:174
#, php-format
@@ -10981,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
@@ -11118,17 +11660,17 @@ msgstr "Chuir %1$s post ris [url=%2$s]a’ bhalla agad[/url]"
#: 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: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: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:378
#: src/Navigation/Notifications/Repository/Notify.php:424
@@ -11139,7 +11681,7 @@ msgstr ""
#: 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:387
#, php-format
@@ -11332,404 +11874,413 @@ msgstr ""
msgid "%s posted an update."
msgstr ""
-#: src/Object/Post.php:135
+#: src/Object/Post.php:138
msgid "Private Message"
msgstr "Teachdaireachd phrìobhaideach"
-#: src/Object/Post.php:139
+#: src/Object/Post.php:142
msgid "Public Message"
msgstr "Teachdaireachd phoblach"
-#: src/Object/Post.php:143
+#: src/Object/Post.php:146
msgid "Unlisted Message"
msgstr "Teachdaireachd fhalaichte o liostaichean"
-#: src/Object/Post.php:178
+#: src/Object/Post.php:181
msgid "This entry was edited"
msgstr "Chaidh an nì seo a dheasachadh"
-#: src/Object/Post.php:206
+#: 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:265
+#: src/Object/Post.php:268
#, php-format
msgid "Block %s"
msgstr "Bac %s"
-#: src/Object/Post.php:270
+#: src/Object/Post.php:273
#, php-format
msgid "Ignore %s"
msgstr ""
-#: src/Object/Post.php:275
+#: 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:310
+#: src/Object/Post.php:333
msgid "I will attend"
msgstr "Bidh mi an làthair"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I will not attend"
msgstr "Cha bhi mi ann"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I might attend"
msgstr "Dh’fhaoidte gum bi mi an làthair"
-#: src/Object/Post.php:340
+#: src/Object/Post.php:363
msgid "Ignore thread"
msgstr "Leig seachad an snàithlean"
-#: src/Object/Post.php:341
+#: src/Object/Post.php:364
msgid "Unignore thread"
msgstr "Na leig seachad an snàithlean tuilleadh"
-#: src/Object/Post.php:342
+#: src/Object/Post.php:365
msgid "Toggle ignore status"
msgstr "Toglaich staid na leigeil seachad"
-#: src/Object/Post.php:352
+#: src/Object/Post.php:375
msgid "Add star"
msgstr "Cuir rionnag ris"
-#: src/Object/Post.php:353
+#: src/Object/Post.php:376
msgid "Remove star"
msgstr "Thoir an rionnag air falbh"
-#: src/Object/Post.php:354
+#: src/Object/Post.php:377
msgid "Toggle star status"
msgstr "Toglaich staid na rionnaige"
-#: src/Object/Post.php:365
+#: src/Object/Post.php:388
msgid "Pin"
msgstr "Prìnich"
-#: src/Object/Post.php:366
+#: src/Object/Post.php:389
msgid "Unpin"
msgstr "Dì-phrìnich"
-#: src/Object/Post.php:367
+#: src/Object/Post.php:390
msgid "Toggle pin status"
msgstr "Toglaich staid a’ phrìneachaidh"
-#: src/Object/Post.php:370
+#: src/Object/Post.php:393
msgid "Pinned"
msgstr "Prìnichte"
-#: src/Object/Post.php:375
+#: src/Object/Post.php:398
msgid "Add tag"
msgstr "Cuir taga ris"
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote share this"
msgstr "Co-roinn seo le iomradh"
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote Share"
msgstr "Iomradh"
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare this"
msgstr "Co-roinn seo às ùr"
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare"
msgstr "Co-roinn"
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Cancel your Reshare"
msgstr "Sguir dhen cho-roinneadh agad"
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Unshare"
msgstr "Na co-roinn"
-#: src/Object/Post.php:443
+#: src/Object/Post.php:466
#, php-format
msgid "%s (Received %s)"
msgstr "%s (air fhaighinn %s)"
-#: src/Object/Post.php:448
+#: 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:448
+#: src/Object/Post.php:472
msgid "Remote comment"
msgstr "Beachd cèin"
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via ..."
msgstr "Co-roinn slighe…"
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via external services"
msgstr "Co-roinn slighe seirbheise cèine"
-#: src/Object/Post.php:498
+#: src/Object/Post.php:523
msgid "to"
msgstr "gu"
-#: src/Object/Post.php:499
+#: src/Object/Post.php:524
msgid "via"
msgstr "slighe"
-#: src/Object/Post.php:500
+#: src/Object/Post.php:525
msgid "Wall-to-Wall"
msgstr "Balla gu balla"
-#: src/Object/Post.php:501
+#: src/Object/Post.php:526
msgid "via Wall-To-Wall:"
msgstr "slighe balla bu balla:"
-#: src/Object/Post.php:545
+#: src/Object/Post.php:573
#, php-format
msgid "Reply to %s"
msgstr "Freagair gu %s"
-#: src/Object/Post.php:548
+#: src/Object/Post.php:576
msgid "More"
msgstr "Barrachd"
-#: src/Object/Post.php:566
+#: src/Object/Post.php:595
msgid "Notifier task is pending"
msgstr ""
-#: src/Object/Post.php:567
+#: src/Object/Post.php:596
msgid "Delivery to remote servers is pending"
msgstr ""
-#: src/Object/Post.php:568
+#: src/Object/Post.php:597
msgid "Delivery to remote servers is underway"
msgstr ""
-#: src/Object/Post.php:569
+#: src/Object/Post.php:598
msgid "Delivery to remote servers is mostly done"
msgstr ""
-#: src/Object/Post.php:570
+#: src/Object/Post.php:599
msgid "Delivery to remote servers is done"
msgstr ""
-#: src/Object/Post.php:590
+#: 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:591
+#: src/Object/Post.php:620
msgid "Show more"
-msgstr ""
+msgstr "Seall barrachd dheth"
-#: src/Object/Post.php:592
+#: src/Object/Post.php:621
msgid "Show fewer"
-msgstr ""
+msgstr "Seall nas lugha dheth"
-#: src/Object/Post.php:628
+#: src/Object/Post.php:657
#, php-format
msgid "Reshared by: %s"
-msgstr ""
+msgstr "’Ga cho-roinneadh le: %s "
-#: src/Object/Post.php:633
+#: src/Object/Post.php:662
#, php-format
msgid "Viewed by: %s"
-msgstr ""
+msgstr "Air a choimhead air le: %s"
-#: src/Object/Post.php:638
+#: src/Object/Post.php:667
#, php-format
msgid "Liked by: %s"
-msgstr ""
+msgstr "’S toil le %s seo"
-#: src/Object/Post.php:643
+#: src/Object/Post.php:672
#, php-format
msgid "Disliked by: %s"
-msgstr ""
+msgstr "Cha toil le %s seo"
-#: src/Object/Post.php:648
+#: src/Object/Post.php:677
#, php-format
msgid "Attended by: %s"
-msgstr ""
+msgstr "An làthair: %s"
-#: src/Object/Post.php:653
+#: src/Object/Post.php:682
#, php-format
msgid "Maybe attended by: %s"
-msgstr ""
+msgstr "An làthair ’s dòcha: %s"
-#: src/Object/Post.php:658
+#: src/Object/Post.php:687
#, php-format
msgid "Not attended by: %s"
-msgstr ""
+msgstr "Gun a bhith an làthair: %s"
-#: src/Object/Post.php:663
+#: src/Object/Post.php:692
#, php-format
msgid "Reacted with %s by: %s"
-msgstr ""
+msgstr "Chaidh freagairt le %s le: %s"
#: src/Protocol/Delivery.php:547
msgid "(no subject)"
-msgstr ""
+msgstr "(gun chuspair)"
-#: src/Protocol/OStatus.php:1388
+#: 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:1389
+#: src/Protocol/OStatus.php:1391
msgid "following"
msgstr ""
-#: src/Protocol/OStatus.php:1392
+#: 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:1393
+#: 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 "Ceumaidh cead sgrìobhaidh dhan phasgan %s a bhith aig an fhrithealaiche-lìn."
#: src/Security/Authentication.php:227
msgid "Login failed."
-msgstr ""
+msgstr "Dh’fhàillig leis a’ chlàradh a-steach."
#: 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:391
#, php-format
msgid "Welcome %s"
-msgstr ""
+msgstr "Fàilte ort, %s"
#: 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: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:172
msgid "YYYY-MM-DD or MM-DD"
-msgstr ""
+msgstr "YYYY-MM-DD no MM-DD"
#: 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:320 src/Util/Temporal.php:329
msgid "never"
-msgstr ""
+msgstr "chan ann idir"
#: src/Util/Temporal.php:343
msgid "less than a second ago"
-msgstr ""
+msgstr "nas lugha na diog air ais"
#: src/Util/Temporal.php:352
msgid "year"
-msgstr ""
+msgstr "bhliadhna"
#: src/Util/Temporal.php:352
msgid "years"
-msgstr ""
+msgstr "bliadhna(ichean)"
#: src/Util/Temporal.php:353
msgid "months"
-msgstr ""
+msgstr "mìos(an)"
#: src/Util/Temporal.php:354
msgid "weeks"
-msgstr ""
+msgstr "seachdain(ean)"
#: src/Util/Temporal.php:355
msgid "days"
-msgstr ""
+msgstr "là(ithean)"
#: src/Util/Temporal.php:356
msgid "hour"
-msgstr ""
+msgstr "uair a thìde"
#: src/Util/Temporal.php:356
msgid "hours"
-msgstr ""
+msgstr "uair(ean) a thìde"
#: src/Util/Temporal.php:357
msgid "minute"
-msgstr ""
+msgstr "mhionaid"
#: src/Util/Temporal.php:357
msgid "minutes"
-msgstr ""
+msgstr "mionaid(ean)"
#: src/Util/Temporal.php:358
msgid "second"
-msgstr ""
+msgstr "dhiog"
#: src/Util/Temporal.php:358
msgid "seconds"
-msgstr ""
+msgstr "diog(an)"
#: src/Util/Temporal.php:367
#, php-format
msgid "in %1$d %2$s"
-msgstr ""
+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/PushSubscription.php:110
msgid "Notification from Friendica"
-msgstr ""
+msgstr "Brath o Friendica"
#: src/Worker/PushSubscription.php:111
msgid "Empty Post"
-msgstr ""
+msgstr "Post falamh"
#: view/theme/duepuntozero/config.php:68
msgid "default"
-msgstr ""
+msgstr "bunaiteach"
#: view/theme/duepuntozero/config.php:69
msgid "greenzero"
@@ -11757,109 +12308,109 @@ msgstr ""
#: view/theme/duepuntozero/config.php:87
msgid "Variations"
-msgstr ""
+msgstr "Fiamhan"
#: view/theme/frio/config.php:153
msgid "Light (Accented)"
-msgstr ""
+msgstr "Soilleir (soilleirichte)"
#: view/theme/frio/config.php:154
msgid "Dark (Accented)"
-msgstr ""
+msgstr "Dorcha (soilleirichte)"
#: view/theme/frio/config.php:155
msgid "Black (Accented)"
-msgstr ""
+msgstr "Dubh (soilleirichte)"
#: view/theme/frio/config.php:167
msgid "Note"
-msgstr ""
+msgstr "An aire"
#: 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:173
msgid "Custom"
-msgstr ""
+msgstr "Gnàthaichte"
#: view/theme/frio/config.php:174
msgid "Legacy"
-msgstr ""
+msgstr "Dìleabach"
#: view/theme/frio/config.php:175
msgid "Accented"
-msgstr ""
+msgstr "Soilleirichte"
#: view/theme/frio/config.php:176
msgid "Select color scheme"
-msgstr ""
+msgstr "Tagh sgeama nan dathan"
#: view/theme/frio/config.php:177
msgid "Select scheme accent"
-msgstr ""
+msgstr "Tagh soilleireachadh an sgeama"
#: view/theme/frio/config.php:177
msgid "Blue"
-msgstr ""
+msgstr "Gorm"
#: view/theme/frio/config.php:177
msgid "Red"
-msgstr ""
+msgstr "Dearg"
#: view/theme/frio/config.php:177
msgid "Purple"
-msgstr ""
+msgstr "Purpaidh"
#: view/theme/frio/config.php:177
msgid "Green"
-msgstr ""
+msgstr "Uaine"
#: view/theme/frio/config.php:177
msgid "Pink"
-msgstr ""
+msgstr "Pinc"
#: 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:178
msgid ""
"You can copy this string to share your theme with others. Pasting here "
"applies the schemestring"
-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 ""
+msgstr "Dath cùlaibh bàr na seòladaireachd"
#: view/theme/frio/config.php:180
msgid "Navigation bar icon color "
-msgstr ""
+msgstr "Dath ìomhaigheagan bàr na seòladaireachd "
#: view/theme/frio/config.php:181
msgid "Link color"
-msgstr ""
+msgstr "Dath nan ceanglaichean"
#: view/theme/frio/config.php:182
msgid "Set the background color"
-msgstr ""
+msgstr "Suidhich dath a’ chùlaibh"
#: view/theme/frio/config.php:183
msgid "Content background opacity"
-msgstr ""
+msgstr "Trìd-dhoilleireachd cùlaibh na susbainte"
#: view/theme/frio/config.php:184
msgid "Set the background image"
-msgstr ""
+msgstr "Suidhich dealbh a’ chùlaibh"
#: view/theme/frio/config.php:185
msgid "Background image style"
-msgstr ""
+msgstr "Stoidhle dealbh a’ chùlaibh"
#: view/theme/frio/config.php:188
msgid "Always open Compose page"
-msgstr ""
+msgstr "Fosgail duilleag an sgrìobhaidh an-còmhnaidh"
#: view/theme/frio/config.php:188
msgid ""
@@ -11878,7 +12429,7 @@ msgstr ""
#: 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"
@@ -11957,7 +12508,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
@@ -11976,7 +12527,7 @@ msgstr ""
msgid "Community Pages"
msgstr ""
-#: view/theme/vier/config.php:139 view/theme/vier/theme.php:149
+#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148
msgid "Community Profiles"
msgstr ""
@@ -11984,7 +12535,7 @@ msgstr ""
msgid "Help or @NewHere ?"
msgstr ""
-#: view/theme/vier/config.php:141 view/theme/vier/theme.php:320
+#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319
msgid "Connect Services"
msgstr ""
@@ -11992,10 +12543,10 @@ msgstr ""
msgid "Find Friends"
msgstr ""
-#: view/theme/vier/config.php:143 view/theme/vier/theme.php:176
+#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175
msgid "Last users"
msgstr ""
-#: view/theme/vier/theme.php:235
+#: 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 fa056d209e..a0046db9f9 100644
--- a/view/lang/gd/strings.php
+++ b/view/lang/gd/strings.php
@@ -153,6 +153,7 @@ $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['Public access denied.'] = 'Chaidh an t-inntrigeadh poblach a dhiùltadh.';
$a->strings['No photos selected'] = 'Cha deach dealbh a thaghadh';
+$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:';
@@ -200,6 +201,26 @@ $a->strings['No system theme config value set.'] = 'Cha deach luach a shuidheach
$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. ';
@@ -216,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';
@@ -277,9 +300,83 @@ $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['and'] = 'agus';
$a->strings['and %d other people'] = 'agus %d eile';
+$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:';
@@ -296,6 +393,8 @@ $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';
@@ -313,12 +412,6 @@ $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['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['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).';
@@ -339,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';
@@ -355,16 +468,20 @@ $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';
@@ -378,22 +495,28 @@ $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['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['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';
@@ -420,6 +543,7 @@ $a->strings['Terms of Service of this Friendica instance'] = 'Teirmichean seirbh
$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';
@@ -435,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';
@@ -452,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';
@@ -473,8 +600,9 @@ $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';
@@ -489,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';
@@ -526,6 +655,7 @@ $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';
@@ -636,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!';
@@ -658,6 +790,9 @@ $a->strings['
neach-leasachaidh Friendica mur urrainn dhut fhèin mo chuideachadh. Dh’fhaoidte nach eil an stòr-dàta agam dligheach.';
$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['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.';
@@ -680,13 +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['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.';
@@ -707,6 +852,7 @@ $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';
@@ -718,20 +864,13 @@ $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['%2$s (%3$d%%, %1$d vote)'] = [
@@ -767,6 +906,7 @@ $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';
@@ -803,6 +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 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.';
@@ -834,13 +975,65 @@ $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,
the administrator of %2$s has set up an account for you.'] = '
%1$s, a charaid,
shuidhich rianaire %2$s cunntas dhut.';
+$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/settings/removeme
+
+ Thank you and welcome to %4$s.'] = '
+ Seo am fiosrachadh clàraidh a-steach:
+
+ Seòladh na làraich: %1$s
+ Ainm clàraidh a-steach: %2$s
+ Facal-faire: %3$s
+
+ ’S urrainn dhut am facal-faire agad atharrachadh air duilleag “Roghainnean” a’ chunntais agad
+ às dèidh clàradh a-steach.
+
+ Fhad ’s a bhios tu ris, thoir sùil air roghainnean eile a’ chunntais air an duilleag sin.
+
+ Dh’fhaoidte gum bu mhiann leat fiosrachadh bunasach a chur ris a’ phròifil bhunaiteach agad
+ (air duilleag na “Pròifil”) ach am faigh daoine lorg ort gun duilgheadas.
+
+ Mholamaid gun suidhich thu d’ ainm slàn, gun cuir thu dealbh pròifil ris,
+ gun cuir thu “facal-luirg” no dhà ris a’ phròifil (glè fheumail airson caraidean ùra fhaighinn) – agus is dòcha
+ an dùthaich far a bheil thu mur eil thu airson a bhith nas mionaidiche na sin.
+
+ Tha suim againn dha do phrìobhaideachd is chan eil gin sam bith dhe na nithean sin riatanach idir.
+ 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/settings/removeme
+
+ Mòran taing agus fàilte gu %4$s.';
$a->strings['Registration details for %s'] = 'Am fiosrachadh clàraidh airson %s';
$a->strings['
Dear %1$s,
@@ -869,6 +1062,58 @@ $a->strings['
%1$s, a charaid,
Mòran taing airson clàradh air %2$s. Chaidh an cunntas agad a chruthachadh.
';
+$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/settings/removeme
+
+ Thank you and welcome to %2$s.'] = '
+ Seo am fiosrachadh clàraidh a-steach:
+
+ Seòladh na làraich: %3$s
+ Ainm clàraidh a-steach: %1$s
+ Facal-faire: %5$s
+
+ ’S urrainn dhut am facal-faire agad atharrachadh air duilleag “Roghainnean” a’ chunntais agad
+ \às dèidh clàradh a-steach.
+
+ Fhad ’s a bhios tu ris, thoir sùil air roghainnean eile a’ chunntais air an duilleag sin.
+
+ Dh’fhaoidte gum bu mhiann leat fiosrachadh bunasach a chur ris a’ phròifil bhunaiteach agad
+ (air duilleag na “Pròifil”) ach am faigh daoine lorg ort gun duilgheadas.
+
+ Mholamaid gun suidhich thu d’ ainm slàn, gun cuir thu dealbh pròifil ris,
+ gun cuir thu “facal-luirg” no dhà ris a’ phròifil (glè fheumail airson caraidean ùra fhaighinn) – agus is dòcha
+ an dùthaich far a bheil thu mur eil thu airson a bhith nas mionaidiche na sin.
+
+ Tha suim againn dha do phrìobhaideachd is chan eil gin sam bith dhe na nithean sin riatanach idir.
+ 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/settings/removeme
+
+ Mòran taing agus fàilte gu %2$s.';
$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.';
@@ -883,7 +1128,7 @@ $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';
@@ -957,6 +1202,7 @@ $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';
@@ -991,9 +1237,11 @@ $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';
@@ -1049,11 +1297,18 @@ $a->strings['Displays the menu entry for the Help pages from the navigation menu
$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';
@@ -1078,7 +1333,7 @@ $a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Ma chuire
$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['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.';
@@ -1099,6 +1354,8 @@ $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';
@@ -1160,8 +1417,8 @@ $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 group when calculating network count'] = 'Cruthaich cunntasan do bhuidhnean luchd-aithne nuair a thèid cunntas an lìonraidh àireamhachadh';
-$a->strings['On systems with users that heavily use contact groups the query can be very expensive.'] = 'Air siostaman far an bheil tòrr bhuidhnean luchd-aithne ’gan cleachdadh, faodaidh a’ cheist seo a bhith glè dhaor.';
+$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';
@@ -1190,21 +1447,21 @@ $a->strings['Save & Use storage backend'] = 'Sàbhail ⁊ cleachd backend an st
$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['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['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\'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.';
@@ -1230,6 +1487,9 @@ $a->strings['Show some informations regarding the needed information to operate
$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';
@@ -1253,6 +1513,8 @@ $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';
@@ -1283,13 +1545,20 @@ $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['Forum Search - %s'] = 'Lorg fòraim – %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';
@@ -1300,6 +1569,8 @@ $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.';
@@ -1308,6 +1579,9 @@ $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';
@@ -1317,6 +1591,29 @@ $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.',
@@ -1330,19 +1627,23 @@ $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 groups'] = 'Cuir rian air buidhnean an luchd-aithne agad';
+$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';
@@ -1352,7 +1653,6 @@ $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 not found.'] = 'Cha deach an neach-aithne a lorg.';
$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';
@@ -1360,7 +1660,6 @@ $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['Invalid contact.'] = 'Neach-aithne mì-dhligheach.';
$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)'] = [
@@ -1407,6 +1706,7 @@ $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.';
@@ -1416,6 +1716,8 @@ $a->strings['Contact has been unblocked'] = 'Chaidh an neach-aithne a dhì-bhaca
$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';
@@ -1448,6 +1750,7 @@ $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';
@@ -1459,13 +1762,14 @@ $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 deleted.'] = 'Chaidh an neach-aithne a sguabadh às.';
$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.';
@@ -1476,29 +1780,15 @@ $a->strings['Unfollowing is currently not supported by your network.'] = 'Cha ch
$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['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['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['No results.'] = 'Chan eil toradh ann.';
-$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 group'] = 'Chan eil am bhuidheann seo ann';
-$a->strings['Group: %s'] = 'Buidheann: %s';
-$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['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';
@@ -1564,6 +1854,8 @@ $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';
@@ -1571,8 +1863,68 @@ $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.';
@@ -1583,16 +1935,33 @@ $a->strings['%d message sent.'] = [
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['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['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';
@@ -1600,7 +1969,6 @@ $a->strings['Or - did you try to upload an empty file?'] = 'Air neo – an do dh
$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 exceeds size limit of %s'] = 'Tha an dealbh nas motha na tha ceadaichte dhe %s';
$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';
@@ -1611,13 +1979,13 @@ $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'] = [
@@ -1742,13 +2110,56 @@ $a->strings['URL'] = 'URL';
$a->strings['Mention'] = 'Iomradh';
$a->strings['Implicit Mention'] = 'Iomradh fillte';
$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 Forum Account'] = 'Cunntas fòraim phoblaich';
+$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 Forum Account'] = 'Cunntas fòraim phrìobhaidich';
+$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'] = [
@@ -1812,8 +2223,38 @@ $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.';
@@ -1825,7 +2266,24 @@ $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';
@@ -1835,24 +2293,54 @@ $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';
@@ -1879,6 +2367,7 @@ $a->strings['Enable simple text shortening'] = 'Cuir an comas giorrachadh teacsa
$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';
@@ -1895,6 +2384,21 @@ $a->strings['Send public posts to all email contacts:'] = 'Cuir postaichean pobl
$a->strings['Action after import:'] = 'Gnìomh às dèid an ion-phortaidh:';
$a->strings['Move to folder'] = 'Gluais gu pasgan';
$a->strings['Move to folder:'] = 'Gluais gu pasgan:';
+$a->strings['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';
@@ -1909,7 +2413,10 @@ $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.';
@@ -1932,10 +2439,12 @@ $a->strings['Done. You can now login with your username and password'] = 'Deisei
$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['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.'] = 'Nuair a bhios caraid no dhà agad, cuir rian orra ann am buidhnean conaltraidh prìobhaideach o bhàr-taobh duilleag an luchd-aithne agad agus ’s urrainn dhut co-luadar leis gach buidheann gu prìobhaideach air duilleag an lìonraidh agad an uairsin.';
$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';
@@ -1947,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';
@@ -1956,6 +2468,10 @@ $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';
@@ -1999,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 acd95d565d..f5d01efb3b 100644
--- a/view/lang/hu/messages.po
+++ b/view/lang/hu/messages.po
@@ -12,7 +12,7 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-12 07:57+0000\n"
+"POT-Creation-Date: 2023-10-03 08:59+0200\n"
"PO-Revision-Date: 2011-05-05 10:19+0000\n"
"Last-Translator: Balázs Úr, 2020-2023\n"
"Language-Team: Hungarian (http://app.transifex.com/Friendica/friendica/language/hu/)\n"
@@ -42,26 +42,26 @@ msgstr "Az elemet nem sikerült lekérni."
msgid "Empty post discarded."
msgstr "Az üres bejegyzés elvetve."
-#: mod/item.php:411 src/Module/Admin/Themes/Details.php:39
+#: 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 "Az elem nem található."
-#: mod/item.php:435 mod/message.php:67 mod/message.php:113 mod/notes.php:45
-#: mod/photos.php:152 mod/photos.php:669 src/Model/Event.php:522
+#: 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:52
+#: 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/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/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
@@ -71,9 +71,9 @@ msgstr "Az elem nem található."
#: 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:69
-#: src/Module/Settings/Display.php:69 src/Module/Settings/Display.php:151
+#: 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
@@ -219,7 +219,7 @@ 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/message.php:46 mod/message.php:128 src/Content/Nav.php:319
+#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321
msgid "New Message"
msgstr "Új üzenet"
@@ -245,7 +245,7 @@ msgstr "Üzenet-összegyűjtési hiba."
msgid "Discard"
msgstr "Elvetés"
-#: mod/message.php:135 src/Content/Nav.php:316 view/theme/frio/theme.php:241
+#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Messages"
msgstr "Üzenetek"
@@ -281,7 +281,7 @@ msgstr "Tárgy:"
msgid "Your message:"
msgstr "Az üzenete:"
-#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:360
+#: 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"
@@ -291,18 +291,18 @@ msgstr "Fénykép feltöltése"
msgid "Insert web link"
msgstr "Webhivatkozás beszúrása"
-#: mod/message.php:201 mod/message.php:357 mod/photos.php:1291
-#: 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:550
+#: 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 "Kis türelmet"
-#: mod/message.php:202 mod/message.php:356 mod/photos.php:702
-#: mod/photos.php:819 mod/photos.php:1097 mod/photos.php:1138
-#: mod/photos.php:1194 mod/photos.php:1268
+#: 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:339
+#: 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
@@ -310,8 +310,13 @@ msgstr "Kis türelmet"
#: 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:230 src/Object/Post.php:1063
+#: 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"
@@ -377,14 +382,14 @@ msgstr "Személyes jegyzetek"
msgid "Personal notes are visible only by yourself."
msgstr "A személyes jegyzetek csak az Ön számára láthatók."
-#: mod/notes.php:57 src/Content/Text/HTML.php:857
+#: 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 "Mentés"
-#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:577
-#: src/Model/Event.php:514 src/Model/Profile.php:234
+#: 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
@@ -396,22 +401,22 @@ msgid "User not found."
msgstr "A felhasználó nem található."
#: mod/photos.php:106 src/Module/BaseProfile.php:68
-#: src/Module/Profile/Photos.php:381
+#: src/Module/Profile/Photos.php:379
msgid "Photo Albums"
msgstr "Fényképalbumok"
-#: mod/photos.php:107 src/Module/Profile/Photos.php:382
-#: src/Module/Profile/Photos.php:402
+#: 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:109 mod/photos.php:867 src/Module/Profile/Photos.php:384
-#: src/Module/Profile/Photos.php:404
+#: 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:121 src/Module/BaseSettings.php:74
-#: src/Module/Profile/Photos.php:365
+#: mod/photos.php:121 src/Module/BaseSettings.php:72
+#: src/Module/Profile/Photos.php:363
msgid "everybody"
msgstr "mindenki"
@@ -423,72 +428,72 @@ msgstr "A partner információi nem érhetők el"
msgid "Album not found."
msgstr "Az album nem található."
-#: mod/photos.php:242
+#: mod/photos.php:244
msgid "Album successfully deleted"
msgstr "Az album sikeresen törölve"
-#: mod/photos.php:244
+#: mod/photos.php:246
msgid "Album was empty."
msgstr "Az album üres volt."
-#: mod/photos.php:276
+#: mod/photos.php:277
msgid "Failed to delete the photo."
msgstr "Nem sikerült törölni a fényképet."
-#: mod/photos.php:544
+#: mod/photos.php:545
msgid "a photo"
msgstr "egy fényképen"
-#: mod/photos.php:544
+#: 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:581 src/Module/Conversation/Community.php:188
-#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:297
+#: 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 "Nyilvános hozzáférés megtagadva."
-#: mod/photos.php:586
+#: mod/photos.php:587
msgid "No photos selected"
msgstr "Nincsenek fényképek kijelölve"
-#: mod/photos.php:718
+#: 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:725
+#: mod/photos.php:728
msgid "Upload Photos"
msgstr "Fényképek feltöltése"
-#: mod/photos.php:729 mod/photos.php:815
+#: mod/photos.php:732 mod/photos.php:820
msgid "New album name: "
msgstr "Új album neve: "
-#: mod/photos.php:730
+#: mod/photos.php:733
msgid "or select existing album:"
msgstr "vagy meglévő album kiválasztása:"
-#: mod/photos.php:731
+#: 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:733 mod/photos.php:1093 src/Content/Conversation.php:392
+#: 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:796
+#: 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:797 mod/photos.php:820
+#: mod/photos.php:802 mod/photos.php:825
msgid "Delete Album"
msgstr "Album törlése"
-#: mod/photos.php:798 mod/photos.php:899 src/Content/Conversation.php:408
+#: 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
@@ -498,156 +503,158 @@ msgstr "Album törlése"
msgid "Cancel"
msgstr "Mégse"
-#: mod/photos.php:824
+#: mod/photos.php:829
msgid "Edit Album"
msgstr "Album szerkesztése"
-#: mod/photos.php:825
+#: mod/photos.php:830
msgid "Drop Album"
msgstr "Album eldobása"
-#: mod/photos.php:829
+#: mod/photos.php:834
msgid "Show Newest First"
msgstr "Legújabb megjelenítése először"
-#: mod/photos.php:831
+#: mod/photos.php:836
msgid "Show Oldest First"
msgstr "Legrégebbi megjelenítése először"
-#: mod/photos.php:852 src/Module/Profile/Photos.php:352
+#: mod/photos.php:857 src/Module/Profile/Photos.php:350
msgid "View Photo"
msgstr "Fénykép megtekintése"
-#: mod/photos.php:885
+#: 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:887
+#: mod/photos.php:891
msgid "Photo not available"
msgstr "A fénykép nem érhető el"
-#: mod/photos.php:897
+#: 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:898 mod/photos.php:1098
+#: mod/photos.php:902 mod/photos.php:1102
msgid "Delete Photo"
msgstr "Fénykép törlése"
-#: mod/photos.php:996
+#: mod/photos.php:1000
msgid "View photo"
msgstr "Fénykép megtekintése"
-#: mod/photos.php:998
+#: mod/photos.php:1002
msgid "Edit photo"
msgstr "Fénykép szerkesztése"
-#: mod/photos.php:999
+#: mod/photos.php:1003
msgid "Delete photo"
msgstr "Fénykép törlése"
-#: mod/photos.php:1000
+#: mod/photos.php:1004
msgid "Use as profile photo"
msgstr "Használat profilfényképként"
-#: mod/photos.php:1007
+#: mod/photos.php:1011
msgid "Private Photo"
msgstr "Személyes fénykép"
-#: mod/photos.php:1013
+#: mod/photos.php:1017
msgid "View Full Size"
msgstr "Teljes méret megtekintése"
-#: mod/photos.php:1066
+#: mod/photos.php:1070
msgid "Tags: "
msgstr "Címkék: "
-#: mod/photos.php:1069
+#: mod/photos.php:1073
msgid "[Select tags to remove]"
msgstr "[Eltávolítandó címkék kiválasztása]"
-#: mod/photos.php:1084
+#: mod/photos.php:1088
msgid "New album name"
msgstr "Új album neve"
-#: mod/photos.php:1085
+#: mod/photos.php:1089
msgid "Caption"
msgstr "Felirat"
-#: mod/photos.php:1086
+#: mod/photos.php:1090
msgid "Add a Tag"
msgstr "Címke hozzáadása"
-#: mod/photos.php:1086
+#: 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:1087
+#: mod/photos.php:1091
msgid "Do not rotate"
msgstr "Ne forgassa el"
-#: mod/photos.php:1088
+#: mod/photos.php:1092
msgid "Rotate CW (right)"
msgstr "Forgatás jobbra"
-#: mod/photos.php:1089
+#: mod/photos.php:1093
msgid "Rotate CCW (left)"
msgstr "Forgatás balra"
-#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1265
-#: src/Module/Contact.php:588 src/Module/Item/Compose.php:188
-#: src/Object/Post.php:1060
+#: 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 "Ez Ön"
-#: mod/photos.php:1137 mod/photos.php:1193 mod/photos.php:1267
-#: src/Object/Post.php:544 src/Object/Post.php:1062
+#: 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 "Hozzászólás"
-#: mod/photos.php:1139 mod/photos.php:1195 mod/photos.php:1269
-#: 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:1075
+#: 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 "Előnézet"
-#: mod/photos.php:1140 src/Content/Conversation.php:359
-#: src/Module/Post/Edit.php:130 src/Object/Post.php:1064
+#: mod/photos.php:1144 src/Content/Conversation.php:367
+#: src/Module/Post/Edit.php:130 src/Object/Post.php:1096
msgid "Loading..."
msgstr "Betöltés…"
-#: mod/photos.php:1226 src/Content/Conversation.php:650
-#: src/Object/Post.php:257
+#: mod/photos.php:1236 src/Content/Conversation.php:1464
+#: src/Object/Post.php:260
msgid "Select"
msgstr "Kiválasztás"
-#: mod/photos.php:1227 src/Content/Conversation.php:651
+#: 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:1288 src/Object/Post.php:385
+#: mod/photos.php:1298 src/Object/Post.php:408
msgid "Like"
msgstr "Tetszik"
-#: mod/photos.php:1289 src/Object/Post.php:385
+#: mod/photos.php:1299 src/Object/Post.php:408
msgid "I like this (toggle)"
msgstr "Ezt kedvelem (átváltás)"
-#: mod/photos.php:1290 src/Object/Post.php:386
+#: mod/photos.php:1300 src/Object/Post.php:409
msgid "Dislike"
msgstr "Nem tetszik"
-#: mod/photos.php:1292 src/Object/Post.php:386
+#: mod/photos.php:1302 src/Object/Post.php:409
msgid "I don't like this (toggle)"
msgstr "Ezt nem kedvelem (átváltás)"
-#: mod/photos.php:1314
+#: mod/photos.php:1324
msgid "Map"
msgstr "Térkép"
@@ -655,97 +662,112 @@ msgstr "Térkép"
msgid "No system theme config value set."
msgstr "Nincs rendszertéma beállítási érték megadva."
-#: src/App.php:577
+#: 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:247
+#: src/App/Page.php:248
msgid "Delete this item?"
msgstr "Törli ezt az elemet?"
-#: src/App/Page.php:248
+#: 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:249
+#: 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:252
+#: src/App/Page.php:256
msgid "Dislike not successful"
msgstr "A nem kedvelés sikertelen"
-#: src/App/Page.php:253
+#: src/App/Page.php:257
msgid "Sharing not successful"
msgstr "A megosztás sikertelen"
-#: src/App/Page.php:254
+#: src/App/Page.php:258
msgid "Attendance unsuccessful"
msgstr "A részvétel sikertelen"
-#: src/App/Page.php:255
+#: src/App/Page.php:259
msgid "Backend error"
msgstr "Háttérprogram hiba"
-#: src/App/Page.php:256
+#: src/App/Page.php:260
msgid "Network error"
msgstr "Hálózati hiba"
-#: src/App/Page.php:259
+#: 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:260
+#: 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:261
+#: 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:262
+#: 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:263
+#: 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:264
+#: src/App/Page.php:268
msgid "Server responded with {{statusCode}} code."
msgstr "A kiszolgáló {{statusCode}} állapotkóddal válaszolt."
-#: src/App/Page.php:265
+#: src/App/Page.php:269
msgid "Cancel upload"
msgstr "Feltöltés megszakítása"
-#: src/App/Page.php:266
+#: src/App/Page.php:270
msgid "Upload canceled."
msgstr "A feltöltés megszakítva."
-#: src/App/Page.php:267
+#: 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:268
+#: src/App/Page.php:272
msgid "Remove file"
msgstr "Fájl eltávolítása"
-#: src/App/Page.php:269
+#: 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:347
+#: src/App/Page.php:351
msgid "toggle mobile"
msgstr "váltás mobilra"
@@ -762,33 +784,33 @@ msgstr "Az oldal nem található."
msgid "You must be logged in to use addons. "
msgstr "Bejelentkezve kell lennie a bővítmények használatához."
-#: src/BaseModule.php:400
+#: 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:427
+#: src/BaseModule.php:430
msgid "All contacts"
msgstr "Összes partner"
-#: src/BaseModule.php:432 src/Content/Widget.php:239 src/Core/ACL.php:195
-#: src/Module/Contact.php:407 src/Module/PermissionTooltip.php:127
-#: src/Module/PermissionTooltip.php:149
+#: src/BaseModule.php:435 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 "Követők"
-#: src/BaseModule.php:437 src/Content/Widget.php:240
-#: src/Module/Contact.php:408
+#: src/BaseModule.php:440 src/Content/Widget.php:240
+#: src/Module/Contact.php:418
msgid "Following"
msgstr "Követés"
-#: src/BaseModule.php:442 src/Content/Widget.php:241
-#: src/Module/Contact.php:409
+#: 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:450
+#: src/BaseModule.php:453
msgid "Common"
msgstr "Közös"
@@ -938,7 +960,7 @@ 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:663
+#: 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
@@ -1113,372 +1135,500 @@ msgstr "pnut"
msgid "Tumblr"
msgstr "Tumblr"
-#: src/Content/ContactSelector.php:179
+#: 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:218
+#: src/Content/Conversation.php:226
msgid "and"
msgstr "és"
-#: src/Content/Conversation.php:221
+#: src/Content/Conversation.php:229
#, php-format
msgid "and %d other people"
msgstr "és %d más személy"
-#: src/Content/Conversation.php:227
+#: 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:229
+#: 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:231
+#: src/Content/Conversation.php:239
#, php-format
msgid "%2$s attends."
msgid_plural "%2$s attend."
msgstr[0] "%2$s részt vesz."
msgstr[1] "%2$s részt vesz."
-#: src/Content/Conversation.php:233
+#: src/Content/Conversation.php:241
#, php-format
msgid "%2$s doesn't attend."
msgid_plural "%2$s don't attend."
msgstr[0] "%2$s nem vesz részt."
msgstr[1] "%2$s nem vesz részt."
-#: src/Content/Conversation.php:235
+#: src/Content/Conversation.php:243
#, php-format
msgid "%2$s attends maybe."
msgid_plural "%2$s attend maybe."
msgstr[0] "%2$s talán részt vesz."
msgstr[1] "%2$s talán részt vesz."
-#: src/Content/Conversation.php:237
+#: src/Content/Conversation.php:245
#, php-format
msgid "%2$s reshared this."
msgid_plural "%2$s reshared this."
msgstr[0] "%2$s újra megosztotta ezt."
msgstr[1] "%2$s újra megosztotta ezt."
-#: src/Content/Conversation.php:266
+#: src/Content/Conversation.php:274
#, php-format
msgid " likes this"
msgid_plural " like this"
msgstr[0] " kedveli ezt"
msgstr[1] " kedveli ezt"
-#: src/Content/Conversation.php:269
+#: src/Content/Conversation.php:277
#, php-format
msgid " doesn't like this"
msgid_plural " don't like this"
msgstr[0] " nem kedveli ezt"
msgstr[1] " nem kedveli ezt"
-#: src/Content/Conversation.php:272
+#: src/Content/Conversation.php:280
#, php-format
msgid " attends"
msgid_plural " attend"
msgstr[0] " részt vesz"
msgstr[1] " részt vesz"
-#: src/Content/Conversation.php:275
+#: src/Content/Conversation.php:283
#, php-format
msgid " doesn't attend"
msgid_plural " don't attend"
msgstr[0] " nem vesz részt"
msgstr[1] " nem vesz részt"
-#: src/Content/Conversation.php:278
+#: src/Content/Conversation.php:286
#, php-format
msgid " attends maybe"
msgid_plural " attend maybe"
msgstr[0] " talán részt vesz"
msgstr[1] " talán részt vesz"
-#: src/Content/Conversation.php:281
+#: src/Content/Conversation.php:289
#, php-format
msgid " reshared this"
msgid_plural " reshared this"
msgstr[0] " újra megosztotta ezt"
msgstr[1] " újra megosztotta ezt"
-#: src/Content/Conversation.php:328
+#: src/Content/Conversation.php:336
msgid "Visible to everybody"
msgstr "Látható mindenkinek"
-#: src/Content/Conversation.php:329 src/Module/Item/Compose.php:199
-#: src/Object/Post.php:1074
+#: 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 "Írjon be egy kép, videó, hang vagy weboldal URL-t:"
-#: src/Content/Conversation.php:330
+#: src/Content/Conversation.php:338
msgid "Tag term:"
msgstr "Címkézési kifejezés:"
-#: src/Content/Conversation.php:331 src/Module/Filer/SaveTag.php:73
+#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73
msgid "Save to Folder:"
msgstr "Mentés mappába:"
-#: src/Content/Conversation.php:332
+#: src/Content/Conversation.php:340
msgid "Where are you right now?"
msgstr "Hol van most éppen?"
-#: src/Content/Conversation.php:333
+#: src/Content/Conversation.php:341
msgid "Delete item(s)?"
msgstr "Törli az elemeket?"
-#: src/Content/Conversation.php:345 src/Module/Item/Compose.php:175
+#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175
msgid "Created at"
msgstr "Létrehozva"
-#: src/Content/Conversation.php:355
+#: src/Content/Conversation.php:363
msgid "New Post"
msgstr "Új bejegyzés"
-#: src/Content/Conversation.php:358
+#: src/Content/Conversation.php:366
msgid "Share"
msgstr "Megosztás"
-#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:132
+#: 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:362 src/Module/Post/Edit.php:133
+#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133
msgid "Attach file"
msgstr "Fájl csatolása"
-#: src/Content/Conversation.php:363 src/Module/Post/Edit.php:134
+#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134
msgid "attach file"
msgstr "fájl csatolása"
-#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190
-#: src/Module/Post/Edit.php:171 src/Object/Post.php:1065
+#: 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 "Félkövér"
-#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:191
-#: src/Module/Post/Edit.php:172 src/Object/Post.php:1066
+#: 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 "Dőlt"
-#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192
-#: src/Module/Post/Edit.php:173 src/Object/Post.php:1067
+#: 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 "Aláhúzott"
-#: src/Content/Conversation.php:367 src/Module/Item/Compose.php:193
-#: src/Module/Post/Edit.php:174 src/Object/Post.php:1068
+#: 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 "Idézet"
-#: src/Content/Conversation.php:368 src/Module/Item/Compose.php:194
-#: src/Module/Post/Edit.php:175 src/Object/Post.php:1069
+#: 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 "Emodzsik hozzáadása"
-#: src/Content/Conversation.php:369 src/Module/Item/Compose.php:195
-#: src/Module/Post/Edit.php:176 src/Object/Post.php:1070
+#: src/Content/Conversation.php:377 src/Module/Item/Compose.php:195
+#: src/Object/Post.php:1100
+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:1103
msgid "Code"
msgstr "Kód"
-#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:196
-#: src/Object/Post.php:1071
+#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197
+#: src/Object/Post.php:1104
msgid "Image"
msgstr "Kép"
-#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:197
-#: src/Module/Post/Edit.php:177 src/Object/Post.php:1072
+#: 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 "Hivatkozás"
-#: src/Content/Conversation.php:372 src/Module/Item/Compose.php:198
-#: src/Module/Post/Edit.php:178 src/Object/Post.php:1073
+#: 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 "Hivatkozás vagy média"
-#: src/Content/Conversation.php:373
+#: src/Content/Conversation.php:382
msgid "Video"
msgstr "Videó"
-#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:201
+#: 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:375 src/Module/Post/Edit.php:142
+#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142
msgid "set location"
msgstr "hely beállítása"
-#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:143
+#: 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:377 src/Module/Post/Edit.php:144
+#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144
msgid "clear location"
msgstr "hely törlése"
-#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:206
+#: 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:381 src/Module/Item/Compose.php:207
+#: 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:386 src/Module/Item/Compose.php:223
+#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224
msgid "Scheduled at"
msgstr "Ütemezve ekkor"
-#: src/Content/Conversation.php:391 src/Module/Post/Edit.php:146
+#: 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:401 src/Module/Post/Edit.php:155
+#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155
msgid "Public post"
msgstr "Nyilvános bejegyzés"
-#: src/Content/Conversation.php:415 src/Content/Widget/VCard.php:113
-#: src/Model/Profile.php:469 src/Module/Admin/Logs/View.php:92
+#: src/Content/Conversation.php:424 src/Content/Widget/VCard.php:125
+#: src/Model/Profile.php:467 src/Module/Admin/Logs/View.php:92
#: src/Module/Post/Edit.php:181
msgid "Message"
msgstr "Üzenet"
-#: src/Content/Conversation.php:416 src/Module/Post/Edit.php:182
+#: 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:418 src/Module/Post/Edit.php:185
+#: 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:678 src/Object/Post.php:244
-msgid "Pinned item"
-msgstr "Kitűzött elem"
-
-#: src/Content/Conversation.php:694 src/Object/Post.php:496
-#: src/Object/Post.php:497
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "%s profiljának megtekintése ezen: %s"
-
-#: src/Content/Conversation.php:707 src/Object/Post.php:484
-msgid "Categories:"
-msgstr "Kategóriák:"
-
-#: src/Content/Conversation.php:708 src/Object/Post.php:485
-msgid "Filed under:"
-msgstr "Iktatva itt:"
-
-#: src/Content/Conversation.php:716 src/Object/Post.php:510
-#, php-format
-msgid "%s from %s"
-msgstr "%s tőle: %s"
-
-#: src/Content/Conversation.php:732
-msgid "View in context"
-msgstr "Megtekintés környezetben"
-
-#: src/Content/Conversation.php:797
+#: src/Content/Conversation.php:595
msgid "remove"
msgstr "eltávolítás"
-#: src/Content/Conversation.php:801
+#: src/Content/Conversation.php:599
msgid "Delete Selected Items"
msgstr "Kijelölt elemek törlése"
-#: 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
+#: 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:881
+#: src/Content/Conversation.php:769
#, php-format
msgid "You are following %s."
msgstr "Ön követi őt: %s."
-#: src/Content/Conversation.php:884
+#: 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:897
+#: src/Content/Conversation.php:796
#, php-format
msgid "%s reshared this."
msgstr "%s újra megosztotta ezt."
-#: src/Content/Conversation.php:899
+#: src/Content/Conversation.php:798
msgid "Reshared"
msgstr "Újra megosztva"
-#: src/Content/Conversation.php:899
+#: src/Content/Conversation.php:798
#, php-format
msgid "Reshared by %s <%s>"
msgstr "%s <%s> újra megosztotta"
-#: src/Content/Conversation.php:902
+#: 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:905
+#: src/Content/Conversation.php:804
msgid "Stored for general reasons"
msgstr "Általános okokból tárolva"
-#: src/Content/Conversation.php:908
+#: src/Content/Conversation.php:807
msgid "Global post"
msgstr "Globális bejegyzés"
-#: src/Content/Conversation.php:911
+#: 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:911
+#: 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:914
+#: src/Content/Conversation.php:813
msgid "Fetched"
msgstr "Lekérve"
-#: src/Content/Conversation.php:914
+#: src/Content/Conversation.php:813
#, php-format
msgid "Fetched because of %s <%s>"
msgstr "Lekérve %s <%s> miatt"
-#: src/Content/Conversation.php:917
+#: 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:920
+#: src/Content/Conversation.php:819
msgid "Local delivery"
msgstr "Helyi kézbesítés"
-#: src/Content/Conversation.php:923
+#: 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:926
+#: src/Content/Conversation.php:825
msgid "Distributed"
msgstr "Elosztott"
-#: src/Content/Conversation.php:929
+#: src/Content/Conversation.php:828
msgid "Pushed to us"
msgstr "Leküldve nekünk"
+#: src/Content/Conversation.php:1492 src/Object/Post.php:247
+msgid "Pinned item"
+msgstr "Kitűzött elem"
+
+#: 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 profiljának megtekintése ezen: %s"
+
+#: src/Content/Conversation.php:1522 src/Object/Post.php:509
+msgid "Categories:"
+msgstr "Kategóriák:"
+
+#: src/Content/Conversation.php:1523 src/Object/Post.php:510
+msgid "Filed under:"
+msgstr "Iktatva itt:"
+
+#: src/Content/Conversation.php:1531 src/Object/Post.php:535
+#, 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/Timeline.php:59
+msgid "For you"
+msgstr "Önnek"
+
+#: src/Content/Conversation/Factory/Timeline.php:59
+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/Timeline.php:60
+msgid "What's Hot"
+msgstr "Mi a menő"
+
+#: src/Content/Conversation/Factory/Timeline.php:60
+msgid "Posts with a lot of interactions"
+msgstr "Sok interakcióval rendelkező bejegyzések"
+
+#: src/Content/Conversation/Factory/Timeline.php:61
+#, php-format
+msgid "Posts in %s"
+msgstr "Bejegyzések ebben: %s"
+
+#: src/Content/Conversation/Factory/Timeline.php:62
+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/Timeline.php:63
+msgid "Sharers of sharers"
+msgstr "Megosztók megosztói"
+
+#: src/Content/Conversation/Factory/Timeline.php:63
+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/Timeline.php:64
+msgid "Images"
+msgstr "Képek"
+
+#: src/Content/Conversation/Factory/Timeline.php:64
+msgid "Posts with images"
+msgstr "Képekkel rendelkező bejegyzések"
+
+#: src/Content/Conversation/Factory/Timeline.php:65
+msgid "Audio"
+msgstr "Hang"
+
+#: src/Content/Conversation/Factory/Timeline.php:65
+msgid "Posts with audio"
+msgstr "Hanggal rendelkező bejegyzések"
+
+#: src/Content/Conversation/Factory/Timeline.php:66
+msgid "Videos"
+msgstr "Videók"
+
+#: src/Content/Conversation/Factory/Timeline.php:66
+msgid "Posts with videos"
+msgstr "Videókkal rendelkező bejegyzések"
+
+#: src/Content/Conversation/Factory/Timeline.php:84
+msgid "Local Community"
+msgstr "Helyi közösség"
+
+#: src/Content/Conversation/Factory/Timeline.php:84
+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/Timeline.php:88
+msgid "Global Community"
+msgstr "Globális közösség"
+
+#: src/Content/Conversation/Factory/Timeline.php:88
+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/Timeline.php:102
+msgid "Latest Activity"
+msgstr "Legutóbbi tevékenység"
+
+#: src/Content/Conversation/Factory/Timeline.php:102
+msgid "Sort by latest activity"
+msgstr "Rendezés a legutóbbi tevékenység szerint"
+
+#: src/Content/Conversation/Factory/Timeline.php:103
+msgid "Latest Posts"
+msgstr "Legutóbbi bejegyzések"
+
+#: src/Content/Conversation/Factory/Timeline.php:103
+msgid "Sort by post received date"
+msgstr "Rendezés a bejegyzés érkezési dátuma szerint"
+
+#: src/Content/Conversation/Factory/Timeline.php:104
+msgid "Latest Creation"
+msgstr "Legutóbbi létrehozás"
+
+#: src/Content/Conversation/Factory/Timeline.php:104
+msgid "Sort by post creation date"
+msgstr "Rendezés a bejegyzés létrehozási dátuma szerint"
+
+#: src/Content/Conversation/Factory/Timeline.php:105
+#: src/Module/Settings/Profile/Index.php:260
+msgid "Personal"
+msgstr "Személyes"
+
+#: src/Content/Conversation/Factory/Timeline.php:105
+msgid "Posts that mention or involve you"
+msgstr "Bejegyzések, amelyek említik vagy tartalmazzák Önt"
+
+#: src/Content/Conversation/Factory/Timeline.php:106 src/Object/Post.php:380
+msgid "Starred"
+msgstr "Csillagozott"
+
+#: src/Content/Conversation/Factory/Timeline.php:106
+msgid "Favourite Posts"
+msgstr "Kedvenc bejegyzések"
+
#: src/Content/Feature.php:96
msgid "General Features"
msgstr "Általános funkciók"
@@ -1508,13 +1658,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"
@@ -1554,12 +1704,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"
@@ -1591,220 +1741,229 @@ msgid ""
"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/ForumManager.php:151 src/Content/Nav.php:276
-#: src/Content/Text/HTML.php:878 src/Content/Widget.php:528
-msgid "Forums"
-msgstr "Fórumok"
+#: 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 "Csoportok"
-#: src/Content/ForumManager.php:153
-msgid "External link to forum"
-msgstr "Külső hivatkozás a fórumhoz"
+#: src/Content/GroupManager.php:154
+msgid "External link to group"
+msgstr "Külső hivatkozás a csoporthoz"
-#: src/Content/ForumManager.php:156 src/Content/Widget.php:507
+#: 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:409
-#: src/Content/Widget.php:508
+#: 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:327 src/Model/Item.php:2927
+#: src/Content/GroupManager.php:160
+msgid "Create new group"
+msgstr "Új csoport létrehozása"
+
+#: src/Content/Item.php:331 src/Model/Item.php:3021
msgid "event"
msgstr "esemény"
-#: src/Content/Item.php:330 src/Content/Item.php:340
+#: src/Content/Item.php:334 src/Content/Item.php:344
msgid "status"
msgstr "állapot"
-#: src/Content/Item.php:336 src/Model/Item.php:2929
+#: src/Content/Item.php:340 src/Model/Item.php:3023
#: src/Module/Post/Tag/Add.php:123
msgid "photo"
msgstr "fénykép"
-#: src/Content/Item.php:350 src/Module/Post/Tag/Add.php:141
+#: 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:420 view/theme/frio/theme.php:262
+#: src/Content/Item.php:428 view/theme/frio/theme.php:262
msgid "Follow Thread"
msgstr "Szál követése"
-#: src/Content/Item.php:421 src/Model/Contact.php:1204
+#: src/Content/Item.php:429 src/Model/Contact.php:1246
msgid "View Status"
msgstr "Állapot megtekintése"
-#: src/Content/Item.php:422 src/Content/Item.php:442
-#: src/Model/Contact.php:1148 src/Model/Contact.php:1196
-#: src/Model/Contact.php:1205 src/Module/Directory.php:157
-#: src/Module/Settings/Profile/Index.php:233
+#: src/Content/Item.php:430 src/Content/Item.php:451
+#: src/Model/Contact.php:1176 src/Model/Contact.php:1237
+#: src/Model/Contact.php:1247 src/Module/Directory.php:157
+#: src/Module/Settings/Profile/Index.php:259
msgid "View Profile"
msgstr "Profil megtekintése"
-#: src/Content/Item.php:423 src/Model/Contact.php:1206
+#: src/Content/Item.php:431 src/Model/Contact.php:1248
msgid "View Photos"
msgstr "Fényképek megtekintése"
-#: src/Content/Item.php:424 src/Model/Contact.php:1197
-#: src/Model/Contact.php:1207
+#: src/Content/Item.php:432 src/Model/Contact.php:1215
msgid "Network Posts"
msgstr "Hálózati bejegyzések"
-#: src/Content/Item.php:425 src/Model/Contact.php:1198
-#: src/Model/Contact.php:1208
+#: src/Content/Item.php:433 src/Model/Contact.php:1239
+#: src/Model/Contact.php:1250
msgid "View Contact"
msgstr "Partner megtekintése"
-#: src/Content/Item.php:426 src/Model/Contact.php:1209
+#: src/Content/Item.php:434 src/Model/Contact.php:1251
msgid "Send PM"
msgstr "Személyes üzenet küldése"
-#: src/Content/Item.php:427 src/Module/Contact.php:439
-#: src/Module/Contact/Profile.php:477
+#: 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:428 src/Module/Contact.php:440
-#: src/Module/Contact/Profile.php:485
+#: 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:429 src/Module/Contact.php:441
-#: src/Module/Contact/Profile.php:493
+#: 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:433 src/Object/Post.php:465
+#: src/Content/Item.php:438 src/Object/Post.php:288
+#, php-format
+msgid "Ignore %s server"
+msgstr "A(z) %s kiszolgáló mellőzése"
+
+#: src/Content/Item.php:442 src/Object/Post.php:490
msgid "Languages"
msgstr "Nyelvek"
-#: src/Content/Item.php:439 src/Content/Widget.php:80
-#: src/Model/Contact.php:1199 src/Model/Contact.php:1210
+#: src/Content/Item.php:448 src/Content/Widget.php:80
+#: src/Model/Contact.php:1240 src/Model/Contact.php:1252
#: 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:864
+#: src/Content/Item.php:882
msgid "Unable to fetch user."
msgstr "Nem lehet lekérni a felhasználót."
-#: src/Content/Nav.php:120
+#: src/Content/Nav.php:121
msgid "Nothing new here"
msgstr "Semmi új nincs itt"
-#: src/Content/Nav.php:124 src/Module/Special/HTTPException.php:77
+#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77
msgid "Go back"
msgstr "Vissza"
-#: src/Content/Nav.php:125
+#: src/Content/Nav.php:126
msgid "Clear notifications"
msgstr "Értesítések törlése"
-#: src/Content/Nav.php:126 src/Content/Text/HTML.php:865
-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:220 src/Module/Security/Login.php:157
+#: src/Content/Nav.php:222 src/Module/Security/Login.php:157
msgid "Logout"
msgstr "Kijelentkezés"
-#: src/Content/Nav.php:220
+#: src/Content/Nav.php:222
msgid "End this session"
msgstr "Munkamenet befejezése"
-#: src/Content/Nav.php:222 src/Module/Bookmarklet.php:44
+#: 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:222
+#: src/Content/Nav.php:224
msgid "Sign in"
msgstr "Bejelentkezés"
-#: src/Content/Nav.php:227 src/Module/BaseProfile.php:57
-#: src/Module/Contact.php:483
+#: 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:227
+#: src/Content/Nav.php:229
msgid "Conversations you started"
msgstr "Ön által elkezdett beszélgetések"
-#: src/Content/Nav.php:228 src/Module/BaseProfile.php:49
-#: src/Module/BaseSettings.php:100 src/Module/Contact.php:475
-#: src/Module/Contact/Profile.php:392 src/Module/Profile/Profile.php:268
+#: 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:228 view/theme/frio/theme.php:230
+#: src/Content/Nav.php:230 view/theme/frio/theme.php:230
msgid "Your profile page"
msgstr "Az Ön profiloldala"
-#: src/Content/Nav.php:229 src/Module/BaseProfile.php:65
+#: 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:229 view/theme/frio/theme.php:234
+#: src/Content/Nav.php:231 view/theme/frio/theme.php:234
msgid "Your photos"
msgstr "Az Ön fényképei"
-#: src/Content/Nav.php:230 src/Module/BaseProfile.php:73
-#: src/Module/BaseProfile.php:76 src/Module/Contact.php:499
+#: 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:230 view/theme/frio/theme.php:235
+#: 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:231 src/Content/Nav.php:291
+#: 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:252 view/theme/frio/theme.php:236
+#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236
#: view/theme/frio/theme.php:240
msgid "Calendar"
msgstr "Naptár"
-#: src/Content/Nav.php:231 view/theme/frio/theme.php:236
+#: src/Content/Nav.php:233 view/theme/frio/theme.php:236
msgid "Your calendar"
msgstr "Az Ön naptára"
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Personal notes"
msgstr "Személyes jegyzetek"
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Your personal notes"
msgstr "Az Ön személyes jegyzetei"
-#: src/Content/Nav.php:249 src/Content/Nav.php:306
+#: src/Content/Nav.php:251 src/Content/Nav.php:308
msgid "Home"
msgstr "Kezdőlap"
-#: src/Content/Nav.php:249 src/Module/Settings/OAuth.php:73
+#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73
msgid "Home Page"
msgstr "Kezdőlap"
-#: src/Content/Nav.php:253 src/Module/Register.php:168
+#: 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:253
+#: src/Content/Nav.php:255
msgid "Create an account"
msgstr "Fiók létrehozása"
-#: src/Content/Nav.php:259 src/Module/Help.php:67
+#: 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
@@ -1812,164 +1971,164 @@ msgstr "Fiók létrehozása"
msgid "Help"
msgstr "Súgó"
-#: src/Content/Nav.php:259
+#: src/Content/Nav.php:261
msgid "Help and documentation"
msgstr "Súgó és dokumentáció"
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:265
msgid "Apps"
msgstr "Alkalmazások"
-#: src/Content/Nav.php:263
+#: 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:267 src/Content/Text/HTML.php:863
+#: 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:267
+#: src/Content/Nav.php:269
msgid "Search site content"
msgstr "Oldaltartalom keresése"
-#: src/Content/Nav.php:270 src/Content/Text/HTML.php:872
+#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874
msgid "Full Text"
msgstr "Teljes szöveg"
-#: src/Content/Nav.php:271 src/Content/Text/HTML.php:873
+#: 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:272 src/Content/Nav.php:327
-#: src/Content/Text/HTML.php:874 src/Module/BaseProfile.php:127
-#: src/Module/BaseProfile.php:130 src/Module/Contact.php:410
-#: src/Module/Contact.php:506 view/theme/frio/theme.php:243
+#: 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:287
+#: src/Content/Nav.php:289
msgid "Community"
msgstr "Közösség"
-#: src/Content/Nav.php:287
+#: 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:294
+#: src/Content/Nav.php:296
msgid "Directory"
msgstr "Könyvtár"
-#: src/Content/Nav.php:294
+#: src/Content/Nav.php:296
msgid "People directory"
msgstr "Emberek könyvtár"
-#: src/Content/Nav.php:296 src/Module/BaseAdmin.php:85
+#: 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:296
+#: 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:299 src/Module/Admin/Tos.php:78
+#: 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:100
+#: src/Module/Tos.php:101
msgid "Terms of Service"
msgstr "Használati feltételek"
-#: src/Content/Nav.php:299
+#: 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:304 view/theme/frio/theme.php:239
+#: src/Content/Nav.php:306 view/theme/frio/theme.php:239
msgid "Network"
msgstr "Hálózat"
-#: src/Content/Nav.php:304 view/theme/frio/theme.php:239
+#: 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:306 view/theme/frio/theme.php:229
+#: 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:310
+#: src/Content/Nav.php:312
msgid "Introductions"
msgstr "Bemutatkozások"
-#: src/Content/Nav.php:310
+#: src/Content/Nav.php:312
msgid "Friend Requests"
msgstr "Ismerőskérések"
-#: src/Content/Nav.php:311 src/Module/BaseNotifications.php:149
+#: 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:312
+#: src/Content/Nav.php:314
msgid "See all notifications"
msgstr "Összes értesítés megtekintése"
-#: src/Content/Nav.php:313 src/Module/Settings/Connectors.php:244
+#: 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:313
+#: 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:316 view/theme/frio/theme.php:241
+#: src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Private mail"
msgstr "Személyes levél"
-#: src/Content/Nav.php:317
+#: src/Content/Nav.php:319
msgid "Inbox"
msgstr "Beérkezett üzenetek"
-#: src/Content/Nav.php:318
+#: src/Content/Nav.php:320
msgid "Outbox"
msgstr "Elküldött üzenetek"
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Accounts"
msgstr "Fiókok"
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Manage other pages"
msgstr "Más oldalak kezelése"
-#: 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/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 "Beállítások"
-#: src/Content/Nav.php:325 view/theme/frio/theme.php:242
+#: src/Content/Nav.php:327 view/theme/frio/theme.php:242
msgid "Account settings"
msgstr "Fiókbeállítások"
-#: src/Content/Nav.php:327 view/theme/frio/theme.php:243
+#: 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:332 src/Module/BaseAdmin.php:119
+#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119
msgid "Admin"
msgstr "Adminisztráció"
-#: src/Content/Nav.php:332
+#: src/Content/Nav.php:334
msgid "Site setup and configuration"
msgstr "Oldal beállítása és konfigurálás"
-#: src/Content/Nav.php:333 src/Module/BaseModeration.php:127
+#: 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/Summary.php:76
+#: 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
@@ -1977,23 +2136,23 @@ msgstr "Oldal beállítása és konfigurálás"
msgid "Moderation"
msgstr "Moderálás"
-#: src/Content/Nav.php:333
+#: src/Content/Nav.php:335
msgid "Content and user moderation"
msgstr "Tartalom- és felhasználómoderálás"
-#: src/Content/Nav.php:336
+#: src/Content/Nav.php:338
msgid "Navigation"
msgstr "Navigáció"
-#: src/Content/Nav.php:336
+#: 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"
@@ -2013,51 +2172,51 @@ msgstr "következő"
msgid "last"
msgstr "utolsó"
-#: src/Content/Text/BBCode.php:713 src/Content/Text/BBCode.php:1599
-#: src/Content/Text/BBCode.php:1600
+#: src/Content/Text/BBCode.php:696 src/Content/Text/BBCode.php:1636
+#: src/Content/Text/BBCode.php:1637
msgid "Image/photo"
msgstr "Kép vagy fénykép"
-#: src/Content/Text/BBCode.php:931
+#: src/Content/Text/BBCode.php:914
#, php-format
msgid "%2$s %3$s"
msgstr "%2$s %3$s"
-#: src/Content/Text/BBCode.php:956 src/Model/Item.php:3645
-#: src/Model/Item.php:3651 src/Model/Item.php:3652
+#: src/Content/Text/BBCode.php:939 src/Model/Item.php:3763
+#: src/Model/Item.php:3769 src/Model/Item.php:3770
msgid "Link to source"
msgstr "Hivatkozás a forráshoz"
-#: src/Content/Text/BBCode.php:1506 src/Content/Text/HTML.php:902
+#: src/Content/Text/BBCode.php:1543 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:1539
+#: src/Content/Text/BBCode.php:1576
msgid "$1 wrote:"
msgstr "$1 írta:"
-#: src/Content/Text/BBCode.php:1604 src/Content/Text/BBCode.php:1605
+#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642
msgid "Encrypted content"
msgstr "Titkosított tartalom"
-#: src/Content/Text/BBCode.php:1869
+#: src/Content/Text/BBCode.php:1901
msgid "Invalid source protocol"
msgstr "Érvénytelen forrásprotokoll"
-#: src/Content/Text/BBCode.php:1888
+#: src/Content/Text/BBCode.php:1920
msgid "Invalid link protocol"
msgstr "Érvénytelen hivatkozási protokoll"
-#: src/Content/Text/HTML.php:780
+#: src/Content/Text/HTML.php:782
msgid "Loading more entries..."
msgstr "További bejegyzések betöltése…"
-#: src/Content/Text/HTML.php:781
+#: src/Content/Text/HTML.php:783
msgid "The end"
msgstr "Vége"
-#: src/Content/Text/HTML.php:857 src/Content/Widget/VCard.php:109
-#: src/Model/Profile.php:463 src/Module/Contact/Profile.php:437
+#: src/Content/Text/HTML.php:859 src/Content/Widget/VCard.php:121
+#: src/Model/Profile.php:461 src/Module/Contact/Profile.php:471
msgid "Follow"
msgstr "Követés"
@@ -2096,7 +2255,7 @@ msgstr "Név vagy érdeklődés beírása"
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Példák: Szabó János, Halászat"
-#: src/Content/Widget.php:82 src/Module/Contact.php:432
+#: 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"
@@ -2127,75 +2286,87 @@ msgstr "Globális könyvtár"
msgid "Local Directory"
msgstr "Helyi könyvtár"
-#: src/Content/Widget.php:215 src/Model/Group.php:596
-#: src/Module/Contact.php:394 src/Module/Welcome.php:76
-msgid "Groups"
-msgstr "Csoportok"
+#: src/Content/Widget.php:215 src/Model/Circle.php:600
+#: src/Module/Contact.php:401 src/Module/Welcome.php:76
+msgid "Circles"
+msgstr "Körök"
#: src/Content/Widget.php:217
msgid "Everyone"
msgstr "Mindenki"
-#: src/Content/Widget.php:246
+#: 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:248 src/Module/Contact.php:338
-#: src/Module/Group.php:291
+#: 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:287
+#: src/Content/Widget.php:288
msgid "Protocols"
msgstr "Protokollok"
-#: src/Content/Widget.php:289
+#: src/Content/Widget.php:290
msgid "All Protocols"
msgstr "Összes protokoll"
-#: src/Content/Widget.php:317
+#: src/Content/Widget.php:318
msgid "Saved Folders"
msgstr "Mentett mappák"
-#: src/Content/Widget.php:319 src/Content/Widget.php:350
+#: src/Content/Widget.php:320 src/Content/Widget.php:351
msgid "Everything"
msgstr "Minden"
-#: src/Content/Widget.php:348
+#: src/Content/Widget.php:349
msgid "Categories"
msgstr "Kategóriák"
-#: src/Content/Widget.php:405
+#: 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:501
+#: src/Content/Widget.php:506
msgid "Archives"
msgstr "Archívumok"
-#: src/Content/Widget.php:525
+#: 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:526
+#: src/Content/Widget.php:535
msgid "Organisations"
msgstr "Szervezetek"
-#: src/Content/Widget.php:527 src/Model/Contact.php:1656
+#: src/Content/Widget.php:536 src/Model/Contact.php:1718
msgid "News"
msgstr "Hírek"
-#: src/Content/Widget.php:531 src/Module/Settings/Account.php:453
+#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454
msgid "Account Types"
msgstr "Fióktípusok"
-#: src/Content/Widget.php:532 src/Module/Moderation/BaseUsers.php:69
+#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69
msgid "All"
msgstr "Összes"
+#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266
+msgid "Channels"
+msgstr "Csatornák"
+
#: src/Content/Widget/CalendarExport.php:56
msgid "Export"
msgstr "Exportálás"
@@ -2242,35 +2413,48 @@ msgstr[1] "Népszerű címkék (legutóbbi %d óra)"
msgid "More Trending Tags"
msgstr "További népszerű címkék"
-#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:378
-#: src/Module/Contact/Profile.php:381 src/Module/Profile/Profile.php:199
+#: src/Content/Widget/VCard.php:114 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:383 src/Module/Profile/Profile.php:203
+#: src/Content/Widget/VCard.php:115 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: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/Content/Widget/VCard.php:116 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:107 src/Model/Profile.php:476
+#: src/Content/Widget/VCard.php:119 src/Model/Profile.php:474
#: src/Module/Notifications/Introductions.php:201
msgid "Network:"
msgstr "Hálózat:"
-#: src/Content/Widget/VCard.php:111 src/Model/Contact.php:1200
-#: src/Model/Contact.php:1211 src/Model/Profile.php:465
-#: src/Module/Contact/Profile.php:429
+#: src/Content/Widget/VCard.php:123 src/Model/Contact.php:1241
+#: src/Model/Contact.php:1253 src/Model/Profile.php:463
+#: src/Module/Contact/Profile.php:463
msgid "Unfollow"
msgstr "Követés megszüntetése"
+#: src/Content/Widget/VCard.php:127 src/Model/Contact.php:1205
+#: src/Module/Moderation/Item/Source.php:85
+msgid "Mention"
+msgstr "Említés"
+
+#: src/Content/Widget/VCard.php:128 src/Model/Contact.php:1202
+msgid "Post to group"
+msgstr "Beküldés csoportba"
+
+#: src/Content/Widget/VCard.php:129 src/Model/Contact.php:1212
+msgid "View group"
+msgstr "Csoport megtekintése"
+
#: src/Core/ACL.php:166 src/Module/Profile/Profile.php:269
msgid "Yourself"
msgstr "Önmaga"
@@ -2308,9 +2492,9 @@ msgstr "Ez a tartalom csak az első mezőben lévő embereknek fog megjelenni, k
#: src/Core/ACL.php:324
msgid ""
-"Start typing the name of a contact or a group to show a filtered list. You "
-"can also mention the special groups \"Followers\" and \"Mutuals\"."
-msgstr "Kezdje el gépelni egy partner vagy csoport 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 csoportokat is."
+"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:"
@@ -2651,161 +2835,172 @@ msgstr "Az adatbázis már használatban van."
msgid "Could not connect to database."
msgstr "Nem sikerült kapcsolódni az adatbázishoz."
-#: src/Core/L10n.php:408 src/Model/Event.php:432
-#: src/Module/Settings/Display.php:222
+#: src/Core/L10n.php:494 src/Model/Event.php:430
+#: src/Module/Settings/Display.php:235
msgid "Monday"
msgstr "Hétfő"
-#: src/Core/L10n.php:408 src/Model/Event.php:433
-#: src/Module/Settings/Display.php:223
+#: src/Core/L10n.php:494 src/Model/Event.php:431
+#: src/Module/Settings/Display.php:236
msgid "Tuesday"
msgstr "Kedd"
-#: src/Core/L10n.php:408 src/Model/Event.php:434
-#: src/Module/Settings/Display.php:224
+#: src/Core/L10n.php:494 src/Model/Event.php:432
+#: src/Module/Settings/Display.php:237
msgid "Wednesday"
msgstr "Szerda"
-#: src/Core/L10n.php:408 src/Model/Event.php:435
-#: src/Module/Settings/Display.php:225
+#: src/Core/L10n.php:494 src/Model/Event.php:433
+#: src/Module/Settings/Display.php:238
msgid "Thursday"
msgstr "Csütörtök"
-#: src/Core/L10n.php:408 src/Model/Event.php:436
-#: src/Module/Settings/Display.php:226
+#: src/Core/L10n.php:494 src/Model/Event.php:434
+#: src/Module/Settings/Display.php:239
msgid "Friday"
msgstr "Péntek"
-#: src/Core/L10n.php:408 src/Model/Event.php:437
-#: src/Module/Settings/Display.php:227
+#: src/Core/L10n.php:494 src/Model/Event.php:435
+#: src/Module/Settings/Display.php:240
msgid "Saturday"
msgstr "Szombat"
-#: src/Core/L10n.php:408 src/Model/Event.php:431
-#: src/Module/Settings/Display.php:221
+#: src/Core/L10n.php:494 src/Model/Event.php:429
+#: src/Module/Settings/Display.php:234
msgid "Sunday"
msgstr "Vasárnap"
-#: src/Core/L10n.php:412 src/Model/Event.php:452
+#: src/Core/L10n.php:498 src/Model/Event.php:450
msgid "January"
msgstr "Január"
-#: src/Core/L10n.php:412 src/Model/Event.php:453
+#: src/Core/L10n.php:498 src/Model/Event.php:451
msgid "February"
msgstr "Február"
-#: src/Core/L10n.php:412 src/Model/Event.php:454
+#: src/Core/L10n.php:498 src/Model/Event.php:452
msgid "March"
msgstr "Március"
-#: src/Core/L10n.php:412 src/Model/Event.php:455
+#: src/Core/L10n.php:498 src/Model/Event.php:453
msgid "April"
msgstr "Április"
-#: src/Core/L10n.php:412 src/Core/L10n.php:431 src/Model/Event.php:443
+#: src/Core/L10n.php:498 src/Core/L10n.php:517 src/Model/Event.php:441
msgid "May"
msgstr "Május"
-#: src/Core/L10n.php:412 src/Model/Event.php:456
+#: src/Core/L10n.php:498 src/Model/Event.php:454
msgid "June"
msgstr "Június"
-#: src/Core/L10n.php:412 src/Model/Event.php:457
+#: src/Core/L10n.php:498 src/Model/Event.php:455
msgid "July"
msgstr "Július"
-#: src/Core/L10n.php:412 src/Model/Event.php:458
+#: src/Core/L10n.php:498 src/Model/Event.php:456
msgid "August"
msgstr "Augusztus"
-#: src/Core/L10n.php:412 src/Model/Event.php:459
+#: src/Core/L10n.php:498 src/Model/Event.php:457
msgid "September"
msgstr "Szeptember"
-#: src/Core/L10n.php:412 src/Model/Event.php:460
+#: src/Core/L10n.php:498 src/Model/Event.php:458
msgid "October"
msgstr "Október"
-#: src/Core/L10n.php:412 src/Model/Event.php:461
+#: src/Core/L10n.php:498 src/Model/Event.php:459
msgid "November"
msgstr "November"
-#: src/Core/L10n.php:412 src/Model/Event.php:462
+#: src/Core/L10n.php:498 src/Model/Event.php:460
msgid "December"
msgstr "December"
-#: src/Core/L10n.php:427 src/Model/Event.php:424
+#: src/Core/L10n.php:513 src/Model/Event.php:422
msgid "Mon"
msgstr "Hét"
-#: src/Core/L10n.php:427 src/Model/Event.php:425
+#: src/Core/L10n.php:513 src/Model/Event.php:423
msgid "Tue"
msgstr "Ked"
-#: src/Core/L10n.php:427 src/Model/Event.php:426
+#: src/Core/L10n.php:513 src/Model/Event.php:424
msgid "Wed"
msgstr "Sze"
-#: src/Core/L10n.php:427 src/Model/Event.php:427
+#: src/Core/L10n.php:513 src/Model/Event.php:425
msgid "Thu"
msgstr "Csü"
-#: src/Core/L10n.php:427 src/Model/Event.php:428
+#: src/Core/L10n.php:513 src/Model/Event.php:426
msgid "Fri"
msgstr "Pén"
-#: src/Core/L10n.php:427 src/Model/Event.php:429
+#: src/Core/L10n.php:513 src/Model/Event.php:427
msgid "Sat"
msgstr "Szo"
-#: src/Core/L10n.php:427 src/Model/Event.php:423
+#: src/Core/L10n.php:513 src/Model/Event.php:421
msgid "Sun"
msgstr "Vas"
-#: src/Core/L10n.php:431 src/Model/Event.php:439
+#: src/Core/L10n.php:517 src/Model/Event.php:437
msgid "Jan"
msgstr "Jan"
-#: src/Core/L10n.php:431 src/Model/Event.php:440
+#: src/Core/L10n.php:517 src/Model/Event.php:438
msgid "Feb"
msgstr "Feb"
-#: src/Core/L10n.php:431 src/Model/Event.php:441
+#: src/Core/L10n.php:517 src/Model/Event.php:439
msgid "Mar"
msgstr "Már"
-#: src/Core/L10n.php:431 src/Model/Event.php:442
+#: src/Core/L10n.php:517 src/Model/Event.php:440
msgid "Apr"
msgstr "Ápr"
-#: src/Core/L10n.php:431 src/Model/Event.php:444
+#: src/Core/L10n.php:517 src/Model/Event.php:442
msgid "Jun"
msgstr "Jún"
-#: src/Core/L10n.php:431 src/Model/Event.php:445
+#: src/Core/L10n.php:517 src/Model/Event.php:443
msgid "Jul"
msgstr "Júl"
-#: src/Core/L10n.php:431 src/Model/Event.php:446
+#: src/Core/L10n.php:517 src/Model/Event.php:444
msgid "Aug"
msgstr "Aug"
-#: src/Core/L10n.php:431
+#: src/Core/L10n.php:517
msgid "Sep"
msgstr "Sze"
-#: src/Core/L10n.php:431 src/Model/Event.php:448
+#: src/Core/L10n.php:517 src/Model/Event.php:446
msgid "Oct"
msgstr "Okt"
-#: src/Core/L10n.php:431 src/Model/Event.php:449
+#: src/Core/L10n.php:517 src/Model/Event.php:447
msgid "Nov"
msgstr "Nov"
-#: src/Core/L10n.php:431 src/Model/Event.php:450
+#: src/Core/L10n.php:517 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:147 src/Core/Renderer.php:181
#: src/Render/FriendicaSmartyEngine.php:60
@@ -2850,22 +3045,22 @@ msgid ""
" 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:197
+#: 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:239
+#: 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:313
+#: 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:353
+#: src/Core/Update.php:339
#, php-format
msgid ""
"\n"
@@ -2875,16 +3070,16 @@ 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:359
+#: 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:363 src/Core/Update.php:391
+#: 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:385
+#: src/Core/Update.php:371
#, php-format
msgid ""
"\n"
@@ -2896,28 +3091,28 @@ msgstr "\n\t\t\t\tA Friendica adatbázisa sikeresen frissítve lett: %s → %s."
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"
@@ -2925,20 +3120,20 @@ 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:221
+#: 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:225
+#: src/Database/DBStructure.php:236
#, php-format
msgid "%s: Database update"
msgstr "%s: adatbázis-frissítés"
-#: src/Database/DBStructure.php:482
+#: src/Database/DBStructure.php:493
#, php-format
msgid "%s: updating %s table."
msgstr "%s: a(z) %s tábla frissítése."
@@ -2969,82 +3164,122 @@ 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:1217 src/Module/Moderation/Users/Pending.php:102
+#: 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/Circle.php:543
+msgid "Everybody"
+msgstr "Mindenki"
+
+#: src/Model/Circle.php:562
+msgid "edit"
+msgstr "szerkesztés"
+
+#: src/Model/Circle.php:599
+msgid "add"
+msgstr "hozzáadás"
+
+#: src/Model/Circle.php:604
+msgid "Edit circle"
+msgstr "Kör szerkesztése"
+
+#: src/Model/Circle.php:605 src/Module/Circle.php:193
+msgid "Contacts not in any circle"
+msgstr "Egyetlen körben sem lévő partnerek"
+
+#: src/Model/Circle.php:607
+msgid "Create a new circle"
+msgstr "Új kör létrehozása"
+
+#: src/Model/Circle.php:608 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:609
+msgid "Edit circles"
+msgstr "Körök szerkesztése"
+
+#: src/Model/Contact.php:1260 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:1652
+#: src/Model/Contact.php:1714
msgid "Organisation"
msgstr "Szervezet"
-#: src/Model/Contact.php:1660
-msgid "Forum"
-msgstr "Fórum"
+#: src/Model/Contact.php:1722
+msgid "Group"
+msgstr "Csoport"
-#: src/Model/Contact.php:2952
+#: src/Model/Contact.php:3025
msgid "Disallowed profile URL."
msgstr "Nem engedélyezett profil URL."
-#: src/Model/Contact.php:2957 src/Module/Friendica.php:83
+#: src/Model/Contact.php:3030 src/Module/Friendica.php:101
msgid "Blocked domain"
msgstr "Tiltott tartomány"
-#: src/Model/Contact.php:2962
+#: src/Model/Contact.php:3035
msgid "Connect URL missing."
msgstr "A kapcsolódási URL hiányzik."
-#: src/Model/Contact.php:2971
+#: src/Model/Contact.php:3044
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:2989
+#: src/Model/Contact.php:3062
#, 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:3006
+#: src/Model/Contact.php:3079
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:3008
+#: src/Model/Contact.php:3081
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:3011
+#: src/Model/Contact.php:3084
msgid "An author or name was not found."
msgstr "Egy szerző vagy név nem található."
-#: src/Model/Contact.php:3014
+#: src/Model/Contact.php:3087
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:3017
+#: src/Model/Contact.php:3090
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:3018
+#: src/Model/Contact.php:3091
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:3024
+#: src/Model/Contact.php:3097
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:3029
+#: src/Model/Contact.php:3102
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:3094
+#: src/Model/Contact.php:3168
msgid "Unable to retrieve contact information."
msgstr "Nem lehet lekérni a partner információit."
@@ -3052,54 +3287,54 @@ msgstr "Nem lehet lekérni a partner információit."
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:75 src/Model/Event.php:92 src/Model/Event.php:471
-#: src/Model/Event.php:940
+#: 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:78 src/Model/Event.php:98 src/Model/Event.php:472
-#: src/Model/Event.php:944
+#: 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:421
+#: src/Model/Event.php:419
msgid "all-day"
msgstr "egész nap"
-#: src/Model/Event.php:447
+#: src/Model/Event.php:445
msgid "Sept"
msgstr "Szept"
-#: src/Model/Event.php:464 src/Module/Calendar/Show.php:128
+#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128
#: src/Util/Temporal.php:343
msgid "today"
msgstr "ma"
-#: src/Model/Event.php:465 src/Module/Calendar/Show.php:129
-#: src/Module/Settings/Display.php:232 src/Util/Temporal.php:353
+#: 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 "hónap"
-#: src/Model/Event.php:466 src/Module/Calendar/Show.php:130
-#: src/Module/Settings/Display.php:233 src/Util/Temporal.php:354
+#: 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 "hét"
-#: src/Model/Event.php:467 src/Module/Calendar/Show.php:131
-#: src/Module/Settings/Display.php:234 src/Util/Temporal.php:355
+#: 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 "nap"
-#: src/Model/Event.php:469
+#: src/Model/Event.php:467
msgid "No events to display"
msgstr "Nincsenek megjelenítendő események"
-#: src/Model/Event.php:518 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69
+#: 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:559 src/Module/Calendar/Event/Show.php:67
+#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67
msgid "Event not found."
msgstr "Az esemény nem található."
@@ -3131,143 +3366,99 @@ msgstr "D H:i"
msgid "g:i A"
msgstr "H:i"
-#: src/Model/Event.php:959 src/Model/Event.php:961
+#: src/Model/Event.php:964 src/Model/Event.php:966
msgid "Show map"
msgstr "Térkép megjelenítése"
-#: src/Model/Event.php:960
+#: src/Model/Event.php:965
msgid "Hide map"
msgstr "Térkép elrejtése"
-#: src/Model/Event.php:1053
+#: src/Model/Event.php:1058
#, php-format
msgid "%s's birthday"
msgstr "%s születésnapja"
-#: src/Model/Event.php:1054
+#: 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:512
-msgid "Default privacy group for new contacts"
-msgstr "Alapértelmezett adatvédelmi csoport az új partnerekhez"
-
-#: src/Model/Group.php:544
-msgid "Everybody"
-msgstr "Mindenki"
-
-#: src/Model/Group.php:563
-msgid "edit"
-msgstr "szerkesztés"
-
-#: src/Model/Group.php:595
-msgid "add"
-msgstr "hozzáadás"
-
-#: src/Model/Group.php:600
-msgid "Edit group"
-msgstr "Csoport szerkesztése"
-
-#: src/Model/Group.php:601 src/Module/Group.php:192
-msgid "Contacts not in any group"
-msgstr "Egyetlen csoportban sem lévő partnerek"
-
-#: src/Model/Group.php:603
-msgid "Create a new group"
-msgstr "Új csoport létrehozása"
-
-#: src/Model/Group.php:604 src/Module/Group.php:177 src/Module/Group.php:200
-#: src/Module/Group.php:275
-msgid "Group Name: "
-msgstr "Csoport neve: "
-
-#: src/Model/Group.php:605
-msgid "Edit groups"
-msgstr "Csoportok szerkesztése"
-
-#: src/Model/Item.php:2023
+#: src/Model/Item.php:2080
#, php-format
msgid "Detected languages in this post:\\n%s"
msgstr "A bejegyzésben felismert nyelvek:\\n%s"
-#: src/Model/Item.php:2931
+#: src/Model/Item.php:3025
msgid "activity"
msgstr "tevékenység"
-#: src/Model/Item.php:2933
+#: src/Model/Item.php:3027
msgid "comment"
msgstr "hozzászólás"
-#: src/Model/Item.php:2936 src/Module/Post/Tag/Add.php:123
+#: src/Model/Item.php:3030 src/Module/Post/Tag/Add.php:123
msgid "post"
msgstr "bejegyzés"
-#: src/Model/Item.php:3105
+#: src/Model/Item.php:3200
#, php-format
msgid "%s is blocked"
msgstr "%s tiltva van"
-#: src/Model/Item.php:3107
+#: src/Model/Item.php:3202
#, php-format
msgid "%s is ignored"
msgstr "%s mellőzve van"
-#: src/Model/Item.php:3109
+#: src/Model/Item.php:3204
#, php-format
msgid "Content from %s is collapsed"
msgstr "A(z) %s helyről származó tartalom összecsukva"
-#: src/Model/Item.php:3113
+#: src/Model/Item.php:3208
#, php-format
msgid "Content warning: %s"
msgstr "Tartalom figyelmeztetés: %s"
-#: src/Model/Item.php:3557
+#: src/Model/Item.php:3670
msgid "bytes"
msgstr "bájt"
-#: src/Model/Item.php:3588
+#: src/Model/Item.php:3701
#, 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:3590
+#: src/Model/Item.php:3703
#, 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:3595
+#: src/Model/Item.php:3708
#, 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:3597
+#: src/Model/Item.php:3710
#, php-format
msgid "%d voter."
msgid_plural "%d voters."
msgstr[0] "%d szavazó."
msgstr[1] "%d szavazó."
-#: src/Model/Item.php:3599
+#: src/Model/Item.php:3712
#, php-format
msgid "Poll end: %s"
msgstr "Szavazás vége: %s"
-#: src/Model/Item.php:3633 src/Model/Item.php:3634
+#: src/Model/Item.php:3746 src/Model/Item.php:3747
msgid "View on separate page"
msgstr "Megtekintés külön oldalon"
@@ -3275,294 +3466,295 @@ msgstr "Megtekintés külön oldalon"
msgid "[no subject]"
msgstr "[nincs tárgy]"
-#: src/Model/Photo.php:1184 src/Module/Media/Photo/Upload.php:171
+#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170
msgid "Wall Photos"
msgstr "Falfényképek"
-#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:283
+#: 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:363
+#: src/Model/Profile.php:361
msgid "Change profile photo"
msgstr "Profilfénykép megváltoztatása"
-#: src/Model/Profile.php:376 src/Module/Directory.php:152
+#: src/Model/Profile.php:374 src/Module/Directory.php:152
#: src/Module/Profile/Profile.php:209
msgid "Homepage:"
msgstr "Honlap:"
-#: src/Model/Profile.php:377 src/Module/Contact/Profile.php:385
+#: 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:467
+#: src/Model/Profile.php:465
msgid "Atom feed"
msgstr "Atom hírforrás"
-#: src/Model/Profile.php:474
+#: src/Model/Profile.php:472
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:511
+#: src/Model/Profile.php:509
msgid "F d"
msgstr "F j."
-#: src/Model/Profile.php:575 src/Model/Profile.php:664
+#: src/Model/Profile.php:573 src/Model/Profile.php:662
msgid "[today]"
msgstr "[ma]"
-#: src/Model/Profile.php:584
+#: src/Model/Profile.php:582
msgid "Birthday Reminders"
msgstr "Születésnapi emlékeztetők"
-#: src/Model/Profile.php:585
+#: src/Model/Profile.php:583
msgid "Birthdays this week:"
msgstr "Születésnapok ezen a héten:"
-#: src/Model/Profile.php:613
+#: src/Model/Profile.php:611
msgid "g A l F d"
msgstr "F j., l, H"
-#: src/Model/Profile.php:651
+#: src/Model/Profile.php:649
msgid "[No description]"
msgstr "[Nincs leírás]"
-#: src/Model/Profile.php:677
+#: src/Model/Profile.php:675
msgid "Event Reminders"
msgstr "Eseményemlékeztetők"
-#: src/Model/Profile.php:678
+#: src/Model/Profile.php:676
msgid "Upcoming events the next 7 days:"
msgstr "Közelgő események a következő 7 napon:"
-#: src/Model/Profile.php:875
+#: src/Model/Profile.php:873
#, php-format
msgid "OpenWebAuth: %1$s welcomes %2$s"
msgstr "OpenWebAuth: %1$s üdvözli őt: %2$s"
-#: src/Model/Profile.php:1015
+#: src/Model/Profile.php:1013
msgid "Hometown:"
msgstr "Szülőváros:"
-#: src/Model/Profile.php:1016
+#: src/Model/Profile.php:1014
msgid "Marital Status:"
msgstr "Családi állapot:"
-#: src/Model/Profile.php:1017
+#: src/Model/Profile.php:1015
msgid "With:"
msgstr "Ezzel:"
-#: src/Model/Profile.php:1018
+#: src/Model/Profile.php:1016
msgid "Since:"
msgstr "Ekkortól:"
-#: src/Model/Profile.php:1019
+#: src/Model/Profile.php:1017
msgid "Sexual Preference:"
msgstr "Szexuális irányultság:"
-#: src/Model/Profile.php:1020
+#: src/Model/Profile.php:1018
msgid "Political Views:"
msgstr "Politikai nézetek:"
-#: src/Model/Profile.php:1021
+#: src/Model/Profile.php:1019
msgid "Religious Views:"
msgstr "Vallási néztek:"
-#: src/Model/Profile.php:1022
+#: src/Model/Profile.php:1020
msgid "Likes:"
msgstr "Kedvelések:"
-#: src/Model/Profile.php:1023
+#: src/Model/Profile.php:1021
msgid "Dislikes:"
msgstr "Nem kedvelések:"
-#: src/Model/Profile.php:1024
+#: src/Model/Profile.php:1022
msgid "Title/Description:"
msgstr "Cím vagy leírás:"
-#: src/Model/Profile.php:1025 src/Module/Admin/Summary.php:221
+#: 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 "Összefoglaló"
-#: src/Model/Profile.php:1026
+#: src/Model/Profile.php:1024
msgid "Musical interests"
msgstr "Zenei érdeklődések"
-#: src/Model/Profile.php:1027
+#: src/Model/Profile.php:1025
msgid "Books, literature"
msgstr "Könyvek, irodalom"
-#: src/Model/Profile.php:1028
+#: src/Model/Profile.php:1026
msgid "Television"
msgstr "Televízió"
-#: src/Model/Profile.php:1029
+#: src/Model/Profile.php:1027
msgid "Film/dance/culture/entertainment"
msgstr "Film, tánc, kultúra, szórakozás"
-#: src/Model/Profile.php:1030
+#: src/Model/Profile.php:1028
msgid "Hobbies/Interests"
msgstr "Hobbik, érdeklődések"
-#: src/Model/Profile.php:1031
+#: src/Model/Profile.php:1029
msgid "Love/romance"
msgstr "Szerelem, romantika"
-#: src/Model/Profile.php:1032
+#: src/Model/Profile.php:1030
msgid "Work/employment"
msgstr "Munka, foglalkoztatás"
-#: src/Model/Profile.php:1033
+#: src/Model/Profile.php:1031
msgid "School/education"
msgstr "Iskola, oktatás"
-#: src/Model/Profile.php:1034
+#: src/Model/Profile.php:1032
msgid "Contact information and Social Networks"
msgstr "Partnerinformációk és közösségi hálózatok"
-#: src/Model/User.php:214 src/Model/User.php:1120
+#: src/Model/User.php:227 src/Model/User.php:1186
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:620 src/Model/User.php:653
msgid "Login failed"
msgstr "Bejelentkezés sikertelen"
-#: src/Model/User.php:637
+#: src/Model/User.php:685
msgid "Not enough information to authenticate"
msgstr "Nincs elegendő információ a hitelesítéshez"
-#: src/Model/User.php:754
+#: src/Model/User.php:806
msgid "Password can't be empty"
msgstr "A jelszó nem lehet üres"
-#: src/Model/User.php:796
+#: src/Model/User.php:848
msgid "Empty passwords are not allowed."
msgstr "Az üres jelszavak nem megengedettek."
-#: src/Model/User.php:800
+#: src/Model/User.php:852
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:804
+#: src/Model/User.php:856
msgid "The password length is limited to 72 characters."
msgstr "A jelszó hossza 72 karakterre van korlátozva."
-#: src/Model/User.php:808
+#: src/Model/User.php:860
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:1003
+#: src/Model/User.php:1069
msgid "Passwords do not match. Password unchanged."
msgstr "A jelszavak nem egyeznek. A jelszó változatlan maradt."
-#: src/Model/User.php:1010
+#: src/Model/User.php:1076
msgid "An invitation is required."
msgstr "Egy meghívás szükséges."
-#: src/Model/User.php:1014
+#: src/Model/User.php:1080
msgid "Invitation could not be verified."
msgstr "A meghívást nem sikerült ellenőrizni."
-#: src/Model/User.php:1022
+#: src/Model/User.php:1088
msgid "Invalid OpenID url"
msgstr "Érvénytelen OpenID URL"
-#: src/Model/User.php:1035 src/Security/Authentication.php:241
+#: 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 "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:1035 src/Security/Authentication.php:241
+#: src/Model/User.php:1101 src/Security/Authentication.php:241
msgid "The error message was:"
msgstr "A hibaüzenet ez volt:"
-#: src/Model/User.php:1041
+#: src/Model/User.php:1107
msgid "Please enter the required information."
msgstr "Adja meg a szükséges információkat."
-#: src/Model/User.php:1055
+#: 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 "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:1062
+#: 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] "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:1066
+#: 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] "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:1074
+#: src/Model/User.php:1140
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:1079
+#: src/Model/User.php:1145
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:1083
+#: src/Model/User.php:1149
msgid "Not a valid email address."
msgstr "Nem érvényes e-mail-cím."
-#: src/Model/User.php:1086
+#: src/Model/User.php:1152
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:1090 src/Model/User.php:1096
+#: src/Model/User.php:1156 src/Model/User.php:1162
msgid "Cannot use that email."
msgstr "Nem lehet használni azt az e-mail-címet."
-#: src/Model/User.php:1102
+#: src/Model/User.php:1168
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:1110 src/Model/User.php:1167
+#: src/Model/User.php:1176 src/Model/User.php:1233
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:1154 src/Model/User.php:1158
+#: src/Model/User.php:1220 src/Model/User.php:1224
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:1181
+#: src/Model/User.php:1247
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:1188
+#: src/Model/User.php:1254
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:1193
+#: src/Model/User.php:1259
msgid "Friends"
msgstr "Ismerősök"
-#: src/Model/User.php:1197
+#: src/Model/User.php:1263
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:1236
+#: src/Model/User.php:1307
msgid "Profile Photos"
msgstr "Profilfényképek"
-#: src/Model/User.php:1431
+#: src/Model/User.php:1487
#, php-format
msgid ""
"\n"
@@ -3570,7 +3762,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:1434
+#: src/Model/User.php:1490
#, php-format
msgid ""
"\n"
@@ -3602,12 +3794,12 @@ msgid ""
"\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/settings/removeme\n\n\t\t\tKöszönjük, és üdvözöljük a %4$s oldalon."
-#: src/Model/User.php:1467 src/Model/User.php:1574
+#: src/Model/User.php:1523 src/Model/User.php:1630
#, php-format
msgid "Registration details for %s"
msgstr "Regisztrációs részletek ehhez: %s"
-#: src/Model/User.php:1487
+#: src/Model/User.php:1543
#, php-format
msgid ""
"\n"
@@ -3622,12 +3814,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:1506
+#: src/Model/User.php:1562
#, php-format
msgid "Registration at %s"
msgstr "Regisztráció itt: %s"
-#: src/Model/User.php:1530
+#: src/Model/User.php:1586
#, php-format
msgid ""
"\n"
@@ -3636,7 +3828,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:1538
+#: src/Model/User.php:1594
#, php-format
msgid ""
"\n"
@@ -3693,10 +3885,10 @@ msgid "Enable"
msgstr "Engedélyezés"
#: src/Module/Admin/Addons/Details.php:111
-#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:209
+#: 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:220
+#: 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
@@ -3706,7 +3898,7 @@ msgstr "Adminisztráció"
#: src/Module/Admin/Addons/Details.php:112
#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92
-#: src/Module/BaseSettings.php:134
+#: src/Module/BaseSettings.php:132
msgid "Addons"
msgstr "Bővítmények"
@@ -3737,10 +3929,10 @@ 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:560 src/Module/Settings/Addons.php:78
+#: 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:169 src/Module/Settings/Display.php:247
+#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260
#: src/Module/Settings/Features.php:76
msgid "Save Settings"
msgstr "Beállítások mentése"
@@ -3825,75 +4017,77 @@ msgstr "%s funkció zárolása"
msgid "Manage Additional Features"
msgstr "További funkciók kezelése"
-#: src/Module/Admin/Federation.php:75
+#: 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:149 src/Module/Admin/Federation.php:398
+#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403
msgid "unknown"
msgstr "ismeretlen"
-#: src/Module/Admin/Federation.php:182
+#: 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:183
+#: 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:184
+#: 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:185
+#: 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:186
+#: 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:189
+#: 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:194
+#: 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:204
+#: 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:210 src/Module/BaseAdmin.php:87
+#: 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:214
+#: src/Module/Admin/Federation.php:219
#, php-format
msgid ""
"Currently this node is aware of %2$s node (%3$s active users last month, "
@@ -4086,7 +4280,8 @@ msgstr "Parancs"
msgid "Job Parameters"
msgstr "Feladat paraméterei"
-#: src/Module/Admin/Queue.php:78 src/Module/Settings/OAuth.php:74
+#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95
+#: src/Module/Settings/OAuth.php:74
msgid "Created"
msgstr "Létrehozva"
@@ -4099,11 +4294,11 @@ msgstr "Prioritás"
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:169
+#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:178
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:330 src/Module/Settings/Display.php:179
+#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188
#, php-format
msgid "%s - (Experimental)"
msgstr "%s – (kísérleti)"
@@ -4193,7 +4388,7 @@ msgid "Policies"
msgstr "Irányelvek"
#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252
-#: src/Module/Contact.php:516 src/Module/Profile/Profile.php:276
+#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276
msgid "Advanced"
msgstr "Speciális"
@@ -4523,8 +4718,8 @@ msgstr "Alapértelmezetten személyes bejegyzések az új felhasználóknál"
#: 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:456
msgid "Don't include post content in email notifications"
@@ -4724,7 +4919,7 @@ msgstr "Proxy URL"
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:479
msgid "Network timeout"
@@ -4938,14 +5133,14 @@ 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:507
-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"
+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: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:509
msgid "Maximum number of parallel workers"
@@ -4988,7 +5183,7 @@ msgid ""
"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:513 src/Module/Contact/Profile.php:286
+#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309
#: src/Module/Settings/TwoFactor/Index.php:125
msgid "Disabled"
msgstr "Letiltva"
@@ -5183,51 +5378,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:142
-#, 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:156
-#, 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:172
+#: 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:180
+#: 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:188
+#: 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:199
+#: src/Module/Admin/Summary.php:175
msgid "Message queues"
msgstr "Üzenet várakozási sorai"
-#: src/Module/Admin/Summary.php:205
+#: src/Module/Admin/Summary.php:181
msgid "Server Settings"
msgstr "Kiszolgálóbeállítások"
-#: src/Module/Admin/Summary.php:223
+#: src/Module/Admin/Summary.php:199
msgid "Version"
msgstr "Verzió"
-#: src/Module/Admin/Summary.php:227
+#: src/Module/Admin/Summary.php:203
msgid "Active addons"
msgstr "Bekapcsolt bővítmények"
@@ -5324,7 +5508,7 @@ msgstr "A szabályok"
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:279
+#: src/Module/Api/ApiResponse.php:293
#, php-format
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."
@@ -5380,11 +5564,11 @@ msgstr "Az elem nem található."
msgid "Please login to continue."
msgstr "Jelentkezzen be a folytatáshoz."
-#: src/Module/BaseAdmin.php:63 src/Module/BaseModeration.php:86
+#: src/Module/BaseAdmin.php:63
msgid "You don't have access to administration pages."
msgstr "Nincs hozzáférése az adminisztrációs oldalakhoz."
-#: src/Module/BaseAdmin.php:67 src/Module/BaseModeration.php:90
+#: src/Module/BaseAdmin.php:67
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
@@ -5394,11 +5578,11 @@ msgstr "Az alkezelt fiókok nem férhetnek hozzá az adminisztrációs oldalakho
msgid "Overview"
msgstr "Áttekintő"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:111
+#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
msgid "Configuration"
msgstr "Beállítás"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:112
+#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
msgid "Additional features"
msgstr "További funkciók"
@@ -5418,7 +5602,7 @@ msgstr "Elhalasztott feldolgozók vizsgálata"
msgid "Inspect worker Queue"
msgstr "Feldolgozó várakozási sorának vizsgálata"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:119
+#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
msgid "Diagnostics"
msgstr "Diagnosztika"
@@ -5446,7 +5630,7 @@ msgstr "ActivityPub beszélgetés"
msgid "Addon Features"
msgstr "Bővítményszolgáltatások"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:128
+#: 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"
@@ -5478,32 +5662,46 @@ 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/BaseModeration.php:112 src/Module/Moderation/Users/Index.php:148
+#: 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:114
+#: src/Module/BaseModeration.php:115
msgid "Tools"
msgstr "Eszközök"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:116
msgid "Contact Blocklist"
msgstr "Partnertiltólista"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:117
msgid "Server Blocklist"
msgstr "Kiszolgáló-tiltólista"
-#: src/Module/BaseModeration.php:117 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
msgid "Delete Item"
msgstr "Elem törlése"
-#: src/Module/BaseModeration.php:120 src/Module/Moderation/Item/Source.php:76
+#: 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:478
+#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507
msgid "Profile Details"
msgstr "Profil részletei"
@@ -5527,21 +5725,21 @@ msgstr "Bejegyzések, amelyek közzétételre vannak üzemezve"
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/BaseSearch.php:123 src/Module/Contact/MatchInterests.php:139
+#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139
msgid "No matches"
msgstr "Nincs találat"
-#: src/Module/BaseSearch.php:149
+#: src/Module/BaseSearch.php:147
#, php-format
msgid ""
"%d result was filtered out because your node blocks the domain it is "
@@ -5554,36 +5752,40 @@ msgid_plural ""
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:80
+#: src/Module/BaseSettings.php:78
msgid "Account"
msgstr "Fiók"
-#: src/Module/BaseSettings.php:87 src/Module/Security/TwoFactor/Verify.php:96
+#: 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:120
+#: src/Module/BaseSettings.php:118
msgid "Display"
msgstr "Megjelenítés"
-#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:204
+#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204
msgid "Social Networks"
msgstr "Közösségi hálózatok"
-#: src/Module/BaseSettings.php:141 src/Module/Settings/Delegation.php:170
+#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172
msgid "Manage Accounts"
msgstr "Fiókok kezelése"
-#: src/Module/BaseSettings.php:148
+#: src/Module/BaseSettings.php:146
msgid "Connected apps"
msgstr "Kapcsolt alkalmazások"
-#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:98
+#: src/Module/BaseSettings.php:153
+msgid "Remote servers"
+msgstr "Távoli kiszolgálók"
+
+#: src/Module/BaseSettings.php:160 src/Module/Settings/UserExport.php:98
msgid "Export personal data"
msgstr "Személyes adatok exportálása"
-#: src/Module/BaseSettings.php:162
+#: src/Module/BaseSettings.php:167
msgid "Remove account"
msgstr "Fiók eltávolítása"
@@ -5703,10 +5905,113 @@ msgstr "Nézet"
msgid "Create New Event"
msgstr "Új esemény létrehozása"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:235
+#: 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 "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."
@@ -5714,159 +6019,146 @@ msgid_plural "%d contacts edited."
msgstr[0] "%d partner szerkesztve."
msgstr[1] "%d partner szerkesztve."
-#: src/Module/Contact.php:341
+#: src/Module/Contact.php:348
msgid "Show all contacts"
msgstr "Összes partner megjelenítése"
-#: src/Module/Contact.php:346 src/Module/Contact.php:414
+#: 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:349
+#: 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:354 src/Module/Contact.php:415
+#: src/Module/Contact.php:361 src/Module/Contact.php:435
#: src/Module/Moderation/BaseUsers.php:93
msgid "Blocked"
msgstr "Tiltva"
-#: src/Module/Contact.php:357
+#: src/Module/Contact.php:364
msgid "Only show blocked contacts"
msgstr "Csak a tiltott partnerek megjelenítése"
-#: src/Module/Contact.php:362 src/Module/Contact.php:417
-#: src/Object/Post.php:345
+#: 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 "Mellőzve"
-#: src/Module/Contact.php:365
+#: src/Module/Contact.php:372
msgid "Only show ignored contacts"
msgstr "Csak a mellőzött partnerek megjelenítése"
-#: src/Module/Contact.php:370 src/Module/Contact.php:418
+#: src/Module/Contact.php:377 src/Module/Contact.php:444
msgid "Collapsed"
msgstr "Összecsukva"
-#: src/Module/Contact.php:373
+#: src/Module/Contact.php:380
msgid "Only show collapsed contacts"
msgstr "Csak az összecsukott partnerek megjelenítése"
-#: src/Module/Contact.php:378 src/Module/Contact.php:419
+#: src/Module/Contact.php:385 src/Module/Contact.php:447
msgid "Archived"
msgstr "Archiválva"
-#: src/Module/Contact.php:381
+#: src/Module/Contact.php:388
msgid "Only show archived contacts"
msgstr "Csak az archivált partnerek megjelenítése"
-#: src/Module/Contact.php:386 src/Module/Contact.php:416
+#: src/Module/Contact.php:393 src/Module/Contact.php:438
msgid "Hidden"
msgstr "Rejtett"
-#: src/Module/Contact.php:389
+#: src/Module/Contact.php:396
msgid "Only show hidden contacts"
msgstr "Csak a rejtett partnerek megjelenítése"
-#: src/Module/Contact.php:397
-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:430
+#: src/Module/Contact.php:459
msgid "Search your contacts"
msgstr "Partnerek keresése"
-#: src/Module/Contact.php:431 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:438
+#: src/Module/Contact.php:467
msgid "Update"
msgstr "Frissítés"
-#: src/Module/Contact.php:439 src/Module/Contact/Profile.php:477
+#: 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:440 src/Module/Contact/Profile.php:485
+#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519
msgid "Unignore"
msgstr "Mellőzés feloldása"
-#: src/Module/Contact.php:441 src/Module/Contact/Profile.php:493
+#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527
msgid "Uncollapse"
msgstr "Összecsukás megszüntetése"
-#: src/Module/Contact.php:443
+#: src/Module/Contact.php:472
msgid "Batch Actions"
msgstr "Tömeges műveletek"
-#: src/Module/Contact.php:486
+#: src/Module/Contact.php:515
msgid "Conversations started by this contact"
msgstr "A partner által elkezdett beszélgetések"
-#: src/Module/Contact.php:491
+#: src/Module/Contact.php:520
msgid "Posts and Comments"
msgstr "Bejegyzések és hozzászólások"
-#: src/Module/Contact.php:494
+#: src/Module/Contact.php:523
msgid "Individual Posts and Replies"
msgstr "Egyéni bejegyzések és válaszok"
-#: src/Module/Contact.php:502
+#: src/Module/Contact.php:531
msgid "Posts containing media objects"
msgstr "Médiaobjektumokat tartalmazó bejegyzések"
-#: src/Module/Contact.php:509
+#: src/Module/Contact.php:539
msgid "View all known contacts"
msgstr "Összes ismert partner megtekintése"
-#: src/Module/Contact.php:519
+#: src/Module/Contact.php:550
msgid "Advanced Contact Settings"
msgstr "Speciális partnerbeállítások"
-#: src/Module/Contact.php:555
+#: src/Module/Contact.php:586
msgid "Mutual Friendship"
msgstr "Kölcsönös ismeretség"
-#: src/Module/Contact.php:559
+#: src/Module/Contact.php:590
msgid "is a fan of yours"
msgstr "az Ön rajongója"
-#: src/Module/Contact.php:563
+#: src/Module/Contact.php:594
msgid "you are a fan of"
msgstr "Ön rajong érte:"
-#: src/Module/Contact.php:581
+#: src/Module/Contact.php:612
msgid "Pending outgoing contact request"
msgstr "Függőben lévő kimenő partnerkérés"
-#: src/Module/Contact.php:583
+#: 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:596 src/Module/Contact/Profile.php:346
+#: 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]"
-#: 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
-#: src/Module/Group.php:97 src/Module/Group.php:106
-msgid "Contact not found."
-msgstr "A partner nem található."
-
#: src/Module/Contact/Advanced.php:99
msgid "Contact update failed."
msgstr "A partner frissítése sikertelen."
@@ -5877,6 +6169,7 @@ 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
@@ -5903,11 +6196,6 @@ 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:66 src/Module/Conversation/Network.php:189
-#: src/Module/Group.php:101
-msgid "Invalid contact."
-msgstr "Érvénytelen partner."
-
#: src/Module/Contact/Contacts.php:89
msgid "No known contacts."
msgstr "Nincsenek ismert partnerek."
@@ -5964,7 +6252,7 @@ msgstr[0] "Partner (%s)"
msgstr[1] "Partnerek (%s)"
#: 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/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
@@ -6002,15 +6290,16 @@ msgstr "Válaszoljon a következőre:"
msgid "Your Identity Address:"
msgstr "Az Ön személyazonosság-címe:"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:375
+#: 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:387
+#: 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:"
@@ -6036,8 +6325,8 @@ 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:82 src/Module/Media/Photo/Upload.php:87
-#: src/Module/Media/Photo/Upload.php:136
+#: 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."
@@ -6049,248 +6338,312 @@ msgstr "Nincs illesztendő kulcsszó. Adjon kulcsszavakat a profiljához."
msgid "Profile Match"
msgstr "Profilegyezés"
-#: src/Module/Contact/Profile.php:128
+#: 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:178
+#: src/Module/Contact/Profile.php:190
msgid "Contact has been unblocked"
msgstr "A partner tiltása fel lett oldva"
-#: src/Module/Contact/Profile.php:182
+#: src/Module/Contact/Profile.php:194
msgid "Contact has been blocked"
msgstr "A partner tiltva lett"
-#: src/Module/Contact/Profile.php:194
+#: src/Module/Contact/Profile.php:206
msgid "Contact has been unignored"
-msgstr "A partner figyelmen kívül hagyása fel lett oldva"
-
-#: src/Module/Contact/Profile.php:198
-msgid "Contact has been ignored"
-msgstr "A partner figyelmen kívül lett hagyva"
+msgstr "A partner mellőzése fel lett oldva"
#: src/Module/Contact/Profile.php:210
-msgid "Contact has been uncollapsed"
-msgstr "A partner figyelmen összecsukása meg lett szüntetve"
+msgid "Contact has been ignored"
+msgstr "A partner mellőzve lett"
-#: src/Module/Contact/Profile.php:214
+#: 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:242
+#: 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:243
+#: src/Module/Contact/Profile.php:255
#, php-format
msgid "You are sharing with %s"
msgstr "Ön megoszt %s partnerrel"
-#: src/Module/Contact/Profile.php:244
+#: src/Module/Contact/Profile.php:256
#, php-format
msgid "%s is sharing with you"
msgstr "%s megoszt Önnel"
-#: src/Module/Contact/Profile.php:260
+#: 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:262
+#: 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:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was not successful)"
msgstr "(a frissítés nem volt sikeres)"
-#: src/Module/Contact/Profile.php:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was successful)"
msgstr "(a frissítés sikeres volt)"
-#: src/Module/Contact/Profile.php:267 src/Module/Contact/Profile.php:448
+#: 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:271
+#: src/Module/Contact/Profile.php:294
#, php-format
msgid "Network type: %s"
msgstr "Hálózat típusa: %s"
-#: src/Module/Contact/Profile.php:276
+#: 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:282
+#: 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:284
+#: 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:287
+#: src/Module/Contact/Profile.php:310
msgid "Fetch information"
msgstr "Információk lekérése"
-#: src/Module/Contact/Profile.php:288
+#: src/Module/Contact/Profile.php:311
msgid "Fetch keywords"
msgstr "Kulcsszavak lekérése"
-#: src/Module/Contact/Profile.php:289
+#: 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:299 src/Module/Contact/Profile.php:304
-#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:315
+#: 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:300 src/Module/Contact/Profile.php:310
-#: src/Module/Contact/Profile.php:316
+#: 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:305 src/Module/Contact/Profile.php:311
+#: 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:328
+#: src/Module/Contact/Profile.php:353
msgid "Contact Information / Notes"
msgstr "Partner információ vagy jegyzetek"
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:354
msgid "Contact Settings"
msgstr "Partnerbeállítások"
-#: src/Module/Contact/Profile.php:337
+#: src/Module/Contact/Profile.php:362
msgid "Contact"
msgstr "Partner"
-#: src/Module/Contact/Profile.php:341
+#: src/Module/Contact/Profile.php:366
msgid "Their personal note"
msgstr "A személyes jegyzeteik"
-#: src/Module/Contact/Profile.php:343
+#: src/Module/Contact/Profile.php:368
msgid "Edit contact notes"
msgstr "Partner jegyzeteinek szerkesztése"
-#: src/Module/Contact/Profile.php:347
+#: 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:348
+#: 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:349
+#: src/Module/Contact/Profile.php:374
msgid "View conversations"
msgstr "Beszélgetések megtekintése"
-#: src/Module/Contact/Profile.php:354
+#: src/Module/Contact/Profile.php:379
msgid "Last update:"
msgstr "Utolsó frissítés:"
-#: src/Module/Contact/Profile.php:356
+#: src/Module/Contact/Profile.php:381
msgid "Update public posts"
msgstr "Nyilvános bejegyzések frissítése"
-#: src/Module/Contact/Profile.php:358 src/Module/Contact/Profile.php:458
+#: 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:360
+#: 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:361
+#: src/Module/Contact/Profile.php:386
msgid "Currently blocked"
msgstr "Jelenleg tiltva"
-#: src/Module/Contact/Profile.php:362
+#: src/Module/Contact/Profile.php:387
msgid "Currently ignored"
msgstr "Jelenleg mellőzve"
-#: src/Module/Contact/Profile.php:363
+#: src/Module/Contact/Profile.php:388
msgid "Currently collapsed"
msgstr "Jelenleg összecsukva"
-#: src/Module/Contact/Profile.php:364
+#: src/Module/Contact/Profile.php:389
msgid "Currently archived"
msgstr "Jelenleg archiválva"
-#: src/Module/Contact/Profile.php:367
+#: 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:367
+#: 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:368
+#: src/Module/Contact/Profile.php:395
msgid "Notification for new posts"
msgstr "Értesítés új bejegyzéseknél"
-#: src/Module/Contact/Profile.php:368
+#: 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:370
+#: src/Module/Contact/Profile.php:397
msgid "Keyword Deny List"
msgstr "Kulcsszavas tiltólista"
-#: src/Module/Contact/Profile.php:370
+#: 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:388
+#: src/Module/Contact/Profile.php:415
#: src/Module/Settings/TwoFactor/Index.php:139
msgid "Actions"
msgstr "Műveletek"
-#: src/Module/Contact/Profile.php:390
+#: 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:396
+#: 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:398
+#: 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:468
+#: 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:479
+#: src/Module/Contact/Profile.php:513
msgid "Toggle Blocked status"
msgstr "Tiltott állapot átváltása"
-#: src/Module/Contact/Profile.php:487
+#: src/Module/Contact/Profile.php:521
msgid "Toggle Ignored status"
msgstr "Mellőzött állapot átváltása"
-#: src/Module/Contact/Profile.php:495
+#: src/Module/Contact/Profile.php:529
msgid "Toggle Collapsed status"
msgstr "Összecsukott állapot átváltása"
-#: src/Module/Contact/Profile.php:502 src/Module/Contact/Revoke.php:106
+#: 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:504
+#: 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"
@@ -6302,10 +6655,6 @@ msgstr "Hibás kérés."
msgid "Unknown contact."
msgstr "Ismeretlen partner."
-#: src/Module/Contact/Revoke.php:73 src/Module/Group.php:110
-msgid "Contact is deleted."
-msgstr "A partner törölve."
-
#: src/Module/Contact/Revoke.php:77
msgid "Contact is being deleted."
msgstr "A partner törlésre került."
@@ -6353,102 +6702,54 @@ msgstr "A partner követése sikeresen meg lett szüntetve"
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:74
+#: 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 "Nincs találat."
+
+#: src/Module/Conversation/Channel.php:159
+msgid "Channel not available."
+msgstr "A csatorna nem érhető el."
+
+#: 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 "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:87
-msgid "Local Community"
-msgstr "Helyi közösség"
-
-#: src/Module/Conversation/Community.php:90
-msgid "Posts from local users on this server"
-msgstr "Bejegyzések a kiszolgálón lévő helyi felhasználóktól"
-
-#: src/Module/Conversation/Community.php:98
-msgid "Global Community"
-msgstr "Globális közösség"
-
-#: src/Module/Conversation/Community.php:101
-msgid "Posts from users of the whole federated network"
-msgstr "Bejegyzések a teljes föderált hálózat felhasználóitól"
-
-#: src/Module/Conversation/Community.php:134
-msgid "Own Contacts"
-msgstr "Saját partnerek"
-
-#: src/Module/Conversation/Community.php:138
-msgid "Include"
-msgstr "Tartalmazás"
-
-#: src/Module/Conversation/Community.php:139
-msgid "Hide"
-msgstr "Elrejtés"
-
-#: src/Module/Conversation/Community.php:156 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
-msgid "No results."
-msgstr "Nincs találat."
-
-#: src/Module/Conversation/Community.php:212
+#: src/Module/Conversation/Community.php:179
msgid "Community option not available."
msgstr "A közösségi beállítás nem érhető el."
-#: src/Module/Conversation/Community.php:228
+#: src/Module/Conversation/Community.php:195
msgid "Not available."
msgstr "Nem érhető el."
-#: src/Module/Conversation/Network.php:175
-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:179
+#: 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:257
-msgid "Latest Activity"
-msgstr "Legutóbbi tevékenység"
+#: src/Module/Conversation/Network.php:317
+msgid "Network feed not available."
+msgstr "A hálózati hírforrás nem érhető el."
-#: src/Module/Conversation/Network.php:260
-msgid "Sort by latest activity"
-msgstr "Rendezés a legutóbbi tevékenység szerint"
+#: src/Module/Conversation/Timeline.php:158
+msgid "Own Contacts"
+msgstr "Saját partnerek"
-#: src/Module/Conversation/Network.php:265
-msgid "Latest Posts"
-msgstr "Legutóbbi bejegyzések"
+#: src/Module/Conversation/Timeline.php:162
+msgid "Include"
+msgstr "Tartalmazás"
-#: src/Module/Conversation/Network.php:268
-msgid "Sort by post received date"
-msgstr "Rendezés a bejegyzés érkezési dátuma szerint"
-
-#: src/Module/Conversation/Network.php:273
-msgid "Latest Creation"
-msgstr "Legutóbbi létrehozás"
-
-#: src/Module/Conversation/Network.php:276
-msgid "Sort by post creation date"
-msgstr "Rendezés a bejegyzés létrehozási dátuma szerint"
-
-#: src/Module/Conversation/Network.php:281
-#: src/Module/Settings/Profile/Index.php:235
-msgid "Personal"
-msgstr "Személyes"
-
-#: src/Module/Conversation/Network.php:284
-msgid "Posts that mention or involve you"
-msgstr "Bejegyzések, amelyek említik vagy tartalmazzák Önt"
-
-#: src/Module/Conversation/Network.php:289 src/Object/Post.php:357
-msgid "Starred"
-msgstr "Csillagozott"
-
-#: src/Module/Conversation/Network.php:292
-msgid "Favourite Posts"
-msgstr "Kedvenc bejegyzések"
+#: src/Module/Conversation/Timeline.php:163
+msgid "Hide"
+msgstr "Elrejtés"
#: src/Module/Credits.php:44
msgid "Credits"
@@ -6666,7 +6967,7 @@ msgid "Twitter Source / Tweet URL (requires API key)"
msgstr "Twitter forrás vagy Tweet URL (API-kulcsot igényel)"
#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47
-#: src/Module/Settings/Profile/Index.php:144
+#: 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"
@@ -6795,138 +7096,58 @@ msgstr "Ismerősök ajánlása"
msgid "Suggest a friend for %s"
msgstr "Ismerős ajánlása %s számára"
-#: src/Module/Friendica.php:64
+#: src/Module/Friendica.php:82
msgid "Installed addons/apps:"
msgstr "Telepített bővítmények vagy alkalmazások:"
-#: src/Module/Friendica.php:69
+#: 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:74
+#: 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:81
+#: 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
msgid "Reason for the block"
msgstr "A tiltás oka"
-#: src/Module/Friendica.php:86
+#: 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:100
+#: 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:105
+#: 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:106
+#: 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:106
+#: src/Module/Friendica.php:124
msgid "the bugtracker at github"
msgstr "a GitHubon lévő hibakövetőt"
-#: src/Module/Friendica.php:107
+#: 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:56
-msgid "Could not create group."
-msgstr "Nem sikerült létrehozni a csoportot."
-
-#: src/Module/Group.php:67 src/Module/Group.php:213 src/Module/Group.php:237
-msgid "Group not found."
-msgstr "A csoport nem található."
-
-#: src/Module/Group.php:73
-msgid "Group name was not changed."
-msgstr "A csoport neve nem változott meg."
-
-#: src/Module/Group.php:91
-msgid "Unknown group."
-msgstr "Ismeretlen csoport."
-
-#: src/Module/Group.php:116
-msgid "Unable to add the contact to the group."
-msgstr "Nem lehet hozzáadni a partnert a csoporthoz."
-
-#: src/Module/Group.php:119
-msgid "Contact successfully added to group."
-msgstr "A partner sikeresen hozzáadva a csoporthoz."
-
-#: src/Module/Group.php:123
-msgid "Unable to remove the contact from the group."
-msgstr "Nem lehet eltávolítani a partnert a csoportból."
-
-#: src/Module/Group.php:126
-msgid "Contact successfully removed from group."
-msgstr "A partner sikeresen eltávolítva a csoportból."
-
-#: src/Module/Group.php:130
-msgid "Bad request."
-msgstr "Hibás kérés."
-
-#: src/Module/Group.php:169
-msgid "Save Group"
-msgstr "Csoport mentése"
-
-#: src/Module/Group.php:170
-msgid "Filter"
-msgstr "Szűrő"
-
-#: src/Module/Group.php:176
-msgid "Create a group of contacts/friends."
-msgstr "Partnerek vagy ismerősök csoportjának létrehozása."
-
-#: src/Module/Group.php:218
-msgid "Unable to remove group."
-msgstr "Nem lehet eltávolítani a csoportot."
-
-#: src/Module/Group.php:269
-msgid "Delete Group"
-msgstr "Csoport törlése"
-
-#: src/Module/Group.php:279
-msgid "Edit Group Name"
-msgstr "Csoport nevének szerkesztése"
-
-#: src/Module/Group.php:289
-msgid "Members"
-msgstr "Tagok"
-
-#: src/Module/Group.php:292
-msgid "Group is empty"
-msgstr "A csoport üres"
-
-#: src/Module/Group.php:305
-msgid "Remove contact from group"
-msgstr "Partner eltávolítása a csoportból"
-
-#: src/Module/Group.php:326
-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:340
-msgid "Add contact to group"
-msgstr "Partner hozzáadása a csoporthoz"
-
#: src/Module/HCard.php:45
msgid "No profile"
msgstr "Nincs profil"
@@ -7218,30 +7439,26 @@ msgstr "Új bejegyzés írása"
msgid "Visibility"
msgstr "Láthatóság"
-#: src/Module/Item/Compose.php:202
+#: src/Module/Item/Compose.php:203
msgid "Clear the location"
msgstr "A hely törlése"
-#: src/Module/Item/Compose.php:203
+#: 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:204
+#: 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/Compose.php:210
+#: 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/Display.php:136 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/Item/Feed.php:86
msgid "The feed for this item is unavailable."
msgstr "Ennek az elemnek a hírforrása nem érhető el."
@@ -7297,13 +7514,13 @@ msgstr "A fájl meghaladja a beállított %s méretkorlátot"
msgid "File upload failed."
msgstr "A fájl feltöltése sikertelen."
-#: src/Module/Media/Photo/Upload.php:153 src/Module/Media/Photo/Upload.php:154
+#: 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 "Nem lehet feldolgozni a képet."
-#: src/Module/Media/Photo/Upload.php:179 src/Module/Profile/Photos.php:237
+#: 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 "A kép feltöltése sikertelen."
@@ -7336,41 +7553,41 @@ msgstr "Törölve"
msgid "List of pending user deletions"
msgstr "Függőben lévő felhasználó-törlések listája"
-#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:491
+#: 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:498
+#: 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:505
-msgid "Public Forum"
-msgstr "Nyilvános fórum"
+#: 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:512
+#: 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 Forum"
-msgstr "Személyes fórum"
+msgid "Private Group"
+msgstr "Személyes csoport"
-#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:463
+#: 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:470
+#: 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:477
+#: 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:484
-msgid "Community Forum"
-msgstr "Közösségi fórum"
+#: 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"
@@ -7426,6 +7643,7 @@ 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"
@@ -7499,6 +7717,8 @@ 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"
@@ -7755,10 +7975,6 @@ msgstr "Kifejezés"
msgid "URL"
msgstr "URL"
-#: src/Module/Moderation/Item/Source.php:85
-msgid "Mention"
-msgstr "Említés"
-
#: src/Module/Moderation/Item/Source.php:86
msgid "Implicit Mention"
msgstr "Implicit említés"
@@ -7781,6 +7997,237 @@ msgstr "Győződjön meg arról, hogy a debug.store_source
beállí
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"
@@ -7790,8 +8237,8 @@ msgid "Automatic Follower Account"
msgstr "Automatikusan követő fiók"
#: src/Module/Moderation/Summary.php:55
-msgid "Public Forum Account"
-msgstr "Nyilvános fórum fiók"
+msgid "Public Group Account"
+msgstr "Nyilvános csoport fiók"
#: src/Module/Moderation/Summary.php:56
msgid "Automatic Friend Account"
@@ -7802,8 +8249,8 @@ msgid "Blog Account"
msgstr "Blog fiók"
#: src/Module/Moderation/Summary.php:58
-msgid "Private Forum Account"
-msgstr "Személyes fórumfiók"
+msgid "Private Group Account"
+msgstr "Személyes csoport fiók"
#: src/Module/Moderation/Summary.php:78
msgid "Registered users"
@@ -8103,11 +8550,11 @@ msgstr "Saját értesítések"
msgid "Show unread"
msgstr "Olvasatlanok megjelenítése"
-#: src/Module/Notifications/Ping.php:245
+#: src/Module/Notifications/Ping.php:246
msgid "{0} requested registration"
msgstr "{0} regisztrációt kért"
-#: src/Module/Notifications/Ping.php:254
+#: 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"
@@ -8126,7 +8573,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:77
+#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78
msgid "Incomplete request data"
msgstr "Befejezetlen kérésadat"
@@ -8137,11 +8584,11 @@ 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:82
+#: 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:104
+#: src/Module/OAuth/Token.php:108
msgid "Unsupported or missing grant type"
msgstr "Nem támogatott vagy hiányzó felhatalmazástípus"
@@ -8266,21 +8713,21 @@ msgstr "Közönség: %s
"
msgid "Attributed To: %s
"
msgstr "Neki tulajdonítható: %s
"
-#: src/Module/Photo.php:129
+#: src/Module/Photo.php:130
msgid "The Photo is not available."
msgstr "A fénykép nem érhető el."
-#: src/Module/Photo.php:154
+#: 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:191
+#: 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:193
+#: src/Module/Photo.php:194
#, php-format
msgid "Invalid photo with id %s."
msgstr "Érvénytelen %s azonosítóval rendelkező fénykép."
@@ -8321,7 +8768,7 @@ msgstr "Elem címkéjének eltávolítása"
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/Delegation.php:178
+#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180
#: src/Module/Settings/TwoFactor/Trusted.php:144
msgid "Remove"
msgstr "Eltávolítás"
@@ -8332,20 +8779,20 @@ msgstr "Nincsenek partnerek."
#: 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
+#: 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:1094 src/Protocol/OStatus.php:1012
+#: 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:1097 src/Protocol/OStatus.php:1016
+#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018
#, php-format
msgid "%s's comments"
msgstr "%s hozzászólásai"
@@ -8375,7 +8822,7 @@ msgstr "A kiszolgáló jelenleg nem tud új fájlfeltöltést fogadni, vegye fel
msgid "Image file is empty."
msgstr "A képfájl üres."
-#: src/Module/Profile/Photos.php:358
+#: src/Module/Profile/Photos.php:356
msgid "View Album"
msgstr "Album megtekintése"
@@ -8390,7 +8837,7 @@ msgid ""
"class=\"btn btn-sm pull-right\">Cancel"
msgstr "A profilját jelenleg %s nevében nézi Mégse"
-#: src/Module/Profile/Profile.php:167 src/Module/Settings/Account.php:575
+#: src/Module/Profile/Profile.php:167
msgid "Full Name:"
msgstr "Teljes név:"
@@ -8411,12 +8858,12 @@ msgid "Birthday:"
msgstr "Születésnap:"
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
msgid "Age: "
msgstr "Életkor: "
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -8424,13 +8871,13 @@ msgstr[0] "%d éves"
msgstr[1] "%d éves"
#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:246
+#: src/Module/Settings/Profile/Index.php:284
msgid "Description:"
msgstr "Leírás:"
#: src/Module/Profile/Profile.php:261
-msgid "Forums:"
-msgstr "Fórumok:"
+msgid "Groups:"
+msgstr "Csoportok:"
#: src/Module/Profile/Profile.php:273
msgid "View profile as:"
@@ -8600,7 +9047,7 @@ 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:100
-#: src/Module/Settings/Account.php:566
+#: src/Module/Settings/Account.php:567
msgid "New Password:"
msgstr "Új jelszó:"
@@ -8609,7 +9056,7 @@ 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:101
-#: src/Module/Settings/Account.php:567
+#: src/Module/Settings/Account.php:568
msgid "Confirm:"
msgstr "Megerősítés:"
@@ -8636,11 +9083,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:154
+#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:156
msgid "Parent Password:"
msgstr "Fölérendelt jelszó:"
-#: src/Module/Register.php:183 src/Module/Settings/Delegation.php:154
+#: 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 "Adja meg a fölérendelt fiók jelszavát a kérése törvényesítéséhez."
@@ -8827,24 +9274,24 @@ msgid "Update Password"
msgstr "Jelszó frissítése"
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: src/Module/Settings/Account.php:569
msgid "Current Password:"
msgstr "Jelenlegi jelszó:"
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: 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:100
-#: src/Module/Settings/Account.php:552
+#: 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 "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:100
-#: src/Module/Settings/Account.php:553
+#: src/Module/Settings/Account.php:554
msgid "Password length is limited to 72 characters."
msgstr "A jelszó hossza 72 karakterre van korlátozva."
@@ -8968,99 +9415,99 @@ msgstr "Érvénytelen e-mail-cím."
msgid "Cannot change to that email."
msgstr "Nem lehet megváltoztatni arra az e-mail-címre."
-#: 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
+#: 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:363
+#: 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:382
+#: src/Module/Settings/Account.php:383
msgid "Importing Contacts done"
msgstr "A partnerek importálása kész"
-#: src/Module/Settings/Account.php:395
+#: 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:412
+#: 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:454
+#: src/Module/Settings/Account.php:455
msgid "Personal Page Subtypes"
msgstr "Személyes oldal altípusai"
-#: src/Module/Settings/Account.php:455
-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:465
+#: src/Module/Settings/Account.php:466
msgid "Account for a personal profile."
msgstr "Egy személyes profil fiókja."
-#: src/Module/Settings/Account.php:472
+#: 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:479
+#: 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:486
+#: 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:493
+#: 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:500
+#: 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:507
+#: 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:514
+#: 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:519
-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:521
+#: 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:530
+#: src/Module/Settings/Account.php:531
msgid "OpenID:"
msgstr "OpenID:"
-#: src/Module/Settings/Account.php:530
+#: 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:538
+#: 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:538
+#: src/Module/Settings/Account.php:539
#, php-format
msgid ""
"Your profile will be published in this node's local "
@@ -9068,89 +9515,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:544
+#: 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:557
+#: src/Module/Settings/Account.php:558
msgid "Account Settings"
msgstr "Fiókbeállítások"
-#: src/Module/Settings/Account.php:558
+#: 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:565
+#: src/Module/Settings/Account.php:566
msgid "Password Settings"
msgstr "Jelszóbeállítások"
-#: src/Module/Settings/Account.php:567
+#: 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:569
+#: src/Module/Settings/Account.php:570
msgid "Password:"
msgstr "Jelszó:"
-#: 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 "A jelenlegi jelszava az e-mail-címe megváltoztatásának megerősítéséhez"
-#: src/Module/Settings/Account.php:572
+#: src/Module/Settings/Account.php:573
msgid "Delete OpenID URL"
msgstr "OpenID URL törlése"
-#: src/Module/Settings/Account.php:574
+#: src/Module/Settings/Account.php:575
msgid "Basic Settings"
msgstr "Alapvető beállítások"
#: 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:577
+#: src/Module/Settings/Account.php:578
msgid "Your Timezone:"
msgstr "Az Ön időzónája:"
-#: src/Module/Settings/Account.php:578
+#: src/Module/Settings/Account.php:579
msgid "Your Language:"
msgstr "Az Ön nyelve:"
-#: 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 "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:579
+#: src/Module/Settings/Account.php:580
msgid "Default Post Location:"
msgstr "Alapértelmezett bejegyzésküldési hely:"
-#: src/Module/Settings/Account.php:580
+#: src/Module/Settings/Account.php:581
msgid "Use Browser Location:"
msgstr "Böngésző helyének használata:"
-#: src/Module/Settings/Account.php:582
+#: 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:584
+#: src/Module/Settings/Account.php:585
msgid "Maximum Friend Requests/Day:"
msgstr "Legtöbb ismerőskérés naponta:"
-#: 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 "(a levélszeméttel való visszaélés elkerüléséhez)"
-#: src/Module/Settings/Account.php:586
+#: 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: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 "
@@ -9158,43 +9610,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:587
+#: 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: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 "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:588
+#: 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:588
+#: 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 "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:589
+#: src/Module/Settings/Account.php:590
msgid "Make public posts unlisted"
msgstr "Nyilvános bejegyzések felsorolatlanná tétele"
-#: 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 "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:590
+#: 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: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 "
@@ -9202,233 +9654,241 @@ 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:591
+#: 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: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 "A partnerei bejegyzéseket írhatnak az Ön profilfalára. Ezek a bejegyzések továbbítva lesznek a partnereinek."
-#: src/Module/Settings/Account.php:592
+#: 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:592
+#: 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:593
+#: 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: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 "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:594
+#: 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: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:600
+#: src/Module/Settings/Account.php:602
msgid "Expiration settings"
msgstr "Lejárati jogosultságok"
-#: src/Module/Settings/Account.php:601
+#: 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:601
+#: 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:602
+#: src/Module/Settings/Account.php:604
msgid "Expire posts"
msgstr "Bejegyzések lejárata"
-#: src/Module/Settings/Account.php:602
+#: 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:603
+#: src/Module/Settings/Account.php:605
msgid "Expire personal notes"
msgstr "Személyes jegyzetek lejárata"
-#: 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 "Ha be van kapcsolva, akkor a profiloldalán lévő személyes jegyzetek le fognak járni."
-#: src/Module/Settings/Account.php:604
+#: src/Module/Settings/Account.php:606
msgid "Expire starred posts"
msgstr "Csillagozott bejegyzések lejárata"
-#: 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 "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:605
+#: 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: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 "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:608
+#: src/Module/Settings/Account.php:610
msgid "Notification Settings"
msgstr "Értesítési beállítások"
-#: src/Module/Settings/Account.php:609
+#: 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:610
+#: src/Module/Settings/Account.php:612
msgid "You receive an introduction"
msgstr "Egy bemutatkozást fogad"
-#: src/Module/Settings/Account.php:611
+#: src/Module/Settings/Account.php:613
msgid "Your introductions are confirmed"
msgstr "A bemutatkozásait jóváhagyták"
-#: src/Module/Settings/Account.php:612
+#: src/Module/Settings/Account.php:614
msgid "Someone writes on your profile wall"
msgstr "Valaki ír a profilfalára"
-#: src/Module/Settings/Account.php:613
+#: 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:614
+#: src/Module/Settings/Account.php:616
msgid "You receive a private message"
msgstr "Személyes üzenetet kap"
-#: src/Module/Settings/Account.php:615
+#: src/Module/Settings/Account.php:617
msgid "You receive a friend suggestion"
msgstr "Ismerősajánlást kap"
-#: src/Module/Settings/Account.php:616
+#: 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:618
+#: 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:619
+#: src/Module/Settings/Account.php:621
msgid "Someone tagged you"
msgstr "Valaki megjelölte Önt"
-#: src/Module/Settings/Account.php:620
+#: 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:621
+#: src/Module/Settings/Account.php:623
msgid "Someone liked your content"
msgstr "Valaki kedvelte az Ön tartalmát"
-#: src/Module/Settings/Account.php:621 src/Module/Settings/Account.php:622
+#: 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:622
+#: src/Module/Settings/Account.php:624
msgid "Someone shared your content"
msgstr "Valaki megosztotta az Ön tartalmát"
-#: src/Module/Settings/Account.php:623
+#: 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:624
+#: 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:625
+#: 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:627
+#: src/Module/Settings/Account.php:629
msgid "Activate desktop notifications"
msgstr "Asztali értesítések bekapcsolása"
-#: src/Module/Settings/Account.php:627
+#: 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:631
+#: 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:633
+#: 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:637
+#: src/Module/Settings/Account.php:639
msgid "Show detailled notifications"
msgstr "Részletes értesítések megjelenítése"
-#: src/Module/Settings/Account.php:639
+#: 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:643
-msgid "Show notifications of ignored contacts"
-msgstr "Figyelmen kívül hagyott partnerek értesítéseinek megjelenítése"
-
#: src/Module/Settings/Account.php:645
+msgid "Show notifications of ignored contacts"
+msgstr "Mellőzött partnerek értesítéseinek megjelenítése"
+
+#: 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:648
+#: 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:649
+#: 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:652
+#: src/Module/Settings/Account.php:654
msgid "Import Contacts"
msgstr "Partnerek importálása"
-#: src/Module/Settings/Account.php:653
+#: 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:654
+#: src/Module/Settings/Account.php:656
msgid "Upload File"
msgstr "Fájl feltöltése"
-#: src/Module/Settings/Account.php:657
+#: src/Module/Settings/Account.php:659
msgid "Relocate"
msgstr "Áthelyezés"
-#: src/Module/Settings/Account.php:658
+#: 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:659
+#: src/Module/Settings/Account.php:661
msgid "Resend relocate message to contacts"
msgstr "Áthelyezési üzenet küldése a partnereknek"
@@ -9637,224 +10097,250 @@ msgstr "Áthelyezés mappába"
msgid "Move to folder:"
msgstr "Áthelyezés mappába:"
-#: src/Module/Settings/Delegation.php:52
+#: src/Module/Settings/Delegation.php:54
msgid "Delegation successfully granted."
msgstr "A meghatalmazás sikeresen megadva."
-#: src/Module/Settings/Delegation.php:54
+#: src/Module/Settings/Delegation.php:56
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:58
+#: src/Module/Settings/Delegation.php:60
msgid "Delegation successfully revoked."
msgstr "A meghatalmazás sikeresen visszavonva."
-#: src/Module/Settings/Delegation.php:80
-#: src/Module/Settings/Delegation.php:102
+#: src/Module/Settings/Delegation.php:82
+#: src/Module/Settings/Delegation.php:104
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:94
+#: src/Module/Settings/Delegation.php:96
msgid "Delegate user not found."
msgstr "A meghatalmazott felhasználó nem található."
-#: src/Module/Settings/Delegation.php:142
+#: src/Module/Settings/Delegation.php:144
msgid "No parent user"
msgstr "Nincs fölérendelt felhasználó"
-#: src/Module/Settings/Delegation.php:153
-#: src/Module/Settings/Delegation.php:164
+#: src/Module/Settings/Delegation.php:155
+#: src/Module/Settings/Delegation.php:166
msgid "Parent User"
msgstr "Fölérendelt felhasználó"
-#: src/Module/Settings/Delegation.php:161
+#: src/Module/Settings/Delegation.php:163
msgid "Additional Accounts"
msgstr "További fiókok"
-#: src/Module/Settings/Delegation.php:162
+#: 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 "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:163
+#: src/Module/Settings/Delegation.php:165
msgid "Register an additional account"
msgstr "További fiók regisztrálása"
-#: src/Module/Settings/Delegation.php:167
+#: 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 "A fölérendelt felhasználóknak teljes ellenőrzése van ezen fiók fölött, beleértve a fiók beállításait is. Ellenőrizze még egyszer, hogy kinek ad hozzáférést."
-#: src/Module/Settings/Delegation.php:171
+#: src/Module/Settings/Delegation.php:173
msgid "Delegates"
msgstr "Meghatalmazottak"
-#: src/Module/Settings/Delegation.php:173
+#: 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 "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:174
+#: src/Module/Settings/Delegation.php:176
msgid "Existing Page Delegates"
msgstr "Meglévő oldalmeghatalmazottak"
-#: src/Module/Settings/Delegation.php:176
+#: src/Module/Settings/Delegation.php:178
msgid "Potential Delegates"
msgstr "Lehetséges meghatalmazottak"
-#: src/Module/Settings/Delegation.php:179
+#: src/Module/Settings/Delegation.php:181
msgid "Add"
msgstr "Hozzáadás"
-#: src/Module/Settings/Delegation.php:180
+#: src/Module/Settings/Delegation.php:182
msgid "No entries."
msgstr "Nincsenek bejegyzések."
-#: src/Module/Settings/Display.php:137
+#: src/Module/Settings/Display.php:146
msgid "The theme you chose isn't available."
msgstr "A választott téma nem érhető el."
-#: src/Module/Settings/Display.php:177
+#: src/Module/Settings/Display.php:186
#, php-format
msgid "%s - (Unsupported)"
msgstr "%s – (nem támogatott)"
-#: src/Module/Settings/Display.php:212
+#: src/Module/Settings/Display.php:221
msgid "No preview"
msgstr "Nincs előnézet"
-#: src/Module/Settings/Display.php:213
+#: src/Module/Settings/Display.php:222
msgid "No image"
msgstr "Nincs kép"
-#: src/Module/Settings/Display.php:214
+#: src/Module/Settings/Display.php:223
msgid "Small Image"
msgstr "Kis kép"
-#: src/Module/Settings/Display.php:215
+#: src/Module/Settings/Display.php:224
msgid "Large Image"
msgstr "Nagy kép"
-#: src/Module/Settings/Display.php:246
+#: src/Module/Settings/Display.php:259
msgid "Display Settings"
msgstr "Megjelenítési beállítások"
-#: src/Module/Settings/Display.php:248
+#: src/Module/Settings/Display.php:261
msgid "General Theme Settings"
msgstr "Általános témabeállítások"
-#: src/Module/Settings/Display.php:249
+#: src/Module/Settings/Display.php:262
msgid "Custom Theme Settings"
msgstr "Egyéni témabeállítások"
-#: src/Module/Settings/Display.php:250
+#: src/Module/Settings/Display.php:263
msgid "Content Settings"
msgstr "Tartalombeállítások"
-#: src/Module/Settings/Display.php:251 view/theme/duepuntozero/config.php:86
+#: 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 "Témabeállítások"
-#: src/Module/Settings/Display.php:257
+#: src/Module/Settings/Display.php:265
+msgid "Timelines"
+msgstr "Idővonalak"
+
+#: src/Module/Settings/Display.php:272
msgid "Display Theme:"
msgstr "Megjelenítés témája:"
-#: src/Module/Settings/Display.php:258
+#: src/Module/Settings/Display.php:273
msgid "Mobile Theme:"
msgstr "Mobil téma:"
-#: src/Module/Settings/Display.php:261
+#: src/Module/Settings/Display.php:276
msgid "Number of items to display per page:"
msgstr "Oldalanként megjelenítendő elemek száma:"
-#: src/Module/Settings/Display.php:261 src/Module/Settings/Display.php:262
+#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277
msgid "Maximum of 100 items"
msgstr "Legfeljebb 100 elem"
-#: src/Module/Settings/Display.php:262
+#: src/Module/Settings/Display.php:277
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:263
+#: src/Module/Settings/Display.php:278
msgid "Update browser every xx seconds"
msgstr "Böngésző frissítése N másodpercenként"
-#: src/Module/Settings/Display.php:263
+#: src/Module/Settings/Display.php:278
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:264
+#: src/Module/Settings/Display.php:279
msgid "Display emoticons"
msgstr "Hangulatjelek megjelenítése"
-#: src/Module/Settings/Display.php:264
+#: src/Module/Settings/Display.php:279
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:265
+#: src/Module/Settings/Display.php:280
msgid "Infinite scroll"
msgstr "Végtelen görgetés"
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:280
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:266
+#: src/Module/Settings/Display.php:281
msgid "Enable Smart Threading"
msgstr "Intelligens szálkezelés engedélyezése"
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:281
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:267
+#: src/Module/Settings/Display.php:282
msgid "Display the Dislike feature"
msgstr "A nem tetszik funkció megjelenítése"
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:282
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:268
+#: src/Module/Settings/Display.php:283
msgid "Display the resharer"
msgstr "Az újramegosztó megjelenítése"
-#: src/Module/Settings/Display.php:268
+#: src/Module/Settings/Display.php:283
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:269
+#: src/Module/Settings/Display.php:284
msgid "Stay local"
msgstr "Maradjon helyi"
-#: src/Module/Settings/Display.php:269
+#: src/Module/Settings/Display.php:284
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:270
+#: src/Module/Settings/Display.php:285
msgid "Link preview mode"
msgstr "Hivatkozás-előnézeti mód"
-#: src/Module/Settings/Display.php:270
+#: src/Module/Settings/Display.php:285
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:272
+#: src/Module/Settings/Display.php:287
+msgid "Timelines for the network page:"
+msgstr "Idővonalak a hálózat oldalhoz:"
+
+#: src/Module/Settings/Display.php:287
+msgid "Select all the timelines that you want to see on your network page."
+msgstr "Válassza ki az összes olyan idővonalat, amelyet látni szeretne a hálózat oldalon."
+
+#: src/Module/Settings/Display.php:288
+msgid "Channel languages:"
+msgstr "Csatorna nyelvei:"
+
+#: src/Module/Settings/Display.php:288
+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:290
msgid "Beginning of week:"
msgstr "A hét kezdete:"
-#: src/Module/Settings/Display.php:273
+#: src/Module/Settings/Display.php:291
msgid "Default calendar view:"
msgstr "Alapértelmezett naptárnézet:"
+#: src/Module/Settings/Display.php:300 src/Module/Settings/Display.php:308
+#: src/Module/Settings/Display.php:312
+#, php-format
+msgid "%s: %s"
+msgstr "%s: %s"
+
#: src/Module/Settings/Features.php:74
msgid "Additional Features"
msgstr "További funkciók"
@@ -9867,155 +10353,151 @@ msgstr "Kapcsolt alkalmazások"
msgid "Remove authorization"
msgstr "Felhatalmazás eltávolítása"
-#: src/Module/Settings/Profile/Index.php:84
-msgid "Profile Name is required."
-msgstr "A profil neve kötelező."
+#: 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:134
+#: 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:175
-#: src/Module/Settings/Profile/Index.php:195
+#: 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:176
-#: src/Module/Settings/Profile/Index.php:196
+#: 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:186
-#: src/Module/Settings/Profile/Index.php:206
+#: 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:187
-#: src/Module/Settings/Profile/Index.php:207
+#: 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:193
+#: 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:216
+#: 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:218
+#: 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:228
+#: src/Module/Settings/Profile/Index.php:255
msgid "Profile Actions"
msgstr "Profilműveletek"
-#: src/Module/Settings/Profile/Index.php:229
+#: src/Module/Settings/Profile/Index.php:256
msgid "Edit Profile Details"
msgstr "Profil részleteinek szerkesztése"
-#: src/Module/Settings/Profile/Index.php:231
+#: src/Module/Settings/Profile/Index.php:258
msgid "Change Profile Photo"
msgstr "Profilfénykép megváltoztatása"
-#: src/Module/Settings/Profile/Index.php:236
+#: src/Module/Settings/Profile/Index.php:261
msgid "Profile picture"
msgstr "Profilfénykép"
-#: src/Module/Settings/Profile/Index.php:237
+#: src/Module/Settings/Profile/Index.php:262
msgid "Location"
msgstr "Hely"
-#: src/Module/Settings/Profile/Index.php:238 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 "Egyebek"
-#: src/Module/Settings/Profile/Index.php:239
+#: src/Module/Settings/Profile/Index.php:264
msgid "Custom Profile Fields"
msgstr "Egyéni profilmezők"
-#: src/Module/Settings/Profile/Index.php:241 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:245
-msgid "Display name:"
-msgstr "Megjelenített név:"
-
-#: src/Module/Settings/Profile/Index.php:248
-msgid "Street Address:"
-msgstr "Utca, házszám:"
-
-#: src/Module/Settings/Profile/Index.php:249
-msgid "Locality/City:"
-msgstr "Helység vagy város:"
-
-#: src/Module/Settings/Profile/Index.php:250
-msgid "Region/State:"
-msgstr "Régió vagy állam:"
-
-#: src/Module/Settings/Profile/Index.php:251
-msgid "Postal/Zip Code:"
-msgstr "Irányítószám:"
-
-#: src/Module/Settings/Profile/Index.php:252
-msgid "Country:"
-msgstr "Ország:"
-
-#: src/Module/Settings/Profile/Index.php:254
-msgid "XMPP (Jabber) address:"
-msgstr "XMPP (Jabber) cím:"
-
-#: src/Module/Settings/Profile/Index.php:254
-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:255
-msgid "Matrix (Element) address:"
-msgstr "Mátrix (Element) cím:"
-
-#: src/Module/Settings/Profile/Index.php:255
-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:256
-msgid "Homepage URL:"
-msgstr "Honlap URL:"
-
-#: src/Module/Settings/Profile/Index.php:257
-msgid "Public Keywords:"
-msgstr "Nyilvános kulcsszavak:"
-
-#: src/Module/Settings/Profile/Index.php:257
-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:258
-msgid "Private Keywords:"
-msgstr "Személyes kulcsszavak:"
-
-#: src/Module/Settings/Profile/Index.php:258
-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:259
+#: src/Module/Settings/Profile/Index.php:266
#, php-format
msgid ""
"Custom fields appear on your profile page.
\n"
"\t\t\t\tYou can use BBCodes in the field values.
\n"
"\t\t\t\tReorder by dragging the field title.
\n"
"\t\t\t\tEmpty the label field to remove a custom field.
\n"
-"\t\t\t\tNon-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\tHaszná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\tTörölje ki a címkemezőt egy egyéni mező eltávolításához.
\n\t\t\t\tA 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\tNon-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\tTörölje ki a címkemezőt egy egyéni mező eltávolításához.
\n\t\t\t\tA 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/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
@@ -10127,6 +10609,42 @@ msgstr "Ez teljesen el fogja távolítani a fiókját. Miután ez megtörtént,
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
@@ -10448,21 +10966,42 @@ msgid ""
" 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/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 "Not Found"
-msgstr "Nem található"
+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 ""
-"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 "Sajnos a kért beszélgetés nem érhető el Önnek.
\nA lehetséges okok a következők:
\n\n\t- A legfelső szintű bejegyzés nem látható.
\n\t- A legfelső szintű bejegyzést törölték.
\n\t- A csomópont letiltotta a legfelső szintű szerzőt vagy a megosztott bejegyzés szerzőjét.
\n\t- Ön mellőzte vagy letiltotta a legfelső szintű szerzőt vagy a megosztott bejegyzés szerzőjét.
\n
"
+"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:"
@@ -10473,7 +11012,7 @@ msgstr "Veremkiíratás:"
msgid "Exception thrown in %s:%d"
msgstr "Kivétel történt itt: %s:%d"
-#: src/Module/Tos.php:57 src/Module/Tos.php:106
+#: 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"
@@ -10486,14 +11025,14 @@ 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:107
+#: 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:108
+#: 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"
@@ -10504,11 +11043,11 @@ msgid ""
"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:105
+#: src/Module/Tos.php:63 src/Module/Tos.php:106
msgid "Privacy Statement"
msgstr "Adatvédelmi nyilatkozat"
-#: src/Module/Tos.php:102
+#: src/Module/Tos.php:103
msgid "Rules"
msgstr "Szabályok"
@@ -10516,6 +11055,10 @@ msgstr "Szabályok"
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/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."
@@ -10564,22 +11107,22 @@ msgstr "Hiba! Nincsenek verzióadatok a fájlban! Ez nem Friendica fiókfájl?"
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:263
+#: src/Module/User/Import.php:267
msgid "User creation error"
msgstr "Felhasználó-létrehozási hiba"
-#: src/Module/User/Import.php:312
+#: 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:361
+#: src/Module/User/Import.php:365
msgid "User profile creation error"
msgstr "Felhasználóiprofil-létrehozási hiba"
-#: src/Module/User/Import.php:412
+#: 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."
@@ -10713,15 +11256,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?"
@@ -11228,249 +11771,258 @@ 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:135
+#: src/Object/Post.php:138
msgid "Private Message"
msgstr "Személyes üzenet"
-#: src/Object/Post.php:139
+#: src/Object/Post.php:142
msgid "Public Message"
msgstr "Nyilvános üzenet"
-#: src/Object/Post.php:143
+#: src/Object/Post.php:146
msgid "Unlisted Message"
msgstr "Listázatlan üzenet"
-#: src/Object/Post.php:178
+#: src/Object/Post.php:181
msgid "This entry was edited"
msgstr "Ezt a bejegyzést szerkesztették"
-#: src/Object/Post.php:206
+#: src/Object/Post.php:209
msgid "Connector Message"
msgstr "Csatlakozóüzenet"
-#: src/Object/Post.php:222 src/Object/Post.php:224
+#: src/Object/Post.php:225 src/Object/Post.php:227
msgid "Edit"
msgstr "Szerkesztés"
-#: src/Object/Post.php:248
+#: src/Object/Post.php:261
msgid "Delete globally"
msgstr "Törlés globálisan"
-#: src/Object/Post.php:248
+#: src/Object/Post.php:261
msgid "Remove locally"
msgstr "Eltávolítás helyileg"
-#: src/Object/Post.php:265
+#: src/Object/Post.php:268
#, php-format
msgid "Block %s"
msgstr "%s tiltása"
-#: src/Object/Post.php:270
+#: src/Object/Post.php:273
#, php-format
msgid "Ignore %s"
msgstr "%s mellőzése"
-#: src/Object/Post.php:275
+#: src/Object/Post.php:278
+#, php-format
+msgid "Collapse %s"
+msgstr "%s összecsukása"
+
+#: src/Object/Post.php:282
+msgid "Report post"
+msgstr "Bejegyzés jelentése"
+
+#: src/Object/Post.php:293
msgid "Save to folder"
msgstr "Mentés mappába"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I will attend"
msgstr "Részt veszek"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I will not attend"
msgstr "Nem veszek részt"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I might attend"
msgstr "Talán részt veszek"
-#: src/Object/Post.php:340
+#: src/Object/Post.php:363
msgid "Ignore thread"
msgstr "Szál mellőzése"
-#: src/Object/Post.php:341
+#: src/Object/Post.php:364
msgid "Unignore thread"
msgstr "Szál mellőzésének megszüntetése"
-#: src/Object/Post.php:342
+#: src/Object/Post.php:365
msgid "Toggle ignore status"
msgstr "Mellőzési állapot átváltása"
-#: src/Object/Post.php:352
+#: src/Object/Post.php:375
msgid "Add star"
msgstr "Csillag hozzáadása"
-#: src/Object/Post.php:353
+#: src/Object/Post.php:376
msgid "Remove star"
msgstr "Csillag eltávolítása"
-#: src/Object/Post.php:354
+#: src/Object/Post.php:377
msgid "Toggle star status"
msgstr "Csillagállapot átváltása"
-#: src/Object/Post.php:365
+#: src/Object/Post.php:388
msgid "Pin"
msgstr "Kitűzés"
-#: src/Object/Post.php:366
+#: src/Object/Post.php:389
msgid "Unpin"
msgstr "Kitűzés megszüntetése"
-#: src/Object/Post.php:367
+#: src/Object/Post.php:390
msgid "Toggle pin status"
msgstr "Kitűzés állapotának átváltása"
-#: src/Object/Post.php:370
+#: src/Object/Post.php:393
msgid "Pinned"
msgstr "Kitűzve"
-#: src/Object/Post.php:375
+#: src/Object/Post.php:398
msgid "Add tag"
msgstr "Címke hozzáadása"
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote share this"
msgstr "Idézett megosztás"
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote Share"
msgstr "Idéző megosztás"
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare this"
msgstr "Újra megosztás"
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare"
msgstr "Újra megosztás"
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Cancel your Reshare"
msgstr "Újra megosztás megszakítása"
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Unshare"
msgstr "Megosztás megszüntetése"
-#: src/Object/Post.php:443
+#: src/Object/Post.php:466
#, php-format
msgid "%s (Received %s)"
msgstr "%s (fogadva: %s)"
-#: src/Object/Post.php:448
+#: src/Object/Post.php:472
msgid "Comment this item on your system"
msgstr "Hozzászólás az elemhez a saját rendszerén"
-#: src/Object/Post.php:448
+#: src/Object/Post.php:472
msgid "Remote comment"
msgstr "Távoli hozzászólás"
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via ..."
msgstr "Megosztás ezen keresztül…"
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via external services"
msgstr "Megosztás külső szolgáltatásokon keresztül"
-#: src/Object/Post.php:498
+#: src/Object/Post.php:523
msgid "to"
msgstr "ide:"
-#: src/Object/Post.php:499
+#: src/Object/Post.php:524
msgid "via"
msgstr "ezen keresztül:"
-#: src/Object/Post.php:500
+#: src/Object/Post.php:525
msgid "Wall-to-Wall"
msgstr "Falról-falra"
-#: src/Object/Post.php:501
+#: src/Object/Post.php:526
msgid "via Wall-To-Wall:"
msgstr "falról-falra szolgáltatáson keresztül:"
-#: src/Object/Post.php:545
+#: src/Object/Post.php:573
#, php-format
msgid "Reply to %s"
msgstr "Válasz erre: %s"
-#: src/Object/Post.php:548
+#: src/Object/Post.php:576
msgid "More"
msgstr "Több"
-#: src/Object/Post.php:566
+#: src/Object/Post.php:595
msgid "Notifier task is pending"
msgstr "Az értesítőfeladat függőben van"
-#: src/Object/Post.php:567
+#: src/Object/Post.php:596
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:568
+#: src/Object/Post.php:597
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:569
+#: src/Object/Post.php:598
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:570
+#: src/Object/Post.php:599
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:590
+#: src/Object/Post.php:619
#, 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:591
+#: src/Object/Post.php:620
msgid "Show more"
msgstr "Több megjelenítése"
-#: src/Object/Post.php:592
+#: src/Object/Post.php:621
msgid "Show fewer"
msgstr "Kevesebb megjelenítése"
-#: src/Object/Post.php:628
+#: src/Object/Post.php:657
#, php-format
msgid "Reshared by: %s"
msgstr "Újra megosztotta: %s"
-#: src/Object/Post.php:633
+#: src/Object/Post.php:662
#, php-format
msgid "Viewed by: %s"
msgstr "Megtekintette: %s"
-#: src/Object/Post.php:638
+#: src/Object/Post.php:667
#, php-format
msgid "Liked by: %s"
msgstr "Kedvelte: %s"
-#: src/Object/Post.php:643
+#: src/Object/Post.php:672
#, php-format
msgid "Disliked by: %s"
msgstr "Nem kedvelte: %s"
-#: src/Object/Post.php:648
+#: src/Object/Post.php:677
#, php-format
msgid "Attended by: %s"
msgstr "Részt vett: %s"
-#: src/Object/Post.php:653
+#: src/Object/Post.php:682
#, php-format
msgid "Maybe attended by: %s"
msgstr "Talán részt vett: %s"
-#: src/Object/Post.php:658
+#: src/Object/Post.php:687
#, php-format
msgid "Not attended by: %s"
msgstr "Nem vett részt: %s"
-#: src/Object/Post.php:663
+#: src/Object/Post.php:692
#, php-format
msgid "Reacted with %s by: %s"
msgstr "Reagált ezzel: %s: %s"
@@ -11479,21 +12031,21 @@ msgstr "Reagált ezzel: %s: %s"
msgid "(no subject)"
msgstr "(nincs tárgy)"
-#: src/Protocol/OStatus.php:1388
+#: 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:1389
+#: src/Protocol/OStatus.php:1391
msgid "following"
msgstr "követés"
-#: src/Protocol/OStatus.php:1392
+#: 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:1393
+#: src/Protocol/OStatus.php:1395
msgid "stopped following"
msgstr "követés leállítva"
@@ -11851,8 +12403,8 @@ msgid "Textareas font size"
msgstr "Szövegdobozok betűmérete"
#: view/theme/vier/config.php:91
-msgid "Comma separated list of helper forums"
-msgstr "Segítő fórumok vesszővel elválasztott listája"
+msgid "Comma separated list of helper groups"
+msgstr "Segítő csoportok vesszővel elválasztott listája"
#: view/theme/vier/config.php:131
msgid "don't show"
diff --git a/view/lang/hu/strings.php b/view/lang/hu/strings.php
index 7ae218ac80..17f49375ab 100644
--- a/view/lang/hu/strings.php
+++ b/view/lang/hu/strings.php
@@ -201,6 +201,9 @@ $a->strings['Apologies but the website is unavailable at the moment.'] = 'Elnéz
$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';
@@ -300,6 +303,7 @@ $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['and'] = 'és';
$a->strings['and %d other people'] = 'és %d más személy';
@@ -368,6 +372,7 @@ $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';
@@ -385,16 +390,11 @@ $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['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['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';
@@ -411,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';
@@ -427,8 +461,8 @@ $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';
@@ -436,10 +470,11 @@ $a->strings['Display membership date in profile'] = 'Tagsági dátum megjelenít
$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['Forums'] = 'Fórumok';
-$a->strings['External link to forum'] = 'Külső hivatkozás a fórumhoz';
+$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';
@@ -454,13 +489,14 @@ $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';
@@ -556,8 +592,9 @@ $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';
@@ -570,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';
@@ -596,6 +635,9 @@ $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['Mention'] = 'Említés';
+$a->strings['Post to group'] = 'Beküldés csoportba';
+$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';
@@ -603,7 +645,7 @@ $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 group to show a filtered list. You can also mention the special groups "Followers" and "Mutuals".'] = 'Kezdje el gépelni egy partner vagy csoport 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 csoportokat is.';
+$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';
@@ -714,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!';
@@ -762,9 +806,18 @@ $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['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.';
@@ -802,16 +855,6 @@ $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';
@@ -911,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,
@@ -1261,7 +1304,7 @@ $a->strings['Enabling this may violate privacy laws like the GDPR'] = 'Ennek eng
$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['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';
@@ -1301,7 +1344,7 @@ $a->strings['If you wish, you can turn on strict certificate checking. This will
$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['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';
@@ -1345,8 +1388,8 @@ $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['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';
@@ -1390,8 +1433,6 @@ $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.'] = '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.';
@@ -1462,6 +1503,9 @@ $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';
@@ -1475,7 +1519,7 @@ $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['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.',
@@ -1487,6 +1531,7 @@ $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.';
@@ -1513,6 +1558,29 @@ $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.',
@@ -1530,7 +1598,7 @@ $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['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';
@@ -1550,7 +1618,6 @@ $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 not found.'] = 'A partner nem található.';
$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';
@@ -1558,7 +1625,6 @@ $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)'] = [
@@ -1603,14 +1669,15 @@ $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 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['Contact has been uncollapsed'] = 'A partner figyelmen összecsukása meg lett szüntetve';
+$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)';
@@ -1641,6 +1708,7 @@ $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';
@@ -1651,6 +1719,17 @@ $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';
@@ -1659,7 +1738,6 @@ $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 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.';
@@ -1670,29 +1748,17 @@ $a->strings['Unfollowing is currently not supported by your network.'] = 'A köv
$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['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['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['No results.'] = 'Nincs találat.';
-$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';
@@ -1789,26 +1855,6 @@ $a->strings['Please visit Friendi.ca to learn m
$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ó:';
@@ -1876,7 +1922,6 @@ $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 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['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';
@@ -1900,13 +1945,13 @@ $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'] = [
@@ -2014,18 +2059,67 @@ $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['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['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['%s user blocked'] = [
@@ -2172,7 +2266,7 @@ $a->strings['%d year old'] = [
1 => '%d éves',
];
$a->strings['Description:'] = 'Leírás:';
-$a->strings['Forums:'] = 'Fórumok:';
+$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['Profile unavailable.'] = 'A profil nem érhető el.';
@@ -2295,7 +2389,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”.';
@@ -2304,7 +2398,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.';
@@ -2319,6 +2413,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:';
@@ -2345,6 +2440,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:';
@@ -2381,8 +2478,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';
@@ -2462,6 +2559,7 @@ $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['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:';
@@ -2483,12 +2581,17 @@ $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['Timelines for the network page:'] = 'Idővonalak a hálózat oldalhoz:';
+$a->strings['Select all the timelines that you want to see on your network page.'] = 'Válassza ki az összes olyan idővonalat, amelyet látni szeretne a hálózat oldalon.';
+$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['Default calendar view:'] = 'Alapértelmezett naptárnézet:';
+$a->strings['%s: %s'] = '%s: %s';
$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['Profile Name is required.'] = 'A profil neve kötelező.';
+$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:';
@@ -2505,7 +2608,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:';
@@ -2520,15 +2631,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';
@@ -2553,6 +2655,14 @@ $a->strings['Your user account has been successfully removed. Bye bye!'] = 'A fe
$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.';
@@ -2647,22 +2757,14 @@ $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['Not Found'] = 'Nem található';
-$a->strings['Unfortunately, the requested conversation isn\'t available to you.
-Possible reasons include:
-
- - The top-level post isn\'t visible.
- - The top-level post was deleted.
- - The node has blocked the top-level author or the author of the shared post.
- - You have ignored or blocked the top-level author or the author of the shared post.
-
'] = 'Sajnos a kért beszélgetés nem érhető el Önnek.
-A lehetséges okok a következők:
-
- - A legfelső szintű bejegyzés nem látható.
- - A legfelső szintű bejegyzést törölték.
- - A csomópont letiltotta a legfelső szintű szerzőt vagy a megosztott bejegyzés szerzőjét.
- - Ön mellőzte vagy letiltotta a legfelső szintű szerzőt vagy a megosztott bejegyzés szerzőjét.
-
';
+$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.';
@@ -2671,6 +2773,7 @@ $a->strings['At any point in time a logged in user can export their account data
$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['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.';
@@ -2711,8 +2814,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';
@@ -2824,6 +2927,8 @@ $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';
@@ -2963,7 +3068,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 ddefaf9e4b..7a2964bcf9 100644
--- a/view/lang/is/messages.po
+++ b/view/lang/is/messages.po
@@ -16,7 +16,7 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-18 20:49+0000\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"
@@ -26,46 +26,46 @@ msgstr ""
"Language: is\n"
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
-#: mod/item.php:102 mod/item.php:105 mod/item.php:171 mod/item.php:174
+#: 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."
-#: mod/item.php:139
+#: mod/item.php:138
msgid "Post updated."
msgstr ""
-#: mod/item.php:204 mod/item.php:208
+#: mod/item.php:203 mod/item.php:207
msgid "Item wasn't stored."
msgstr ""
-#: mod/item.php:218
+#: mod/item.php:217
msgid "Item couldn't be fetched."
msgstr ""
-#: mod/item.php:256 mod/item.php:260
+#: mod/item.php:255 mod/item.php:259
msgid "Empty post discarded."
msgstr "Tóm færsla eytt."
-#: mod/item.php:412 src/Module/Admin/Themes/Details.php:39
+#: 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."
-#: mod/item.php:436 mod/message.php:69 mod/message.php:114 mod/notes.php:45
-#: mod/photos.php:152 mod/photos.php:669 src/Model/Event.php:522
-#: src/Module/Attach.php:55 src/Module/BaseApi.php:95
-#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:52
+#: 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/Contact/Advanced.php:60 src/Module/Contact/Follow.php:86
-#: src/Module/Contact/Follow.php:159 src/Module/Contact/MatchInterests.php:86
+#: 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/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/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
@@ -75,9 +75,9 @@ msgstr "Atriði fannst ekki."
#: 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:69
-#: src/Module/Settings/Display.php:69 src/Module/Settings/Display.php:151
+#: 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
@@ -155,7 +155,7 @@ msgid ""
"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:130 src/Module/Security/Login.php:161
+#: mod/lostpass.php:130 src/Module/Security/Login.php:160
msgid "Nickname or Email: "
msgstr "Gælunafn eða tölvupóstfang: "
@@ -163,7 +163,7 @@ msgstr "Gælunafn eða tölvupóstfang: "
msgid "Reset"
msgstr "Endurstilla"
-#: mod/lostpass.php:146 src/Module/Security/Login.php:173
+#: mod/lostpass.php:146 src/Module/Security/Login.php:172
msgid "Password Reset"
msgstr "Endurstilling aðgangsorðs"
@@ -223,90 +223,90 @@ msgstr ""
msgid "Your password has been changed at %s"
msgstr "Aðgangsorðinu þínu var breytt í %s"
-#: mod/message.php:46 mod/message.php:129 src/Content/Nav.php:321
+#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321
msgid "New Message"
msgstr "Ný skilaboð"
-#: 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 "Engir viðtakendur valdir."
-#: mod/message.php:88
+#: mod/message.php:87
msgid "Unable to locate contact information."
msgstr "Ekki tókst að staðsetja tengiliðs upplýsingar."
-#: 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 "Ekki tókst að senda skilaboð."
-#: 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 "Ekki tókst að sækja skilaboð."
-#: 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 "Henda"
-#: mod/message.php:136 src/Content/Nav.php:318 view/theme/frio/theme.php:241
+#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Messages"
msgstr "Skilaboð"
-#: 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 "Sláðu inn slóð:"
-#: 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 "Senda einkaskilaboð"
-#: mod/message.php:193 mod/message.php:349
+#: mod/message.php:191 mod/message.php:346
msgid "To:"
msgstr "Til:"
-#: mod/message.php:194 mod/message.php:350
+#: mod/message.php:192 mod/message.php:347
msgid "Subject:"
msgstr "Efni:"
-#: 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 "Skilaboðin:"
-#: mod/message.php:201 mod/message.php:357 src/Content/Conversation.php:352
-#: src/Module/Post/Edit.php:128
+#: 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:202 mod/message.php:358 src/Module/Post/Edit.php:132
-#: src/Module/Profile/UnkMail.php:154
+#: 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:203 mod/message.php:360 mod/photos.php:1291
-#: src/Content/Conversation.php:381 src/Content/Conversation.php:727
-#: src/Module/Item/Compose.php:204 src/Module/Post/Edit.php:142
-#: src/Module/Profile/UnkMail.php:155 src/Object/Post.php:545
+#: 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:204 mod/message.php:359 mod/photos.php:702
-#: mod/photos.php:819 mod/photos.php:1097 mod/photos.php:1138
-#: mod/photos.php:1194 mod/photos.php:1268
+#: 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:340
+#: 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
@@ -314,59 +314,64 @@ msgstr "Hinkraðu aðeins"
#: 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:156
-#: src/Module/Settings/Profile/Index.php:231 src/Object/Post.php:1058
+#: 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:225
+#: mod/message.php:223
msgid "No messages."
msgstr "Engin skilaboð."
-#: mod/message.php:281
+#: mod/message.php:279
msgid "Message not available."
msgstr "Ekki næst í skilaboð."
-#: mod/message.php:326
+#: mod/message.php:323
msgid "Delete message"
msgstr "Eyða skilaboðum"
-#: 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 "Eyða samtali"
-#: 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 "Senda svar"
-#: mod/message.php:430
+#: mod/message.php:427
#, php-format
msgid "Unknown sender - %s"
msgstr "Óþekktur sendandi - %s"
-#: mod/message.php:432
+#: mod/message.php:429
#, php-format
msgid "You and %s"
msgstr "Þú og %s"
-#: mod/message.php:434
+#: mod/message.php:431
#, php-format
msgid "%s and You"
msgstr "%s og þú"
-#: mod/message.php:462
+#: mod/message.php:459
#, php-format
msgid "%d message"
msgid_plural "%d messages"
@@ -381,14 +386,14 @@ msgstr "Persónulegar glósur"
msgid "Personal notes are visible only by yourself."
msgstr ""
-#: mod/notes.php:57 src/Content/Text/HTML.php:884
+#: 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:126
+#: src/Module/Post/Edit.php:129
msgid "Save"
msgstr "Vista"
-#: mod/photos.php:67 mod/photos.php:132 mod/photos.php:577
-#: src/Model/Event.php:514 src/Model/Profile.php:234
+#: 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
@@ -400,22 +405,22 @@ msgid "User not found."
msgstr ""
#: mod/photos.php:106 src/Module/BaseProfile.php:68
-#: src/Module/Profile/Photos.php:399
+#: src/Module/Profile/Photos.php:379
msgid "Photo Albums"
msgstr "Myndabækur"
-#: mod/photos.php:107 src/Module/Profile/Photos.php:400
-#: src/Module/Profile/Photos.php:420
+#: 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:867 src/Module/Profile/Photos.php:402
-#: src/Module/Profile/Photos.php:422
+#: 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:74
-#: src/Module/Profile/Photos.php:383
+#: mod/photos.php:121 src/Module/BaseSettings.php:72
+#: src/Module/Profile/Photos.php:363
msgid "everybody"
msgstr "allir"
@@ -427,239 +432,241 @@ msgstr "Tengiliða upplýsingar ekki til"
msgid "Album not found."
msgstr "Myndabók finnst ekki."
-#: mod/photos.php:242
+#: mod/photos.php:244
msgid "Album successfully deleted"
msgstr ""
-#: mod/photos.php:244
+#: mod/photos.php:246
msgid "Album was empty."
msgstr ""
-#: mod/photos.php:276
+#: mod/photos.php:277
msgid "Failed to delete the photo."
msgstr ""
-#: mod/photos.php:544
+#: mod/photos.php:545
msgid "a photo"
msgstr "mynd"
-#: mod/photos.php:544
+#: mod/photos.php:545
#, 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:581 src/Module/Conversation/Community.php:188
-#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:315
+#: 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/photos.php:586
+#: mod/photos.php:587
msgid "No photos selected"
msgstr "Engar myndir valdar"
-#: mod/photos.php:718
+#: mod/photos.php:721
#, php-format
msgid "The maximum accepted image size is %s"
msgstr ""
-#: mod/photos.php:725
+#: mod/photos.php:728
msgid "Upload Photos"
msgstr "Hlaða upp myndum"
-#: mod/photos.php:729 mod/photos.php:815
+#: mod/photos.php:732 mod/photos.php:820
msgid "New album name: "
msgstr "Nýtt nafn myndbókar:"
-#: mod/photos.php:730
+#: mod/photos.php:733
msgid "or select existing album:"
msgstr ""
-#: mod/photos.php:731
+#: 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:733 mod/photos.php:1093 src/Content/Conversation.php:383
-#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:179
+#: 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:796
+#: mod/photos.php:801
msgid "Do you really want to delete this photo album and all its photos?"
msgstr ""
-#: mod/photos.php:797 mod/photos.php:820
+#: mod/photos.php:802 mod/photos.php:825
msgid "Delete Album"
msgstr "Fjarlægja myndabók"
-#: mod/photos.php:798 mod/photos.php:899 src/Content/Conversation.php:399
-#: src/Module/Contact/Follow.php:172 src/Module/Contact/Revoke.php:109
+#: 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:164
+#: 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:824
+#: mod/photos.php:829
msgid "Edit Album"
msgstr "Breyta myndbók"
-#: mod/photos.php:825
+#: mod/photos.php:830
msgid "Drop Album"
msgstr ""
-#: mod/photos.php:829
+#: mod/photos.php:834
msgid "Show Newest First"
msgstr "Birta nýjast fyrst"
-#: mod/photos.php:831
+#: mod/photos.php:836
msgid "Show Oldest First"
msgstr "Birta elsta fyrst"
-#: mod/photos.php:852 src/Module/Profile/Photos.php:370
+#: mod/photos.php:857 src/Module/Profile/Photos.php:350
msgid "View Photo"
msgstr "Skoða mynd"
-#: mod/photos.php:885
+#: 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:887
+#: mod/photos.php:891
msgid "Photo not available"
msgstr "Mynd ekki til"
-#: mod/photos.php:897
+#: mod/photos.php:901
msgid "Do you really want to delete this photo?"
msgstr ""
-#: mod/photos.php:898 mod/photos.php:1098
+#: mod/photos.php:902 mod/photos.php:1102
msgid "Delete Photo"
msgstr "Fjarlægja mynd"
-#: mod/photos.php:996
+#: mod/photos.php:1000
msgid "View photo"
msgstr "Birta mynd"
-#: mod/photos.php:998
+#: mod/photos.php:1002
msgid "Edit photo"
msgstr "Breyta mynd"
-#: mod/photos.php:999
+#: mod/photos.php:1003
msgid "Delete photo"
msgstr ""
-#: mod/photos.php:1000
+#: mod/photos.php:1004
msgid "Use as profile photo"
msgstr "Nota sem forsíðu mynd"
-#: mod/photos.php:1007
+#: mod/photos.php:1011
msgid "Private Photo"
msgstr ""
-#: mod/photos.php:1013
+#: mod/photos.php:1017
msgid "View Full Size"
msgstr "Skoða í fullri stærð"
-#: mod/photos.php:1066
+#: mod/photos.php:1070
msgid "Tags: "
msgstr "Merki:"
-#: mod/photos.php:1069
+#: mod/photos.php:1073
msgid "[Select tags to remove]"
msgstr ""
-#: mod/photos.php:1084
+#: mod/photos.php:1088
msgid "New album name"
msgstr "Nýtt nafn myndbókar"
-#: mod/photos.php:1085
+#: mod/photos.php:1089
msgid "Caption"
msgstr "Yfirskrift"
-#: mod/photos.php:1086
+#: mod/photos.php:1090
msgid "Add a Tag"
msgstr "Bæta við merki"
-#: mod/photos.php:1086
+#: 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:1087
+#: mod/photos.php:1091
msgid "Do not rotate"
msgstr "Ekki snúa"
-#: mod/photos.php:1088
+#: mod/photos.php:1092
msgid "Rotate CW (right)"
msgstr "Snúa réttsælis (hægri)"
-#: mod/photos.php:1089
+#: mod/photos.php:1093
msgid "Rotate CCW (left)"
msgstr "Snúa rangsælis (vinstri)"
-#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1265
-#: src/Module/Contact.php:589 src/Module/Item/Compose.php:188
-#: src/Object/Post.php:1055
+#: 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:1137 mod/photos.php:1193 mod/photos.php:1267
-#: src/Object/Post.php:539 src/Object/Post.php:1057
+#: 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:1139 mod/photos.php:1195 mod/photos.php:1269
-#: src/Content/Conversation.php:396 src/Module/Calendar/Event/Form.php:248
-#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:162
-#: src/Object/Post.php:1069
+#: 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:1140 src/Content/Conversation.php:351
-#: src/Module/Post/Edit.php:127 src/Object/Post.php:1059
+#: 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:1226 src/Content/Conversation.php:643
-#: src/Object/Post.php:256
+#: mod/photos.php:1236 src/Content/Conversation.php:1464
+#: src/Object/Post.php:260
msgid "Select"
msgstr "Velja"
-#: mod/photos.php:1227 src/Content/Conversation.php:644
+#: 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:241
+#: src/Module/Settings/Connectors.php:244
+#: src/Module/Settings/Server/Index.php:109
msgid "Delete"
msgstr "Eyða"
-#: mod/photos.php:1288 src/Object/Post.php:384
+#: mod/photos.php:1298 src/Object/Post.php:408
msgid "Like"
msgstr ""
-#: mod/photos.php:1289 src/Object/Post.php:384
+#: 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:1290 src/Object/Post.php:385
+#: mod/photos.php:1300 src/Object/Post.php:409
msgid "Dislike"
msgstr ""
-#: mod/photos.php:1292 src/Object/Post.php:385
+#: 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:1314
+#: mod/photos.php:1324
msgid "Map"
msgstr "Landakort"
-#: src/App.php:470
+#: src/App.php:473
msgid "No system theme config value set."
msgstr ""
-#: src/App.php:574
+#: src/App.php:580
msgid "Apologies but the website is unavailable at the moment."
msgstr ""
@@ -679,7 +686,92 @@ msgid ""
"notifications."
msgstr ""
-#: src/App/Page.php:320
+#: 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 ""
@@ -696,33 +788,33 @@ msgstr "Síða fannst ekki."
msgid "You must be logged in to use addons. "
msgstr "Þú verður að vera skráður inn til að geta notað viðbætur. "
-#: src/BaseModule.php:400
+#: 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:427
+#: src/BaseModule.php:428
msgid "All contacts"
msgstr ""
-#: src/BaseModule.php:432 src/Content/Widget.php:235 src/Core/ACL.php:194
-#: src/Module/Contact.php:408 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:437 src/Content/Widget.php:236
-#: src/Module/Contact.php:409
+#: src/BaseModule.php:438 src/Content/Widget.php:240
+#: src/Module/Contact.php:418
msgid "Following"
msgstr ""
-#: src/BaseModule.php:442 src/Content/Widget.php:237
-#: src/Module/Contact.php:410
+#: src/BaseModule.php:443 src/Content/Widget.php:241
+#: src/Module/Contact.php:421
msgid "Mutual friends"
msgstr ""
-#: src/BaseModule.php:450
+#: src/BaseModule.php:451
msgid "Common"
msgstr ""
@@ -872,7 +964,7 @@ msgstr ""
msgid "Enter user nickname: "
msgstr ""
-#: src/Console/User.php:182 src/Model/User.php:662
+#: 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
@@ -983,7 +1075,7 @@ 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:73
+#: 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
@@ -1043,363 +1135,504 @@ msgstr ""
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:220
-#, php-format
-msgid "%s likes this."
-msgstr "%s líkar þetta."
-
-#: src/Content/Conversation.php:223
-#, php-format
-msgid "%s doesn't like this."
-msgstr "%s mislíkar þetta."
-
#: src/Content/Conversation.php:226
-#, php-format
-msgid "%s attends."
-msgstr "%s mætir."
-
-#: src/Content/Conversation.php:229
-#, php-format
-msgid "%s doesn't attend."
-msgstr "%s mætir ekki."
-
-#: src/Content/Conversation.php:232
-#, php-format
-msgid "%s attends maybe."
-msgstr "%s mætir kannski."
-
-#: src/Content/Conversation.php:235 src/Content/Conversation.php:273
-#: src/Content/Conversation.php:887
-#, php-format
-msgid "%s reshared this."
-msgstr ""
-
-#: src/Content/Conversation.php:241
msgid "and"
msgstr "og"
-#: src/Content/Conversation.php:244
+#: src/Content/Conversation.php:229
#, php-format
msgid "and %d other people"
msgstr "og %d öðrum"
-#: src/Content/Conversation.php:252
+#: src/Content/Conversation.php:235
#, php-format
-msgid " like this"
-msgstr ""
+msgid "%2$s likes this."
+msgid_plural "%2$s like this."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:253
+#: src/Content/Conversation.php:237
#, php-format
-msgid "%s like this."
-msgstr "%s líkar þetta."
+msgid "%2$s doesn't like this."
+msgid_plural "%2$s don't like this."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:256
+#: src/Content/Conversation.php:239
#, php-format
-msgid " don't like this"
-msgstr ""
+msgid "%2$s attends."
+msgid_plural "%2$s attend."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:257
+#: src/Content/Conversation.php:241
#, php-format
-msgid "%s don't like this."
-msgstr "%s líkar þetta ekki."
+msgid "%2$s doesn't attend."
+msgid_plural "%2$s don't attend."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:260
+#: src/Content/Conversation.php:243
#, php-format
-msgid " attend"
-msgstr ""
+msgid "%2$s attends maybe."
+msgid_plural "%2$s attend maybe."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:261
+#: src/Content/Conversation.php:245
#, php-format
-msgid "%s attend."
-msgstr "%s mætir."
+msgid "%2$s reshared this."
+msgid_plural "%2$s reshared this."
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:264
+#: src/Content/Conversation.php:274
#, php-format
-msgid " don't attend"
-msgstr ""
+msgid " likes this"
+msgid_plural " like this"
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:265
+#: src/Content/Conversation.php:277
#, php-format
-msgid "%s don't attend."
-msgstr "%s mætir ekki."
+msgid " doesn't like this"
+msgid_plural " don't like this"
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:268
+#: src/Content/Conversation.php:280
#, php-format
-msgid " attend maybe"
-msgstr ""
+msgid " attends"
+msgid_plural " attend"
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:269
+#: src/Content/Conversation.php:283
#, php-format
-msgid "%s attend maybe."
-msgstr "%s mætir kannski."
+msgid " doesn't attend"
+msgid_plural " don't attend"
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:272
+#: src/Content/Conversation.php:286
#, php-format
-msgid " reshared this"
-msgstr ""
+msgid " attends maybe"
+msgid_plural " attend maybe"
+msgstr[0] ""
+msgstr[1] ""
-#: src/Content/Conversation.php:320
+#: 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 "Sjáanlegt öllum"
-#: src/Content/Conversation.php:321 src/Module/Item/Compose.php:198
-#: src/Object/Post.php:1068
+#: 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:322
+#: src/Content/Conversation.php:338
msgid "Tag term:"
msgstr "Merka með:"
-#: src/Content/Conversation.php:323 src/Module/Filer/SaveTag.php:73
+#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73
msgid "Save to Folder:"
msgstr "Vista í möppu:"
-#: src/Content/Conversation.php:324
+#: src/Content/Conversation.php:340
msgid "Where are you right now?"
msgstr "Hvar ert þú núna?"
-#: src/Content/Conversation.php:325
+#: src/Content/Conversation.php:341
msgid "Delete item(s)?"
msgstr "Eyða atriði/atriðum?"
-#: src/Content/Conversation.php:337 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:347
+#: src/Content/Conversation.php:363
msgid "New Post"
msgstr "Ný færsla"
-#: src/Content/Conversation.php:350
+#: src/Content/Conversation.php:366
msgid "Share"
msgstr "Deila"
-#: src/Content/Conversation.php:353 src/Module/Post/Edit.php:129
+#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132
msgid "upload photo"
msgstr "Hlaða upp mynd"
-#: src/Content/Conversation.php:354 src/Module/Post/Edit.php:130
+#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133
msgid "Attach file"
msgstr "Bæta við skrá"
-#: src/Content/Conversation.php:355 src/Module/Post/Edit.php:131
+#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134
msgid "attach file"
msgstr "Hengja skrá við"
-#: src/Content/Conversation.php:356 src/Module/Item/Compose.php:190
-#: src/Module/Post/Edit.php:168 src/Object/Post.php:1060
+#: 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:357 src/Module/Item/Compose.php:191
-#: src/Module/Post/Edit.php:169 src/Object/Post.php:1061
+#: 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:358 src/Module/Item/Compose.php:192
-#: src/Module/Post/Edit.php:170 src/Object/Post.php:1062
+#: 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:359 src/Module/Item/Compose.php:193
-#: src/Module/Post/Edit.php:171 src/Object/Post.php:1063
+#: 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:360 src/Module/Item/Compose.php:194
-#: src/Module/Post/Edit.php:172 src/Object/Post.php:1064
+#: 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:361 src/Module/Item/Compose.php:195
-#: src/Object/Post.php:1065
+#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197
+#: src/Object/Post.php:1104
msgid "Image"
msgstr "Mynd"
-#: src/Content/Conversation.php:362 src/Module/Item/Compose.php:196
-#: src/Module/Post/Edit.php:173 src/Object/Post.php:1066
+#: 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:363 src/Module/Item/Compose.php:197
-#: src/Module/Post/Edit.php:174 src/Object/Post.php:1067
+#: 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:364
+#: src/Content/Conversation.php:382
msgid "Video"
msgstr ""
-#: src/Content/Conversation.php:365 src/Module/Item/Compose.php:200
-#: src/Module/Post/Edit.php:138
+#: 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:366 src/Module/Post/Edit.php:139
+#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142
msgid "set location"
msgstr "stilla staðsetningu"
-#: src/Content/Conversation.php:367 src/Module/Post/Edit.php:140
+#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143
msgid "Clear browser location"
msgstr "Hreinsa staðsetningu í vafra"
-#: src/Content/Conversation.php:368 src/Module/Post/Edit.php:141
+#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144
msgid "clear location"
msgstr "hreinsa staðsetningu"
-#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:205
-#: src/Module/Post/Edit.php:154
+#: 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:372 src/Module/Item/Compose.php:206
-#: src/Module/Post/Edit.php:156
+#: 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:377 src/Module/Item/Compose.php:222
+#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224
msgid "Scheduled at"
msgstr ""
-#: src/Content/Conversation.php:382 src/Module/Post/Edit.php:143
+#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146
msgid "Permission settings"
msgstr "Stillingar aðgangsheimilda"
-#: src/Content/Conversation.php:392 src/Module/Post/Edit.php:152
+#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155
msgid "Public post"
msgstr "Opinber færsla"
-#: src/Content/Conversation.php:406 src/Content/Widget/VCard.php:113
-#: src/Model/Profile.php:469 src/Module/Admin/Logs/View.php:93
-#: src/Module/Post/Edit.php:177
+#: 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:407 src/Module/Post/Edit.php:178
+#: 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:409 src/Module/Post/Edit.php:181
+#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185
msgid "Open Compose page"
msgstr ""
-#: src/Content/Conversation.php:671 src/Object/Post.php:243
-msgid "Pinned item"
-msgstr ""
-
-#: src/Content/Conversation.php:687 src/Object/Post.php:491
-#: src/Object/Post.php:492
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Birta forsíðu %s hjá %s"
-
-#: src/Content/Conversation.php:700 src/Object/Post.php:479
-msgid "Categories:"
-msgstr "Flokkar:"
-
-#: src/Content/Conversation.php:701 src/Object/Post.php:480
-msgid "Filed under:"
-msgstr "Skráð undir:"
-
-#: src/Content/Conversation.php:709 src/Object/Post.php:505
-#, php-format
-msgid "%s from %s"
-msgstr "%s til %s"
-
-#: src/Content/Conversation.php:725
-msgid "View in context"
-msgstr "Birta í samhengi"
-
-#: src/Content/Conversation.php:790
+#: src/Content/Conversation.php:595
msgid "remove"
msgstr "fjarlægja"
-#: src/Content/Conversation.php:794
+#: src/Content/Conversation.php:599
msgid "Delete Selected Items"
msgstr "Eyða völdum færslum"
-#: src/Content/Conversation.php:859 src/Content/Conversation.php:862
-#: src/Content/Conversation.php:865 src/Content/Conversation.php:868
+#: 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:871
+#: src/Content/Conversation.php:769
#, php-format
msgid "You are following %s."
msgstr ""
-#: src/Content/Conversation.php:874
+#: 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:889
+#: src/Content/Conversation.php:796
+#, php-format
+msgid "%s reshared this."
+msgstr ""
+
+#: src/Content/Conversation.php:798
msgid "Reshared"
msgstr ""
-#: src/Content/Conversation.php:889
+#: src/Content/Conversation.php:798
#, php-format
msgid "Reshared by %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:892
+#: src/Content/Conversation.php:801
#, php-format
msgid "%s is participating in this thread."
msgstr ""
-#: src/Content/Conversation.php:895
+#: src/Content/Conversation.php:804
msgid "Stored for general reasons"
msgstr ""
-#: src/Content/Conversation.php:898
+#: src/Content/Conversation.php:807
msgid "Global post"
msgstr ""
-#: src/Content/Conversation.php:901
+#: src/Content/Conversation.php:810
msgid "Sent via an relay server"
msgstr ""
-#: src/Content/Conversation.php:901
+#: src/Content/Conversation.php:810
#, php-format
msgid "Sent via the relay server %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:904
+#: src/Content/Conversation.php:813
msgid "Fetched"
msgstr ""
-#: src/Content/Conversation.php:904
+#: src/Content/Conversation.php:813
#, php-format
msgid "Fetched because of %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:907
+#: src/Content/Conversation.php:816
msgid "Stored because of a child post to complete this thread."
msgstr ""
-#: src/Content/Conversation.php:910
+#: src/Content/Conversation.php:819
msgid "Local delivery"
msgstr ""
-#: src/Content/Conversation.php:913
+#: src/Content/Conversation.php:822
msgid "Stored because of your activity (like, comment, star, ...)"
msgstr ""
-#: src/Content/Conversation.php:916
+#: src/Content/Conversation.php:825
msgid "Distributed"
msgstr ""
-#: src/Content/Conversation.php:919
+#: 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"
@@ -1429,12 +1662,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
@@ -1475,11 +1708,11 @@ msgid "Advanced Profile Settings"
msgstr ""
#: src/Content/Feature.php:119
-msgid "List Forums"
-msgstr "Spjallsvæðalistar"
+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
@@ -1512,127 +1745,137 @@ msgid ""
"Contact birthday events are private to you."
msgstr ""
-#: src/Content/ForumManager.php:151 src/Content/Nav.php:278
-#: src/Content/Text/HTML.php:905 src/Content/Widget.php:524
-msgid "Forums"
-msgstr "Spjallsvæði"
+#: 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/ForumManager.php:153
-msgid "External link to forum"
-msgstr "Ytri tengill á spjallsvæði"
+#: src/Content/GroupManager.php:154
+msgid "External link to group"
+msgstr ""
-#: src/Content/ForumManager.php:156 src/Content/Widget.php:503
+#: 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 "birta meira"
-#: src/Content/Item.php:326 src/Model/Item.php:2900
+#: 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:329 src/Content/Item.php:339
+#: src/Content/Item.php:334 src/Content/Item.php:344
msgid "status"
msgstr "staða"
-#: src/Content/Item.php:335 src/Model/Item.php:2902
+#: 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:349 src/Module/Post/Tag/Add.php:141
+#: 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:419 view/theme/frio/theme.php:262
+#: src/Content/Item.php:428 view/theme/frio/theme.php:262
msgid "Follow Thread"
msgstr "Fylgja þræði"
-#: src/Content/Item.php:420 src/Model/Contact.php:1204
+#: src/Content/Item.php:429 src/Model/Contact.php:1227
msgid "View Status"
msgstr "Skoða stöðu"
-#: src/Content/Item.php:421 src/Content/Item.php:440
-#: src/Model/Contact.php:1148 src/Model/Contact.php:1196
-#: src/Model/Contact.php:1205 src/Module/Directory.php:157
-#: src/Module/Settings/Profile/Index.php:234
+#: 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:422 src/Model/Contact.php:1206
+#: src/Content/Item.php:431 src/Model/Contact.php:1229
msgid "View Photos"
msgstr "Skoða myndir"
-#: src/Content/Item.php:423 src/Model/Contact.php:1197
-#: src/Model/Contact.php:1207
+#: 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:424 src/Model/Contact.php:1198
-#: src/Model/Contact.php:1208
+#: 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:425 src/Model/Contact.php:1209
+#: src/Content/Item.php:434 src/Model/Contact.php:1232
msgid "Send PM"
msgstr "Senda einkaboð"
-#: src/Content/Item.php:426 src/Module/Contact.php:440
-#: src/Module/Contact/Profile.php:478
+#: 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:427 src/Module/Contact.php:441
-#: src/Module/Contact/Profile.php:486
+#: 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:428 src/Module/Contact.php:442
-#: src/Module/Contact/Profile.php:494
+#: src/Content/Item.php:437 src/Module/Contact.php:470
+#: src/Module/Contact/Profile.php:527
msgid "Collapse"
msgstr ""
-#: src/Content/Item.php:432 src/Object/Post.php:460
+#: 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:437 src/Content/Widget.php:80
-#: src/Model/Contact.php:1199 src/Model/Contact.php:1210
-#: src/Module/Contact/Follow.php:166 view/theme/vier/theme.php:196
+#: 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:862
+#: src/Content/Item.php:882
msgid "Unable to fetch user."
msgstr ""
-#: src/Content/Nav.php:120
+#: src/Content/Nav.php:121
msgid "Nothing new here"
msgstr "Ekkert nýtt hér"
-#: src/Content/Nav.php:124 src/Module/Special/HTTPException.php:77
+#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77
msgid "Go back"
msgstr ""
-#: src/Content/Nav.php:125
+#: src/Content/Nav.php:126
msgid "Clear notifications"
msgstr "Hreinsa tilkynningar"
-#: src/Content/Nav.php:126 src/Content/Text/HTML.php:892
-msgid "@name, !forum, #tags, content"
-msgstr "@nafn, !spjallsvæði, #merki, innihald"
+#: 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:158
+#: src/Content/Nav.php:222 src/Module/Security/Login.php:157
msgid "Logout"
msgstr "Útskráning"
@@ -1641,7 +1884,7 @@ msgid "End this session"
msgstr "Loka þessu innliti"
#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44
-#: src/Module/Security/Login.php:159
+#: src/Module/Security/Login.php:158
msgid "Login"
msgstr "Innskráning"
@@ -1650,7 +1893,7 @@ msgid "Sign in"
msgstr "Innskrá"
#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57
-#: src/Module/Contact.php:484
+#: src/Module/Contact.php:512
msgid "Conversations"
msgstr ""
@@ -1659,8 +1902,8 @@ msgid "Conversations you started"
msgstr ""
#: src/Content/Nav.php:230 src/Module/BaseProfile.php:49
-#: src/Module/BaseSettings.php:100 src/Module/Contact.php:476
-#: src/Module/Contact/Profile.php:393 src/Module/Profile/Profile.php:268
+#: 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"
@@ -1679,7 +1922,7 @@ 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:500
+#: src/Module/BaseProfile.php:76 src/Module/Contact.php:528
#: view/theme/frio/theme.php:235
msgid "Media"
msgstr ""
@@ -1691,7 +1934,7 @@ 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:252 view/theme/frio/theme.php:236
+#: src/Module/Settings/Display.php:267 view/theme/frio/theme.php:236
#: view/theme/frio/theme.php:240
msgid "Calendar"
msgstr "Dagatal"
@@ -1712,7 +1955,7 @@ msgstr "Einkaglósurnar þínar"
msgid "Home"
msgstr "Heim"
-#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:74
+#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73
msgid "Home Page"
msgstr "Heimasíða"
@@ -1729,7 +1972,7 @@ msgstr "Stofna notanda"
#: 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:241
+#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240
msgid "Help"
msgstr "Hjálp"
@@ -1745,8 +1988,8 @@ msgstr "Forrit"
msgid "Addon applications, utilities, games"
msgstr "Viðbótarforrit, nytjatól, leikir"
-#: src/Content/Nav.php:269 src/Content/Text/HTML.php:890
-#: 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 "Leita"
@@ -1754,19 +1997,19 @@ msgstr "Leita"
msgid "Search site content"
msgstr "Leita í efni á vef"
-#: src/Content/Nav.php:272 src/Content/Text/HTML.php:899
+#: 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:900
+#: 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:901 src/Module/BaseProfile.php:127
-#: src/Module/BaseProfile.php:130 src/Module/Contact.php:411
-#: src/Module/Contact.php:507 view/theme/frio/theme.php:243
+#: 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"
@@ -1797,7 +2040,7 @@ 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:100
+#: src/Module/Tos.php:101
msgid "Terms of Service"
msgstr "Þjónustuskilmálar"
@@ -1834,7 +2077,7 @@ msgstr "Tilkynningar"
msgid "See all notifications"
msgstr "Sjá allar tilkynningar"
-#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:241
+#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244
msgid "Mark as seen"
msgstr "Merka sem séð"
@@ -1863,7 +2106,7 @@ 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:170
+#: 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"
@@ -1884,13 +2127,13 @@ msgstr "Stjórnandi"
msgid "Site setup and configuration"
msgstr "Uppsetning og stillingar vefsvæðis"
-#: src/Content/Nav.php:335 src/Module/BaseModeration.php:127
+#: 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/Summary.php:76
+#: 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
@@ -1910,11 +2153,11 @@ msgstr "Yfirsýn"
msgid "Site map"
msgstr "Yfirlit um vefsvæði"
-#: src/Content/OEmbed.php:317
+#: src/Content/OEmbed.php:316
msgid "Embedding disabled"
msgstr "Innfelling ekki leyfð"
-#: src/Content/OEmbed.php:441
+#: src/Content/OEmbed.php:440
msgid "Embedded content"
msgstr "Innbyggt efni"
@@ -1934,51 +2177,51 @@ msgstr "næsta"
msgid "last"
msgstr "síðasta"
-#: src/Content/Text/BBCode.php:949 src/Content/Text/BBCode.php:1811
-#: src/Content/Text/BBCode.php:1812
+#: 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:1166
+#: src/Content/Text/BBCode.php:914
#, php-format
msgid "%2$s %3$s"
msgstr ""
-#: src/Content/Text/BBCode.php:1191 src/Model/Item.php:3573
-#: src/Model/Item.php:3579 src/Model/Item.php:3580
+#: 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:1729 src/Content/Text/HTML.php:929
+#: 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:1760
+#: src/Content/Text/BBCode.php:1576
msgid "$1 wrote:"
msgstr "$1 skrifaði:"
-#: src/Content/Text/BBCode.php:1816 src/Content/Text/BBCode.php:1817
+#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642
msgid "Encrypted content"
msgstr "Dulritað efni"
-#: src/Content/Text/BBCode.php:2044
+#: src/Content/Text/BBCode.php:1901
msgid "Invalid source protocol"
msgstr ""
-#: src/Content/Text/BBCode.php:2059
+#: src/Content/Text/BBCode.php:1920
msgid "Invalid link protocol"
msgstr ""
-#: src/Content/Text/HTML.php:807
+#: src/Content/Text/HTML.php:782
msgid "Loading more entries..."
msgstr "Hleð inn fleiri færslum..."
-#: src/Content/Text/HTML.php:808
+#: src/Content/Text/HTML.php:783
msgid "The end"
msgstr "Endir"
-#: src/Content/Text/HTML.php:884 src/Content/Widget/VCard.php:109
-#: src/Model/Profile.php:463 src/Module/Contact/Profile.php:438
+#: 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"
@@ -2005,118 +2248,130 @@ msgid_plural "%d invitations available"
msgstr[0] "%d boðskort í boði"
msgstr[1] "%d boðskort í boði"
-#: src/Content/Widget.php:78 view/theme/vier/theme.php:194
+#: src/Content/Widget.php:78 view/theme/vier/theme.php:193
msgid "Find People"
msgstr "Finna fólk"
-#: src/Content/Widget.php:79 view/theme/vier/theme.php:195
+#: 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:81 view/theme/vier/theme.php:197
+#: 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:433
-#: src/Module/Directory.php:96 view/theme/vier/theme.php:198
+#: 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:199
+#: view/theme/vier/theme.php:198
msgid "Friend Suggestions"
msgstr "Vina uppástungur"
-#: src/Content/Widget.php:84 view/theme/vier/theme.php:200
+#: 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:201
+#: 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:202
+#: 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:203
+#: view/theme/vier/theme.php:202
msgid "Global Directory"
msgstr "Alheimstengiliðaskrá"
-#: src/Content/Widget.php:89 view/theme/vier/theme.php:205
+#: src/Content/Widget.php:89 view/theme/vier/theme.php:204
msgid "Local Directory"
msgstr "Staðvær mappa"
-#: src/Content/Widget.php:211 src/Model/Group.php:587
-#: src/Module/Contact.php:395 src/Module/Welcome.php:76
-msgid "Groups"
-msgstr "Hópar"
+#: 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 ""
-#: 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 ""
-#: src/Content/Widget.php:244 src/Module/Contact.php:339
-#: src/Module/Group.php:291
+#: 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: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 "Vistaðar möppur"
-#: src/Content/Widget.php:315 src/Content/Widget.php:346
+#: src/Content/Widget.php:320 src/Content/Widget.php:351
msgid "Everything"
msgstr "Allt"
-#: src/Content/Widget.php:344
+#: src/Content/Widget.php:349
msgid "Categories"
msgstr "Flokkar"
-#: 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 tengiliður sameiginlegur"
msgstr[1] "%d tengiliðir sameiginlegir"
-#: src/Content/Widget.php:497
+#: src/Content/Widget.php:506
msgid "Archives"
msgstr "Safnskrár"
-#: 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:1656
+#: src/Content/Widget.php:536 src/Model/Contact.php:1698
msgid "News"
msgstr "Fréttir"
-#: src/Content/Widget.php:527 src/Module/Settings/Account.php:453
+#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454
msgid "Account Types"
msgstr "Gerðir notendaaðganga"
-#: src/Content/Widget.php:528 src/Module/Moderation/BaseUsers.php:69
+#: 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"
@@ -2163,93 +2418,93 @@ msgstr[1] ""
msgid "More Trending Tags"
msgstr ""
-#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:378
-#: src/Module/Contact/Profile.php:382 src/Module/Profile/Profile.php:199
+#: 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:379
-#: src/Module/Contact/Profile.php:384 src/Module/Profile/Profile.php:203
+#: 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: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:380
+#: 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:107 src/Model/Profile.php:476
+#: 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:111 src/Model/Contact.php:1200
-#: src/Model/Contact.php:1211 src/Model/Profile.php:465
-#: src/Module/Contact/Profile.php:430
+#: 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:269
+#: 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 "Senda skilaboð á tölvupóst"
-#: 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 "
"anywhere public."
msgstr ""
-#: src/Core/ACL.php:323
-msgid ""
-"Start typing the name of a contact or a group to show a filtered list. You "
-"can also mention the special groups \"Followers\" and \"Mutuals\"."
-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:326 src/Module/Post/Edit.php:151
+#: src/Core/ACL.php:327 src/Module/Post/Edit.php:154
msgid "CC: email addresses"
msgstr "CC: tölvupóstfang"
-#: src/Core/ACL.php:327 src/Module/Post/Edit.php:157
+#: 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:328
+#: src/Core/ACL.php:329
msgid "Connectors"
msgstr ""
@@ -2572,161 +2827,172 @@ msgstr "Gagnagrunnur er þegar í notkun."
msgid "Could not connect to database."
msgstr "Gat ekki tengst gagnagrunn."
-#: src/Core/L10n.php:408 src/Model/Event.php:432
-#: src/Module/Settings/Display.php:222
+#: 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:408 src/Model/Event.php:433
-#: src/Module/Settings/Display.php:223
+#: 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:408 src/Model/Event.php:434
-#: src/Module/Settings/Display.php:224
+#: 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:408 src/Model/Event.php:435
-#: src/Module/Settings/Display.php:225
+#: src/Core/L10n.php:476 src/Model/Event.php:433
+#: src/Module/Settings/Display.php:238
msgid "Thursday"
msgstr "Fimmtudagur"
-#: src/Core/L10n.php:408 src/Model/Event.php:436
-#: src/Module/Settings/Display.php:226
+#: 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:408 src/Model/Event.php:437
-#: src/Module/Settings/Display.php:227
+#: src/Core/L10n.php:476 src/Model/Event.php:435
+#: src/Module/Settings/Display.php:240
msgid "Saturday"
msgstr "Laugardagur"
-#: src/Core/L10n.php:408 src/Model/Event.php:431
-#: src/Module/Settings/Display.php:221
+#: src/Core/L10n.php:476 src/Model/Event.php:429
+#: src/Module/Settings/Display.php:234
msgid "Sunday"
msgstr "Sunnudagur"
-#: src/Core/L10n.php:412 src/Model/Event.php:452
+#: src/Core/L10n.php:480 src/Model/Event.php:450
msgid "January"
msgstr "Janúar"
-#: src/Core/L10n.php:412 src/Model/Event.php:453
+#: src/Core/L10n.php:480 src/Model/Event.php:451
msgid "February"
msgstr "Febrúar"
-#: src/Core/L10n.php:412 src/Model/Event.php:454
+#: src/Core/L10n.php:480 src/Model/Event.php:452
msgid "March"
msgstr "Mars"
-#: src/Core/L10n.php:412 src/Model/Event.php:455
+#: src/Core/L10n.php:480 src/Model/Event.php:453
msgid "April"
msgstr "Apríl"
-#: src/Core/L10n.php:412 src/Core/L10n.php:431 src/Model/Event.php:443
+#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441
msgid "May"
msgstr "Maí"
-#: src/Core/L10n.php:412 src/Model/Event.php:456
+#: src/Core/L10n.php:480 src/Model/Event.php:454
msgid "June"
msgstr "Júní"
-#: src/Core/L10n.php:412 src/Model/Event.php:457
+#: src/Core/L10n.php:480 src/Model/Event.php:455
msgid "July"
msgstr "Júlí"
-#: src/Core/L10n.php:412 src/Model/Event.php:458
+#: src/Core/L10n.php:480 src/Model/Event.php:456
msgid "August"
msgstr "Ágúst"
-#: src/Core/L10n.php:412 src/Model/Event.php:459
+#: src/Core/L10n.php:480 src/Model/Event.php:457
msgid "September"
msgstr "September"
-#: src/Core/L10n.php:412 src/Model/Event.php:460
+#: src/Core/L10n.php:480 src/Model/Event.php:458
msgid "October"
msgstr "Október"
-#: src/Core/L10n.php:412 src/Model/Event.php:461
+#: src/Core/L10n.php:480 src/Model/Event.php:459
msgid "November"
msgstr "Nóvember"
-#: src/Core/L10n.php:412 src/Model/Event.php:462
+#: src/Core/L10n.php:480 src/Model/Event.php:460
msgid "December"
msgstr "Desember"
-#: src/Core/L10n.php:427 src/Model/Event.php:424
+#: src/Core/L10n.php:495 src/Model/Event.php:422
msgid "Mon"
msgstr "Mán"
-#: src/Core/L10n.php:427 src/Model/Event.php:425
+#: src/Core/L10n.php:495 src/Model/Event.php:423
msgid "Tue"
msgstr "Þri"
-#: src/Core/L10n.php:427 src/Model/Event.php:426
+#: src/Core/L10n.php:495 src/Model/Event.php:424
msgid "Wed"
msgstr "Mið"
-#: src/Core/L10n.php:427 src/Model/Event.php:427
+#: src/Core/L10n.php:495 src/Model/Event.php:425
msgid "Thu"
msgstr "Fim"
-#: src/Core/L10n.php:427 src/Model/Event.php:428
+#: src/Core/L10n.php:495 src/Model/Event.php:426
msgid "Fri"
msgstr "Fös"
-#: src/Core/L10n.php:427 src/Model/Event.php:429
+#: src/Core/L10n.php:495 src/Model/Event.php:427
msgid "Sat"
msgstr "Lau"
-#: src/Core/L10n.php:427 src/Model/Event.php:423
+#: src/Core/L10n.php:495 src/Model/Event.php:421
msgid "Sun"
msgstr "Sun"
-#: src/Core/L10n.php:431 src/Model/Event.php:439
+#: src/Core/L10n.php:499 src/Model/Event.php:437
msgid "Jan"
msgstr "Jan"
-#: src/Core/L10n.php:431 src/Model/Event.php:440
+#: src/Core/L10n.php:499 src/Model/Event.php:438
msgid "Feb"
msgstr "Feb"
-#: src/Core/L10n.php:431 src/Model/Event.php:441
+#: src/Core/L10n.php:499 src/Model/Event.php:439
msgid "Mar"
msgstr "Mar"
-#: src/Core/L10n.php:431 src/Model/Event.php:442
+#: src/Core/L10n.php:499 src/Model/Event.php:440
msgid "Apr"
msgstr "Apr"
-#: src/Core/L10n.php:431 src/Model/Event.php:444
+#: src/Core/L10n.php:499 src/Model/Event.php:442
msgid "Jun"
msgstr "Jún"
-#: src/Core/L10n.php:431 src/Model/Event.php:445
+#: src/Core/L10n.php:499 src/Model/Event.php:443
msgid "Jul"
msgstr "Júl"
-#: src/Core/L10n.php:431 src/Model/Event.php:446
+#: src/Core/L10n.php:499 src/Model/Event.php:444
msgid "Aug"
msgstr "Ágú"
-#: src/Core/L10n.php:431
+#: src/Core/L10n.php:499
msgid "Sep"
msgstr "sep"
-#: src/Core/L10n.php:431 src/Model/Event.php:448
+#: src/Core/L10n.php:499 src/Model/Event.php:446
msgid "Oct"
msgstr "Okt"
-#: src/Core/L10n.php:431 src/Model/Event.php:449
+#: src/Core/L10n.php:499 src/Model/Event.php:447
msgid "Nov"
msgstr "Nóv"
-#: src/Core/L10n.php:431 src/Model/Event.php:450
+#: 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
@@ -2771,22 +3037,22 @@ msgid ""
" to version 2021.01 and wait until the postupdate finished version 1383."
msgstr ""
-#: src/Core/Update.php:197
+#: src/Core/Update.php:183
#, php-format
msgid "%s: executing pre update %d"
msgstr ""
-#: src/Core/Update.php:239
+#: src/Core/Update.php:225
#, php-format
msgid "%s: executing post update %d"
msgstr ""
-#: src/Core/Update.php:313
+#: 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:353
+#: src/Core/Update.php:339
#, php-format
msgid ""
"\n"
@@ -2796,16 +3062,16 @@ msgid ""
"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
msgstr ""
-#: src/Core/Update.php:359
+#: src/Core/Update.php:345
#, php-format
msgid "The error message is\\n[pre]%s[/pre]"
msgstr ""
-#: src/Core/Update.php:363 src/Core/Update.php:391
+#: src/Core/Update.php:349 src/Core/Update.php:377
msgid "[Friendica Notify] Database update"
msgstr ""
-#: src/Core/Update.php:385
+#: src/Core/Update.php:371
#, php-format
msgid ""
"\n"
@@ -2817,28 +3083,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"
@@ -2846,20 +3112,20 @@ 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:221
+#: src/Database/DBStructure.php:232
msgid "Another database update is currently running."
msgstr ""
-#: src/Database/DBStructure.php:225
+#: src/Database/DBStructure.php:236
#, php-format
msgid "%s: Database update"
msgstr ""
-#: src/Database/DBStructure.php:482
+#: src/Database/DBStructure.php:493
#, php-format
msgid "%s: updating %s table."
msgstr ""
@@ -2890,82 +3156,122 @@ msgstr ""
msgid "Legacy module file not found: %s"
msgstr ""
-#: src/Model/Contact.php:1217 src/Module/Moderation/Users/Pending.php:102
+#: 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/Circle.php:562
+msgid "edit"
+msgstr "breyta"
+
+#: src/Model/Circle.php:599
+msgid "add"
+msgstr "bæta við"
+
+#: 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 "Samþykkja"
-#: src/Model/Contact.php:1652
+#: src/Model/Contact.php:1694
msgid "Organisation"
msgstr ""
-#: src/Model/Contact.php:1660
-msgid "Forum"
-msgstr "Spjallsvæði"
+#: src/Model/Contact.php:1702
+msgid "Group"
+msgstr ""
-#: src/Model/Contact.php:2942
+#: src/Model/Contact.php:3005
msgid "Disallowed profile URL."
msgstr "Óleyfileg forsíðu slóð."
-#: src/Model/Contact.php:2947 src/Module/Friendica.php:83
+#: src/Model/Contact.php:3010 src/Module/Friendica.php:101
msgid "Blocked domain"
msgstr "Útilokað lén"
-#: src/Model/Contact.php:2952
+#: src/Model/Contact.php:3015
msgid "Connect URL missing."
msgstr "Tengislóð vantar."
-#: src/Model/Contact.php:2961
+#: 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:2979
+#: src/Model/Contact.php:3042
#, php-format
msgid "Expected network %s does not match actual network %s"
msgstr ""
-#: src/Model/Contact.php:2996
+#: 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:2998
+#: 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:3001
+#: 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:3004
+#: 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:3007
+#: src/Model/Contact.php:3070
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr ""
-#: src/Model/Contact.php:3008
+#: src/Model/Contact.php:3071
msgid "Use mailto: in front of address to force email check."
msgstr ""
-#: src/Model/Contact.php:3014
+#: 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:3019
+#: 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:3084
+#: src/Model/Contact.php:3148
msgid "Unable to retrieve contact information."
msgstr "Ekki hægt að sækja tengiliðs upplýsingar."
@@ -2973,54 +3279,54 @@ msgstr "Ekki hægt að sækja tengiliðs upplýsingar."
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
+#: 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:472
-#: src/Model/Event.php:944
+#: 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:421
+#: src/Model/Event.php:419
msgid "all-day"
msgstr "allan-daginn"
-#: src/Model/Event.php:447
+#: src/Model/Event.php:445
msgid "Sept"
msgstr "Sept"
-#: src/Model/Event.php:464 src/Module/Calendar/Show.php:128
+#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128
#: src/Util/Temporal.php:343
msgid "today"
msgstr "í dag"
-#: src/Model/Event.php:465 src/Module/Calendar/Show.php:129
-#: src/Module/Settings/Display.php:232 src/Util/Temporal.php:353
+#: 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:466 src/Module/Calendar/Show.php:130
-#: src/Module/Settings/Display.php:233 src/Util/Temporal.php:354
+#: 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:467 src/Module/Calendar/Show.php:131
-#: src/Module/Settings/Display.php:234 src/Util/Temporal.php:355
+#: 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:469
+#: src/Model/Event.php:467
msgid "No events to display"
msgstr "Engir atburðir til að birta"
-#: src/Model/Event.php:518 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69
+#: 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:559 src/Module/Calendar/Event/Show.php:67
+#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67
msgid "Event not found."
msgstr ""
@@ -3052,210 +3358,166 @@ msgstr "D g:i A"
msgid "g:i A"
msgstr "g:i A"
-#: src/Model/Event.php:959 src/Model/Event.php:961
+#: src/Model/Event.php:964 src/Model/Event.php:966
msgid "Show map"
msgstr "Birta kort"
-#: src/Model/Event.php:960
+#: src/Model/Event.php:965
msgid "Hide map"
msgstr "Fela kort"
-#: src/Model/Event.php:1053
+#: src/Model/Event.php:1058
#, php-format
msgid "%s's birthday"
msgstr "Afmælisdagur %s"
-#: src/Model/Event.php:1054
+#: src/Model/Event.php:1059
#, php-format
msgid "Happy Birthday %s"
msgstr "Til hamingju með afmælið %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 "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:503
-msgid "Default privacy group for new contacts"
-msgstr ""
-
-#: src/Model/Group.php:535
-msgid "Everybody"
-msgstr "Allir"
-
-#: src/Model/Group.php:554
-msgid "edit"
-msgstr "breyta"
-
-#: src/Model/Group.php:586
-msgid "add"
-msgstr "bæta við"
-
-#: src/Model/Group.php:591
-msgid "Edit group"
-msgstr "Breyta hóp"
-
-#: src/Model/Group.php:592 src/Module/Group.php:192
-msgid "Contacts not in any group"
-msgstr "Tengiliðir ekki í neinum hópum"
-
-#: src/Model/Group.php:594
-msgid "Create a new group"
-msgstr "Stofna nýjan hóp"
-
-#: src/Model/Group.php:595 src/Module/Group.php:177 src/Module/Group.php:200
-#: src/Module/Group.php:275
-msgid "Group Name: "
-msgstr "Nafn hóps: "
-
-#: src/Model/Group.php:596
-msgid "Edit groups"
-msgstr "Breyta hópum"
-
-#: src/Model/Item.php:2001
+#: src/Model/Item.php:2062
#, php-format
msgid "Detected languages in this post:\\n%s"
msgstr ""
-#: src/Model/Item.php:2904
+#: src/Model/Item.php:3007
msgid "activity"
msgstr "virkni"
-#: src/Model/Item.php:2906
+#: src/Model/Item.php:3009
msgid "comment"
msgstr ""
-#: src/Model/Item.php:2909 src/Module/Post/Tag/Add.php:123
+#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123
msgid "post"
msgstr "senda"
-#: src/Model/Item.php:3059
+#: src/Model/Item.php:3182
#, php-format
msgid "%s is blocked"
msgstr ""
-#: src/Model/Item.php:3061
+#: src/Model/Item.php:3184
#, php-format
msgid "%s is ignored"
msgstr ""
-#: src/Model/Item.php:3063
+#: src/Model/Item.php:3186
#, php-format
msgid "Content from %s is collapsed"
msgstr ""
-#: src/Model/Item.php:3067
+#: src/Model/Item.php:3190
#, php-format
msgid "Content warning: %s"
msgstr "Viðvörun vegna innihalds: %s"
-#: src/Model/Item.php:3485
+#: src/Model/Item.php:3652
msgid "bytes"
msgstr "bæti"
-#: src/Model/Item.php:3516
+#: 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:3518
+#: 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:3523
+#: 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:3525
+#: src/Model/Item.php:3692
#, php-format
msgid "%d voter."
msgid_plural "%d voters."
msgstr[0] ""
msgstr[1] ""
-#: src/Model/Item.php:3527
+#: src/Model/Item.php:3694
#, php-format
msgid "Poll end: %s"
msgstr ""
-#: src/Model/Item.php:3561 src/Model/Item.php:3562
+#: 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:136 src/Model/Mail.php:264
+#: src/Model/Mail.php:137 src/Model/Mail.php:266
msgid "[no subject]"
msgstr "[ekkert efni]"
-#: src/Model/Photo.php:1189 src/Module/Media/Photo/Upload.php:198
+#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170
msgid "Wall Photos"
msgstr "Veggmyndir"
-#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:283
+#: 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:363
+#: src/Model/Profile.php:361
msgid "Change profile photo"
msgstr "Breyta forsíðumynd"
-#: src/Model/Profile.php:376 src/Module/Directory.php:152
+#: 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:377 src/Module/Contact/Profile.php:386
+#: 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:467
+#: src/Model/Profile.php:465
msgid "Atom feed"
msgstr "Atom fréttaveita"
-#: src/Model/Profile.php:474
+#: src/Model/Profile.php:472
msgid "This website has been verified to belong to the same person."
msgstr ""
-#: src/Model/Profile.php:511
+#: src/Model/Profile.php:509
msgid "F d"
msgstr "F d"
-#: src/Model/Profile.php:575 src/Model/Profile.php:664
+#: src/Model/Profile.php:573 src/Model/Profile.php:662
msgid "[today]"
msgstr "[í dag]"
-#: src/Model/Profile.php:584
+#: src/Model/Profile.php:582
msgid "Birthday Reminders"
msgstr "Afmælisáminningar"
-#: src/Model/Profile.php:585
+#: src/Model/Profile.php:583
msgid "Birthdays this week:"
msgstr "Afmæli í þessari viku:"
-#: src/Model/Profile.php:613
+#: src/Model/Profile.php:611
msgid "g A l F d"
msgstr "g A l F d"
-#: src/Model/Profile.php:651
+#: src/Model/Profile.php:649
msgid "[No description]"
msgstr "[Engin lýsing]"
-#: src/Model/Profile.php:677
+#: src/Model/Profile.php:675
msgid "Event Reminders"
msgstr "Atburðaáminningar"
-#: src/Model/Profile.php:678
+#: src/Model/Profile.php:676
msgid "Upcoming events the next 7 days:"
msgstr ""
@@ -3304,7 +3566,8 @@ msgstr "Mislíkar:"
msgid "Title/Description:"
msgstr "Starfsheiti/Lýsing:"
-#: src/Model/Profile.php:1023 src/Module/Admin/Summary.php:221
+#: 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"
@@ -3345,145 +3608,145 @@ msgstr "Skóli/menntun"
msgid "Contact information and Social Networks"
msgstr "Tengiliðaupplýsingar og samfélagsnet"
-#: src/Model/User.php:213 src/Model/User.php:1119
+#: 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:571 src/Model/User.php:604
+#: src/Model/User.php:620 src/Model/User.php:653
msgid "Login failed"
msgstr "Innskráning mistókst"
-#: src/Model/User.php:636
+#: src/Model/User.php:685
msgid "Not enough information to authenticate"
msgstr ""
-#: src/Model/User.php:753
+#: src/Model/User.php:806
msgid "Password can't be empty"
msgstr "Lykilorð getur ekki verið autt"
-#: src/Model/User.php:795
+#: src/Model/User.php:848
msgid "Empty passwords are not allowed."
msgstr ""
-#: src/Model/User.php:799
+#: 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:803
+#: src/Model/User.php:856
msgid "The password length is limited to 72 characters."
msgstr ""
-#: src/Model/User.php:807
+#: src/Model/User.php:860
msgid "The password can't contain white spaces nor accentuated letters"
msgstr ""
-#: src/Model/User.php:1002
+#: 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:1009
+#: src/Model/User.php:1076
msgid "An invitation is required."
msgstr "Boðskort er skilyrði."
-#: src/Model/User.php:1013
+#: src/Model/User.php:1080
msgid "Invitation could not be verified."
msgstr "Ekki hægt að sannreyna boðskort."
-#: src/Model/User.php:1021
+#: src/Model/User.php:1088
msgid "Invalid OpenID url"
msgstr "OpenID slóð ekki til"
-#: src/Model/User.php:1034 src/Security/Authentication.php:241
+#: 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:1034 src/Security/Authentication.php:241
+#: src/Model/User.php:1101 src/Security/Authentication.php:241
msgid "The error message was:"
msgstr "Villumeldingin var:"
-#: src/Model/User.php:1040
+#: src/Model/User.php:1107
msgid "Please enter the required information."
msgstr "Settu inn umbeðnar upplýsingar."
-#: src/Model/User.php:1054
+#: 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:1061
+#: 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:1065
+#: 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:1073
+#: 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:1078
+#: 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:1082
+#: src/Model/User.php:1149
msgid "Not a valid email address."
msgstr "Ekki tækt tölvupóstfang."
-#: src/Model/User.php:1085
+#: src/Model/User.php:1152
msgid "The nickname was blocked from registration by the nodes admin."
msgstr ""
-#: src/Model/User.php:1089 src/Model/User.php:1095
+#: 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:1101
+#: src/Model/User.php:1168
msgid "Your nickname can only contain a-z, 0-9 and _."
msgstr ""
-#: src/Model/User.php:1109 src/Model/User.php:1166
+#: 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:1153 src/Model/User.php:1157
+#: 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:1180
+#: 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:1187
+#: src/Model/User.php:1254
msgid "An error occurred creating your self contact. Please try again."
msgstr ""
-#: src/Model/User.php:1192
+#: src/Model/User.php:1259
msgid "Friends"
msgstr "Vinir"
-#: src/Model/User.php:1196
+#: 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:1235
+#: src/Model/User.php:1307
msgid "Profile Photos"
msgstr "Forsíðumyndir"
-#: src/Model/User.php:1428
+#: src/Model/User.php:1487
#, php-format
msgid ""
"\n"
@@ -3491,7 +3754,7 @@ msgid ""
"\t\t\tthe administrator of %2$s has set up an account for you."
msgstr ""
-#: src/Model/User.php:1431
+#: src/Model/User.php:1490
#, php-format
msgid ""
"\n"
@@ -3523,12 +3786,12 @@ msgid ""
"\t\tThank you and welcome to %4$s."
msgstr ""
-#: src/Model/User.php:1464 src/Model/User.php:1571
+#: 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:1484
+#: src/Model/User.php:1543
#, php-format
msgid ""
"\n"
@@ -3543,12 +3806,12 @@ msgid ""
"\t\t"
msgstr ""
-#: src/Model/User.php:1503
+#: src/Model/User.php:1562
#, php-format
msgid "Registration at %s"
msgstr ""
-#: src/Model/User.php:1527
+#: src/Model/User.php:1586
#, php-format
msgid ""
"\n"
@@ -3557,7 +3820,7 @@ msgid ""
"\t\t\t"
msgstr ""
-#: src/Model/User.php:1535
+#: src/Model/User.php:1594
#, php-format
msgid ""
"\n"
@@ -3614,10 +3877,10 @@ msgid "Enable"
msgstr "Virkja"
#: src/Module/Admin/Addons/Details.php:111
-#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:207
-#: 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:389
-#: src/Module/Admin/Storage.php:138 src/Module/Admin/Summary.php:220
+#: 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
@@ -3627,7 +3890,7 @@ 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:134
+#: src/Module/BaseSettings.php:132
msgid "Addons"
msgstr "Forritsviðbætur"
@@ -3636,13 +3899,13 @@ msgstr "Forritsviðbætur"
msgid "Toggle"
msgstr "Skipta"
-#: 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 "Höfundur:"
-#: 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 "Umsjónarmaður: "
@@ -3655,13 +3918,13 @@ msgstr ""
msgid "Addon %s failed to install."
msgstr ""
-#: 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:392
+#: 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:158
-#: src/Module/Settings/Connectors.php:243
-#: src/Module/Settings/Delegation.php:169 src/Module/Settings/Display.php:247
+#: 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"
@@ -3670,7 +3933,7 @@ msgstr "Vista stillingar"
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 "
@@ -3712,28 +3975,28 @@ msgstr "Uppfærsla %s skilaði ekki gildi. Óvíst hvort tókst."
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 "Engar uppfærslur mistókust."
-#: 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 "Uppfærslur sem mistókust"
-#: 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 "Þetta á ekki við uppfærslur fyrir 1139, þær skiluðu ekki lokastöðu."
-#: src/Module/Admin/DBSync.php:114
+#: 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:115
+#: src/Module/Admin/DBSync.php:113
msgid "Attempt to execute this update step automatically"
msgstr "Framkvæma þessa uppfærslu sjálfkrafa"
@@ -3742,79 +4005,81 @@ msgstr "Framkvæma þessa uppfærslu sjálfkrafa"
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:73
+#: 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:147 src/Module/Admin/Federation.php:396
+#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403
msgid "unknown"
msgstr "óþekkt"
-#: src/Module/Admin/Federation.php:180
+#: 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:181
+#: 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:182
+#: 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:183
+#: 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:184
+#: 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:187
+#: 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:192
+#: 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:202
+#: 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:208 src/Module/BaseAdmin.php:87
+#: 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:212
+#: src/Module/Admin/Federation.php:219
#, php-format
msgid ""
"Currently this node is aware of %2$s node (%3$s active users last month, "
@@ -3832,46 +4097,53 @@ msgstr[1] ""
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:102
+#: 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:82
+#: src/Module/Admin/Logs/Settings.php:88
msgid "Clear"
msgstr "Hreinsa"
-#: 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 "Atburðaskrá"
-#: 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 "Vefþjónn verður að hafa skrifréttindi. Afstætt við Friendica rótar skráarsafn."
-#: src/Module/Admin/Logs/Settings.php:88
+#: src/Module/Admin/Logs/Settings.php:93
msgid "Log level"
msgstr "Stig atburðaskráningar"
-#: 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 "
@@ -3894,77 +4166,77 @@ msgid ""
"is readable."
msgstr ""
-#: src/Module/Admin/Logs/View.php:85 src/Module/BaseAdmin.php:104
+#: 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: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 "Birta allt"
-#: 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:97 src/Module/Calendar/Event/Form.php:207
+#: 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:98
+#: 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 ""
@@ -4000,7 +4272,8 @@ msgstr ""
msgid "Job Parameters"
msgstr ""
-#: src/Module/Admin/Queue.php:78 src/Module/Settings/OAuth.php:75
+#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95
+#: src/Module/Settings/OAuth.php:74
msgid "Created"
msgstr "Búið til"
@@ -4008,269 +4281,269 @@ msgstr "Búið til"
msgid "Priority"
msgstr ""
-#: src/Module/Admin/Site.php:207
+#: src/Module/Admin/Site.php:212
#, php-format
msgid "%s is no valid input for maximum image size"
msgstr ""
-#: src/Module/Admin/Site.php:304 src/Module/Settings/Display.php:169
+#: 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:321 src/Module/Settings/Display.php:179
+#: 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:333
+#: src/Module/Admin/Site.php:342
msgid "No community page"
msgstr ""
-#: src/Module/Admin/Site.php:334
+#: src/Module/Admin/Site.php:343
msgid "No community page for visitors"
msgstr ""
-#: src/Module/Admin/Site.php:335
+#: src/Module/Admin/Site.php:344
msgid "Public postings from users of this site"
msgstr ""
-#: src/Module/Admin/Site.php:336
+#: src/Module/Admin/Site.php:345
msgid "Public postings from the federated network"
msgstr ""
-#: src/Module/Admin/Site.php:337
+#: src/Module/Admin/Site.php:346
msgid "Public postings from local users and the federated network"
msgstr ""
-#: src/Module/Admin/Site.php:343
+#: src/Module/Admin/Site.php:352
msgid "Multi user instance"
msgstr ""
-#: src/Module/Admin/Site.php:366
+#: src/Module/Admin/Site.php:375
msgid "Closed"
msgstr "Lokað"
-#: src/Module/Admin/Site.php:367
+#: src/Module/Admin/Site.php:376
msgid "Requires approval"
msgstr "Þarf samþykki"
-#: src/Module/Admin/Site.php:368
+#: src/Module/Admin/Site.php:377
msgid "Open"
msgstr "Opið"
-#: src/Module/Admin/Site.php:372
+#: src/Module/Admin/Site.php:381
msgid "Don't check"
msgstr ""
-#: src/Module/Admin/Site.php:373
+#: src/Module/Admin/Site.php:382
msgid "check the stable version"
msgstr ""
-#: src/Module/Admin/Site.php:374
+#: src/Module/Admin/Site.php:383
msgid "check the development version"
msgstr ""
-#: src/Module/Admin/Site.php:378
+#: src/Module/Admin/Site.php:387
msgid "none"
msgstr ""
-#: src/Module/Admin/Site.php:379
+#: src/Module/Admin/Site.php:388
msgid "Local contacts"
msgstr ""
-#: src/Module/Admin/Site.php:380
+#: src/Module/Admin/Site.php:389
msgid "Interactors"
msgstr ""
-#: src/Module/Admin/Site.php:390 src/Module/BaseAdmin.php:90
+#: src/Module/Admin/Site.php:399 src/Module/BaseAdmin.php:90
msgid "Site"
msgstr "Vefur"
-#: src/Module/Admin/Site.php:391
+#: src/Module/Admin/Site.php:400
msgid "General Information"
msgstr ""
-#: src/Module/Admin/Site.php:393
+#: src/Module/Admin/Site.php:402
msgid "Republish users to directory"
msgstr ""
-#: src/Module/Admin/Site.php:394 src/Module/Register.php:152
+#: src/Module/Admin/Site.php:403 src/Module/Register.php:152
msgid "Registration"
msgstr "Nýskráning"
-#: src/Module/Admin/Site.php:395
+#: src/Module/Admin/Site.php:404
msgid "File upload"
msgstr "Hlaða upp skrá"
-#: src/Module/Admin/Site.php:396
+#: src/Module/Admin/Site.php:405
msgid "Policies"
msgstr "Stefna"
-#: src/Module/Admin/Site.php:397 src/Module/Calendar/Event/Form.php:252
-#: src/Module/Contact.php:517 src/Module/Profile/Profile.php:276
+#: 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:398
+#: src/Module/Admin/Site.php:407
msgid "Auto Discovered Contact Directory"
msgstr ""
-#: src/Module/Admin/Site.php:399
+#: src/Module/Admin/Site.php:408
msgid "Performance"
msgstr "Afköst"
-#: src/Module/Admin/Site.php:400
+#: src/Module/Admin/Site.php:409
msgid "Worker"
msgstr ""
-#: src/Module/Admin/Site.php:401
+#: src/Module/Admin/Site.php:410
msgid "Message Relay"
msgstr ""
-#: src/Module/Admin/Site.php:402
+#: 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:403
+#: src/Module/Admin/Site.php:412
msgid "The system is not subscribed to any relays at the moment."
msgstr ""
-#: src/Module/Admin/Site.php:404
+#: src/Module/Admin/Site.php:413
msgid "The system is currently subscribed to the following relays:"
msgstr ""
-#: src/Module/Admin/Site.php:406
+#: src/Module/Admin/Site.php:415
msgid "Relocate Node"
msgstr ""
-#: src/Module/Admin/Site.php:407
+#: 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:408
+#: src/Module/Admin/Site.php:417
msgid "(Friendica directory)# bin/console relocate https://newdomain.com"
msgstr ""
-#: src/Module/Admin/Site.php:412
+#: src/Module/Admin/Site.php:420
msgid "Site name"
msgstr "Nafn vefsvæðis"
-#: src/Module/Admin/Site.php:413
+#: src/Module/Admin/Site.php:421
msgid "Sender Email"
msgstr "Tölvupóstfang sendanda"
-#: src/Module/Admin/Site.php:413
+#: 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:414
+#: src/Module/Admin/Site.php:422
msgid "Name of the system actor"
msgstr ""
-#: src/Module/Admin/Site.php:414
+#: 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:415
+#: src/Module/Admin/Site.php:423
msgid "Banner/Logo"
msgstr "Borði/Merki"
-#: src/Module/Admin/Site.php:416
+#: src/Module/Admin/Site.php:424
msgid "Email Banner/Logo"
msgstr ""
-#: src/Module/Admin/Site.php:417
+#: src/Module/Admin/Site.php:425
msgid "Shortcut icon"
msgstr "Táknmynd flýtivísunar"
-#: src/Module/Admin/Site.php:417
+#: src/Module/Admin/Site.php:425
msgid "Link to an icon that will be used for browsers."
msgstr ""
-#: src/Module/Admin/Site.php:418
+#: src/Module/Admin/Site.php:426
msgid "Touch icon"
msgstr ""
-#: src/Module/Admin/Site.php:418
+#: 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:419
+#: src/Module/Admin/Site.php:427
msgid "Additional Info"
msgstr "Viðbótarupplýsingar"
-#: src/Module/Admin/Site.php:419
+#: 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:420
+#: src/Module/Admin/Site.php:428
msgid "System language"
msgstr "Tungumál kerfis"
-#: src/Module/Admin/Site.php:421
+#: src/Module/Admin/Site.php:429
msgid "System theme"
msgstr "Þema kerfis"
-#: src/Module/Admin/Site.php:421
+#: 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:422
+#: src/Module/Admin/Site.php:430
msgid "Mobile system theme"
msgstr ""
-#: src/Module/Admin/Site.php:422
+#: src/Module/Admin/Site.php:430
msgid "Theme for mobile devices"
msgstr ""
-#: src/Module/Admin/Site.php:423
+#: src/Module/Admin/Site.php:431
msgid "Force SSL"
msgstr "Þvinga SSL"
-#: src/Module/Admin/Site.php:423
+#: 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:424
+#: src/Module/Admin/Site.php:432
msgid "Show help entry from navigation menu"
msgstr ""
-#: src/Module/Admin/Site.php:424
+#: 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:425
+#: src/Module/Admin/Site.php:433
msgid "Single user instance"
msgstr ""
-#: src/Module/Admin/Site.php:425
+#: 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:427
+#: src/Module/Admin/Site.php:435
msgid "Maximum image size"
msgstr "Mesta stærð mynda"
-#: src/Module/Admin/Site.php:427
+#: 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"
@@ -4278,181 +4551,193 @@ msgid ""
"\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:431
+#: src/Module/Admin/Site.php:439
msgid "Maximum image length"
msgstr ""
-#: src/Module/Admin/Site.php:431
+#: 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:432
+#: src/Module/Admin/Site.php:440
msgid "JPEG image quality"
msgstr "JPEG myndgæði"
-#: src/Module/Admin/Site.php:432
+#: 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:434
+#: src/Module/Admin/Site.php:442
msgid "Register policy"
msgstr "Stefna varðandi nýskráningar"
-#: src/Module/Admin/Site.php:435
+#: 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:435
+#: 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:436
+#: src/Module/Admin/Site.php:445
msgid "Register text"
msgstr "Texti við nýskráningu"
-#: src/Module/Admin/Site.php:436
+#: 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:437
+#: src/Module/Admin/Site.php:446
msgid "Forbidden Nicknames"
msgstr ""
-#: src/Module/Admin/Site.php:437
+#: 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:438
+#: src/Module/Admin/Site.php:447
msgid "Accounts abandoned after x days"
msgstr "Yfirgefnir notendur eftir x daga"
-#: src/Module/Admin/Site.php:438
+#: 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:439
+#: src/Module/Admin/Site.php:448
msgid "Allowed friend domains"
msgstr "Leyfð lén vina"
-#: src/Module/Admin/Site.php:439
+#: 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:440
+#: src/Module/Admin/Site.php:449
msgid "Allowed email domains"
msgstr "Leyfð tölvupóstfangalén"
-#: src/Module/Admin/Site.php:440
+#: 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:441
+#: src/Module/Admin/Site.php:450
msgid "No OEmbed rich content"
msgstr ""
-#: src/Module/Admin/Site.php:441
+#: 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:442
+#: src/Module/Admin/Site.php:451
msgid "Trusted third-party domains"
msgstr ""
-#: src/Module/Admin/Site.php:442
+#: 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:443
+#: src/Module/Admin/Site.php:452
msgid "Block public"
msgstr "Loka á opinberar færslur"
-#: src/Module/Admin/Site.php:443
+#: 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:444
+#: src/Module/Admin/Site.php:453
msgid "Force publish"
msgstr "Skylda að vera í tengiliðalista"
-#: src/Module/Admin/Site.php:444
+#: 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:444
+#: src/Module/Admin/Site.php:453
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr ""
-#: src/Module/Admin/Site.php:445
+#: src/Module/Admin/Site.php:454
msgid "Global directory URL"
msgstr ""
-#: src/Module/Admin/Site.php:445
+#: 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:446
+#: src/Module/Admin/Site.php:455
msgid "Private posts by default for new users"
msgstr ""
-#: src/Module/Admin/Site.php:446
+#: 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:447
+#: src/Module/Admin/Site.php:456
msgid "Don't include post content in email notifications"
msgstr ""
-#: src/Module/Admin/Site.php:447
+#: 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:448
+#: 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:448
+#: 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:449
+#: src/Module/Admin/Site.php:458
msgid "Don't embed private images in posts"
msgstr ""
-#: src/Module/Admin/Site.php:449
+#: 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 "
@@ -4460,11 +4745,11 @@ msgid ""
"while."
msgstr ""
-#: src/Module/Admin/Site.php:450
+#: src/Module/Admin/Site.php:459
msgid "Explicit Content"
msgstr ""
-#: src/Module/Admin/Site.php:450
+#: 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 "
@@ -4473,267 +4758,267 @@ msgid ""
"will be shown at the user registration page."
msgstr ""
-#: src/Module/Admin/Site.php:451
+#: src/Module/Admin/Site.php:460
msgid "Proxify external content"
msgstr ""
-#: src/Module/Admin/Site.php:451
+#: 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:452
+#: src/Module/Admin/Site.php:461
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:452
+#: 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:453
+#: src/Module/Admin/Site.php:462
msgid "Allow Users to set remote_self"
msgstr ""
-#: src/Module/Admin/Site.php:453
+#: 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:454
+#: src/Module/Admin/Site.php:463
msgid "Enable multiple registrations"
msgstr ""
-#: src/Module/Admin/Site.php:454
+#: src/Module/Admin/Site.php:463
msgid "Enable users to register additional accounts for use as pages."
msgstr ""
-#: src/Module/Admin/Site.php:455
+#: src/Module/Admin/Site.php:464
msgid "Enable OpenID"
msgstr ""
-#: src/Module/Admin/Site.php:455
+#: src/Module/Admin/Site.php:464
msgid "Enable OpenID support for registration and logins."
msgstr ""
-#: src/Module/Admin/Site.php:456
+#: src/Module/Admin/Site.php:465
msgid "Enable Fullname check"
msgstr ""
-#: src/Module/Admin/Site.php:456
+#: 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:457
+#: src/Module/Admin/Site.php:466
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:457
+#: 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:458
+#: src/Module/Admin/Site.php:467
msgid "Community pages for visitors"
msgstr ""
-#: src/Module/Admin/Site.php:458
+#: 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:459
+#: src/Module/Admin/Site.php:468
msgid "Posts per user on community page"
msgstr ""
-#: src/Module/Admin/Site.php:459
+#: 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:461
+#: src/Module/Admin/Site.php:470
msgid "Enable Mail support"
msgstr ""
-#: src/Module/Admin/Site.php:461
+#: 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:462
+#: 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:463
+#: src/Module/Admin/Site.php:472
msgid "Enable OStatus support"
msgstr ""
-#: src/Module/Admin/Site.php:463
+#: 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:465
+#: 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:466
+#: src/Module/Admin/Site.php:475
msgid "Enable Diaspora support"
msgstr "Leyfa Diaspora tengingar"
-#: src/Module/Admin/Site.php:466
+#: src/Module/Admin/Site.php:475
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:467
+#: src/Module/Admin/Site.php:476
msgid "Verify SSL"
msgstr "Sannreyna SSL"
-#: src/Module/Admin/Site.php:467
+#: 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:468
+#: src/Module/Admin/Site.php:477
msgid "Proxy user"
msgstr "Proxy notandi"
-#: src/Module/Admin/Site.php:468
+#: src/Module/Admin/Site.php:477
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:469
+#: src/Module/Admin/Site.php:478
msgid "Proxy URL"
msgstr "Proxy slóð"
-#: src/Module/Admin/Site.php:469
+#: 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:470
+#: src/Module/Admin/Site.php:479
msgid "Network timeout"
msgstr "Net tími útrunninn"
-#: src/Module/Admin/Site.php:470
+#: src/Module/Admin/Site.php:479
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
-#: src/Module/Admin/Site.php:471
+#: src/Module/Admin/Site.php:480
msgid "Maximum Load Average"
msgstr "Mesta meðaltals álag"
-#: src/Module/Admin/Site.php:471
+#: 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:472
+#: src/Module/Admin/Site.php:481
msgid "Minimal Memory"
msgstr ""
-#: src/Module/Admin/Site.php:472
+#: 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:473
+#: src/Module/Admin/Site.php:482
msgid "Periodically optimize tables"
msgstr ""
-#: src/Module/Admin/Site.php:473
+#: src/Module/Admin/Site.php:482
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr ""
-#: src/Module/Admin/Site.php:475
+#: src/Module/Admin/Site.php:484
msgid "Discover followers/followings from contacts"
msgstr ""
-#: src/Module/Admin/Site.php:475
+#: src/Module/Admin/Site.php:484
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr ""
-#: src/Module/Admin/Site.php:476
+#: src/Module/Admin/Site.php:485
msgid "None - deactivated"
msgstr ""
-#: src/Module/Admin/Site.php:477
+#: 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:478
+#: 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:480
+#: src/Module/Admin/Site.php:489
msgid "Synchronize the contacts with the directory server"
msgstr ""
-#: src/Module/Admin/Site.php:480
+#: 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:482
+#: src/Module/Admin/Site.php:491
msgid "Days between requery"
msgstr ""
-#: src/Module/Admin/Site.php:482
+#: 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:483
+#: src/Module/Admin/Site.php:492
msgid "Discover contacts from other servers"
msgstr ""
-#: src/Module/Admin/Site.php:483
+#: 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:484
+#: src/Module/Admin/Site.php:493
msgid "Search the local directory"
msgstr ""
-#: src/Module/Admin/Site.php:484
+#: 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:486
+#: src/Module/Admin/Site.php:495
msgid "Publish server information"
msgstr ""
-#: src/Module/Admin/Site.php:486
+#: 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 "
@@ -4741,50 +5026,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr ""
-#: src/Module/Admin/Site.php:488
+#: src/Module/Admin/Site.php:497
msgid "Check upstream version"
msgstr ""
-#: src/Module/Admin/Site.php:488
+#: 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:489
+#: src/Module/Admin/Site.php:498
msgid "Suppress Tags"
msgstr ""
-#: src/Module/Admin/Site.php:489
+#: 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:490
+#: src/Module/Admin/Site.php:499
msgid "Clean database"
msgstr ""
-#: src/Module/Admin/Site.php:490
+#: 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:491
+#: src/Module/Admin/Site.php:500
msgid "Lifespan of remote items"
msgstr "Líftími fjartengdra atriða"
-#: src/Module/Admin/Site.php:491
+#: 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:492
+#: src/Module/Admin/Site.php:501
msgid "Lifespan of unclaimed items"
msgstr ""
-#: src/Module/Admin/Site.php:492
+#: 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. "
@@ -4792,144 +5077,144 @@ msgid ""
"items if set to 0."
msgstr ""
-#: src/Module/Admin/Site.php:493
+#: src/Module/Admin/Site.php:502
msgid "Lifespan of raw conversation data"
msgstr ""
-#: src/Module/Admin/Site.php:493
+#: 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:494
+#: src/Module/Admin/Site.php:503
msgid "Maximum numbers of comments per post"
msgstr ""
-#: src/Module/Admin/Site.php:494
+#: 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:495
+#: src/Module/Admin/Site.php:504
msgid "Maximum numbers of comments per post on the display page"
msgstr ""
-#: src/Module/Admin/Site.php:495
+#: 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:496
+#: src/Module/Admin/Site.php:505
msgid "Temp path"
msgstr ""
-#: src/Module/Admin/Site.php:496
+#: 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:497
+#: src/Module/Admin/Site.php:506
msgid "Only search in tags"
msgstr ""
-#: src/Module/Admin/Site.php:497
+#: 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:498
-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:498
+#: src/Module/Admin/Site.php:507
msgid ""
-"On systems with users that heavily use contact groups the query can be very "
-"expensive."
+"On systems with users that heavily use contact circles the query can be very"
+" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:509
msgid "Maximum number of parallel workers"
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: 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:501
+#: src/Module/Admin/Site.php:510
msgid "Enable fastlane"
msgstr ""
-#: src/Module/Admin/Site.php:501
+#: 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:503
+#: src/Module/Admin/Site.php:512
msgid "Direct relay transfer"
msgstr ""
-#: src/Module/Admin/Site.php:503
+#: 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:504
+#: src/Module/Admin/Site.php:513
msgid "Relay scope"
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: 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:504 src/Module/Contact/Profile.php:287
+#: 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:504
+#: src/Module/Admin/Site.php:513
msgid "all"
msgstr "allt"
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:513
msgid "tags"
msgstr "merki"
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:514
msgid "Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:514
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:515
msgid "Deny Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:515
msgid "Comma separated list of tags that are rejected."
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:516
msgid "Allow user tags"
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: 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:510
+#: src/Module/Admin/Site.php:519
msgid "Start Relocation"
msgstr ""
@@ -4975,7 +5260,13 @@ 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 ""
@@ -5079,51 +5370,40 @@ msgid ""
"href=\"%s\">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
+#: 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:180
+#: 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:188
+#: 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:199
+#: src/Module/Admin/Summary.php:175
msgid "Message queues"
msgstr ""
-#: src/Module/Admin/Summary.php:205
+#: src/Module/Admin/Summary.php:181
msgid "Server Settings"
msgstr ""
-#: src/Module/Admin/Summary.php:223
+#: src/Module/Admin/Summary.php:199
msgid "Version"
msgstr "Útgáfunúmer"
-#: src/Module/Admin/Summary.php:227
+#: src/Module/Admin/Summary.php:203
msgid "Active addons"
msgstr ""
@@ -5163,16 +5443,16 @@ 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 "[Á tilraunastigi]"
-#: src/Module/Admin/Themes/Index.php:121
+#: src/Module/Admin/Themes/Index.php:120
msgid "[Unsupported]"
msgstr "[Óstutt]"
@@ -5276,11 +5556,11 @@ msgstr "Atriði fannst ekki"
msgid "Please login to continue."
msgstr "Skráðu þig inn til að halda áfram."
-#: src/Module/BaseAdmin.php:63 src/Module/BaseModeration.php:86
+#: src/Module/BaseAdmin.php:63
msgid "You don't have access to administration pages."
msgstr ""
-#: src/Module/BaseAdmin.php:67 src/Module/BaseModeration.php:90
+#: src/Module/BaseAdmin.php:67
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
@@ -5290,11 +5570,11 @@ msgstr ""
msgid "Overview"
msgstr "Yfirlit"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:111
+#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
msgid "Configuration"
msgstr "Uppsetning"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:112
+#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
msgid "Additional features"
msgstr "Viðbótareiginleikar"
@@ -5314,7 +5594,7 @@ msgstr ""
msgid "Inspect worker Queue"
msgstr ""
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:119
+#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
msgid "Diagnostics"
msgstr "Bilanagreining"
@@ -5342,23 +5622,23 @@ msgstr ""
msgid "Addon Features"
msgstr "Eiginleikar forritsviðbótar"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:128
+#: 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:266 src/Module/BaseApi.php:282
-#: src/Module/BaseApi.php:298
+#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467
+#: src/Module/BaseApi.php:483
msgid "Too Many Requests"
msgstr ""
-#: src/Module/BaseApi.php:267
+#: 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:283
+#: src/Module/BaseApi.php:468
#, php-format
msgid "Weekly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -5366,7 +5646,7 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: src/Module/BaseApi.php:299
+#: src/Module/BaseApi.php:484
#, php-format
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -5374,32 +5654,46 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: src/Module/BaseModeration.php:112 src/Module/Moderation/Users/Index.php:148
+#: 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:114
+#: src/Module/BaseModeration.php:115
msgid "Tools"
msgstr "Verkfæri"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:116
msgid "Contact Blocklist"
msgstr "Svartur listi tengiliðar"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:117
msgid "Server Blocklist"
msgstr "Svartur listi vefþjóns"
-#: src/Module/BaseModeration.php:117 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
msgid "Delete Item"
msgstr "Eyða atriði"
-#: src/Module/BaseModeration.php:120 src/Module/Moderation/Item/Source.php:76
+#: 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:479
+#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507
msgid "Profile Details"
msgstr "Forsíðu upplýsingar"
@@ -5411,7 +5705,7 @@ msgstr ""
msgid "Only You Can See This"
msgstr "Aðeins þú sérð þetta"
-#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:82
+#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81
msgid "Scheduled Posts"
msgstr ""
@@ -5423,50 +5717,67 @@ msgstr ""
msgid "Tips for New Members"
msgstr "Ábendingar fyrir nýja notendur"
-#: src/Module/BaseSearch.php:69
+#: src/Module/BaseSearch.php:71
#, php-format
msgid "People Search - %s"
msgstr "Leita að fólki - %s"
-#: src/Module/BaseSearch.php:79
+#: src/Module/BaseSearch.php:75
#, php-format
-msgid "Forum Search - %s"
-msgstr "Leita á spjallsvæði - %s"
+msgid "Group Search - %s"
+msgstr ""
-#: src/Module/BaseSearch.php:119 src/Module/Contact/MatchInterests.php:139
+#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139
msgid "No matches"
msgstr "Engar leitarniðurstöður"
-#: src/Module/BaseSettings.php:80
+#: 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:87 src/Module/Security/TwoFactor/Verify.php:96
+#: 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:120
+#: src/Module/BaseSettings.php:118
msgid "Display"
msgstr "Birting"
-#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:202
+#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204
msgid "Social Networks"
msgstr "Samfélagsnet"
-#: src/Module/BaseSettings.php:141 src/Module/Settings/Delegation.php:170
+#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172
msgid "Manage Accounts"
msgstr ""
-#: src/Module/BaseSettings.php:148
+#: src/Module/BaseSettings.php:146
msgid "Connected apps"
msgstr "Tengd forrit"
-#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:98
+#: 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:162
+#: src/Module/BaseSettings.php:167
msgid "Remove account"
msgstr "Henda tengilið"
@@ -5586,10 +5897,113 @@ msgstr "Skoða"
msgid "Create New Event"
msgstr "Stofna nýjan atburð"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:235
+#: 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."
@@ -5597,159 +6011,146 @@ msgid_plural "%d contacts edited."
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Contact.php:342
+#: src/Module/Contact.php:348
msgid "Show all contacts"
msgstr "Sýna alla tengiliði"
-#: src/Module/Contact.php:347 src/Module/Contact.php:415
+#: src/Module/Contact.php:353 src/Module/Contact.php:432
#: src/Module/Moderation/BaseUsers.php:85
msgid "Pending"
msgstr ""
-#: src/Module/Contact.php:350
+#: src/Module/Contact.php:356
msgid "Only show pending contacts"
msgstr ""
-#: src/Module/Contact.php:355 src/Module/Contact.php:416
+#: src/Module/Contact.php:361 src/Module/Contact.php:435
#: src/Module/Moderation/BaseUsers.php:93
msgid "Blocked"
msgstr "Útilokað"
-#: src/Module/Contact.php:358
+#: src/Module/Contact.php:364
msgid "Only show blocked contacts"
msgstr ""
-#: src/Module/Contact.php:363 src/Module/Contact.php:418
-#: src/Object/Post.php:344
+#: 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:366
+#: src/Module/Contact.php:372
msgid "Only show ignored contacts"
msgstr ""
-#: src/Module/Contact.php:371 src/Module/Contact.php:419
+#: src/Module/Contact.php:377 src/Module/Contact.php:444
msgid "Collapsed"
msgstr ""
-#: src/Module/Contact.php:374
+#: src/Module/Contact.php:380
msgid "Only show collapsed contacts"
msgstr ""
-#: src/Module/Contact.php:379 src/Module/Contact.php:420
+#: src/Module/Contact.php:385 src/Module/Contact.php:447
msgid "Archived"
msgstr "Í geymslu"
-#: src/Module/Contact.php:382
+#: src/Module/Contact.php:388
msgid "Only show archived contacts"
msgstr "Aðeins sýna geymda tengiliði"
-#: src/Module/Contact.php:387 src/Module/Contact.php:417
+#: src/Module/Contact.php:393 src/Module/Contact.php:438
msgid "Hidden"
msgstr "Falinn"
-#: src/Module/Contact.php:390
+#: src/Module/Contact.php:396
msgid "Only show hidden contacts"
msgstr "Aðeins sýna falda tengiliði"
-#: src/Module/Contact.php:398
-msgid "Organize your contact groups"
+#: src/Module/Contact.php:404
+msgid "Organize your contact circles"
msgstr ""
-#: src/Module/Contact.php:431
+#: src/Module/Contact.php:459
msgid "Search your contacts"
msgstr "Leita í þínum vinum"
-#: src/Module/Contact.php:432 src/Module/Search/Index.php:207
+#: 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:439
+#: src/Module/Contact.php:467
msgid "Update"
msgstr "Uppfæra"
-#: src/Module/Contact.php:440 src/Module/Contact/Profile.php:478
+#: 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:441 src/Module/Contact/Profile.php:486
+#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519
msgid "Unignore"
msgstr "Byrja að fylgjast með á ný"
-#: src/Module/Contact.php:442 src/Module/Contact/Profile.php:494
+#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527
msgid "Uncollapse"
msgstr ""
-#: src/Module/Contact.php:444
+#: src/Module/Contact.php:472
msgid "Batch Actions"
msgstr "Magnaðgerðir"
-#: src/Module/Contact.php:487
+#: src/Module/Contact.php:515
msgid "Conversations started by this contact"
msgstr ""
-#: src/Module/Contact.php:492
+#: src/Module/Contact.php:520
msgid "Posts and Comments"
msgstr ""
-#: src/Module/Contact.php:495
+#: src/Module/Contact.php:523
msgid "Individual Posts and Replies"
msgstr ""
-#: src/Module/Contact.php:503
+#: src/Module/Contact.php:531
msgid "Posts containing media objects"
msgstr ""
-#: src/Module/Contact.php:510
+#: src/Module/Contact.php:539
msgid "View all known contacts"
msgstr ""
-#: src/Module/Contact.php:520
+#: src/Module/Contact.php:550
msgid "Advanced Contact Settings"
msgstr ""
-#: src/Module/Contact.php:556
+#: src/Module/Contact.php:586
msgid "Mutual Friendship"
msgstr "Sameiginlegur vinskapur"
-#: src/Module/Contact.php:560
+#: src/Module/Contact.php:590
msgid "is a fan of yours"
msgstr "er fylgjandi þinn"
-#: src/Module/Contact.php:564
+#: src/Module/Contact.php:594
msgid "you are a fan of"
msgstr "þú er fylgjandi"
-#: src/Module/Contact.php:582
+#: src/Module/Contact.php:612
msgid "Pending outgoing contact request"
msgstr ""
-#: src/Module/Contact.php:584
+#: src/Module/Contact.php:614
msgid "Pending incoming contact request"
msgstr ""
-#: src/Module/Contact.php:597 src/Module/Contact/Profile.php:347
+#: 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: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
-#: src/Module/Group.php:97 src/Module/Group.php:106
-msgid "Contact not found."
-msgstr "Tengiliður fannst ekki."
-
#: src/Module/Contact/Advanced.php:99
msgid "Contact update failed."
msgstr "Uppfærsla tengiliðs mistókst."
@@ -5760,13 +6161,14 @@ 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:71
+#: 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:73
+#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72
msgid "Name"
msgstr "Nafn"
@@ -5786,11 +6188,6 @@ msgstr "Slóð á könnun/fréttastraum"
msgid "New photo from this URL"
msgstr "Ný mynd frá slóð"
-#: src/Module/Contact/Contacts.php:66 src/Module/Conversation/Network.php:189
-#: src/Module/Group.php:101
-msgid "Invalid contact."
-msgstr "Ógildur tengiliður."
-
#: src/Module/Contact/Contacts.php:89
msgid "No known contacts."
msgstr ""
@@ -5799,28 +6196,28 @@ msgstr ""
msgid "No common contacts."
msgstr ""
-#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:132
+#: 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:135
+#: 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:138
+#: 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:140
+#: 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 ""
@@ -5839,15 +6236,15 @@ msgid ""
"contacts (follow, comment or likes on public posts)."
msgstr ""
-#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:146
+#: 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:69 src/Module/Contact/Redir.php:62
-#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:194
+#: 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
@@ -5856,71 +6253,72 @@ msgstr[1] ""
msgid "Access denied."
msgstr "Aðgangi hafnað."
-#: src/Module/Contact/Follow.php:104 src/Module/Contact/Unfollow.php:125
+#: 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:114
+#: src/Module/Contact/Follow.php:115
msgid "You already added this contact."
msgstr ""
-#: src/Module/Contact/Follow.php:129
+#: 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:137
+#: src/Module/Contact/Follow.php:138
msgid "Diaspora support isn't enabled. Contact can't be added."
msgstr ""
-#: src/Module/Contact/Follow.php:142
+#: src/Module/Contact/Follow.php:143
msgid "OStatus support is disabled. Contact can't be added."
msgstr ""
-#: src/Module/Contact/Follow.php:167 src/Module/Profile/RemoteFollow.php:132
+#: 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:168 src/Module/Contact/Unfollow.php:123
+#: 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:169 src/Module/Contact/Profile.php:376
+#: 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:170 src/Module/Contact/Profile.php:388
+#: 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:181
+#: src/Module/Contact/Follow.php:182
#, php-format
msgid "%s knows you"
msgstr ""
-#: src/Module/Contact/Follow.php:182
+#: src/Module/Contact/Follow.php:183
msgid "Add a personal note:"
msgstr "Bæta við persónulegri athugasemd"
-#: src/Module/Contact/Follow.php:191 src/Module/Contact/Unfollow.php:138
+#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138
msgid "Posts and Replies"
msgstr ""
-#: src/Module/Contact/Follow.php:220
+#: 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:79
-#: src/Module/Media/Attachment/Upload.php:84
-#: src/Module/Media/Photo/Upload.php:83 src/Module/Media/Photo/Upload.php:88
-#: src/Module/Media/Photo/Upload.php:137
+#: 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."
@@ -5932,248 +6330,312 @@ msgstr ""
msgid "Profile Match"
msgstr "Forsíða fannst"
-#: src/Module/Contact/Profile.php:128
+#: 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:178
+#: src/Module/Contact/Profile.php:190
msgid "Contact has been unblocked"
msgstr "Opnað á tengilið"
-#: src/Module/Contact/Profile.php:182
+#: src/Module/Contact/Profile.php:194
msgid "Contact has been blocked"
msgstr "Lokað á tengilið"
-#: src/Module/Contact/Profile.php:194
+#: src/Module/Contact/Profile.php:206
msgid "Contact has been unignored"
msgstr "Tengiliður afhunsaður"
-#: src/Module/Contact/Profile.php:198
+#: src/Module/Contact/Profile.php:210
msgid "Contact has been ignored"
msgstr "Tengiliður hunsaður"
-#: src/Module/Contact/Profile.php:210
+#: src/Module/Contact/Profile.php:222
msgid "Contact has been uncollapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:214
+#: src/Module/Contact/Profile.php:226
msgid "Contact has been collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:243
+#: 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:244
+#: 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:245
+#: 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:261
+#: 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:263
+#: 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:266
+#: src/Module/Contact/Profile.php:288
msgid "(Update was not successful)"
msgstr "(uppfærsla tókst ekki)"
-#: src/Module/Contact/Profile.php:266
+#: src/Module/Contact/Profile.php:288
msgid "(Update was successful)"
msgstr "(uppfærsla tókst)"
-#: src/Module/Contact/Profile.php:268 src/Module/Contact/Profile.php:449
+#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482
msgid "Suggest friends"
msgstr "Stinga uppá vinum"
-#: src/Module/Contact/Profile.php:272
+#: src/Module/Contact/Profile.php:294
#, php-format
msgid "Network type: %s"
msgstr "Net tegund: %s"
-#: src/Module/Contact/Profile.php:277
+#: src/Module/Contact/Profile.php:299
msgid "Communications lost with this contact!"
msgstr ""
-#: src/Module/Contact/Profile.php:283
+#: 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:285
+#: 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:288
+#: src/Module/Contact/Profile.php:310
msgid "Fetch information"
msgstr "Ná í upplýsingar"
-#: src/Module/Contact/Profile.php:289
+#: src/Module/Contact/Profile.php:311
msgid "Fetch keywords"
msgstr "Ná í stikkorð"
-#: src/Module/Contact/Profile.php:290
+#: src/Module/Contact/Profile.php:312
msgid "Fetch information and keywords"
msgstr "Ná í upplýsingar og stikkorð"
-#: src/Module/Contact/Profile.php:300 src/Module/Contact/Profile.php:305
-#: src/Module/Contact/Profile.php:310 src/Module/Contact/Profile.php:316
+#: 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:301 src/Module/Contact/Profile.php:311
-#: src/Module/Contact/Profile.php:317
+#: 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:306 src/Module/Contact/Profile.php:312
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334
msgid "Native reshare"
msgstr ""
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:353
msgid "Contact Information / Notes"
msgstr "Uppl. um tengilið / minnisatriði"
-#: src/Module/Contact/Profile.php:330
+#: src/Module/Contact/Profile.php:354
msgid "Contact Settings"
msgstr "Stillingar tengiliðar"
-#: src/Module/Contact/Profile.php:338
+#: src/Module/Contact/Profile.php:362
msgid "Contact"
msgstr "Tengiliður"
-#: src/Module/Contact/Profile.php:342
+#: src/Module/Contact/Profile.php:366
msgid "Their personal note"
msgstr ""
-#: src/Module/Contact/Profile.php:344
+#: src/Module/Contact/Profile.php:368
msgid "Edit contact notes"
msgstr "Breyta minnispunktum tengiliðs "
-#: src/Module/Contact/Profile.php:348
+#: src/Module/Contact/Profile.php:372
msgid "Block/Unblock contact"
msgstr "útiloka/opna á tengilið"
-#: src/Module/Contact/Profile.php:349
+#: src/Module/Contact/Profile.php:373
+#: src/Module/Moderation/Report/Create.php:293
msgid "Ignore contact"
msgstr "Hunsa tengilið"
-#: src/Module/Contact/Profile.php:350
+#: src/Module/Contact/Profile.php:374
msgid "View conversations"
msgstr "Skoða samtöl"
-#: src/Module/Contact/Profile.php:355
+#: src/Module/Contact/Profile.php:379
msgid "Last update:"
msgstr "Síðasta uppfærsla:"
-#: src/Module/Contact/Profile.php:357
+#: src/Module/Contact/Profile.php:381
msgid "Update public posts"
msgstr "Uppfæra opinberar færslur"
-#: src/Module/Contact/Profile.php:359 src/Module/Contact/Profile.php:459
+#: 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:361
+#: src/Module/Contact/Profile.php:385
msgid "Awaiting connection acknowledge"
msgstr ""
-#: src/Module/Contact/Profile.php:362
+#: src/Module/Contact/Profile.php:386
msgid "Currently blocked"
msgstr "Útilokaður sem stendur"
-#: src/Module/Contact/Profile.php:363
+#: src/Module/Contact/Profile.php:387
msgid "Currently ignored"
msgstr "Hunsaður sem stendur"
-#: src/Module/Contact/Profile.php:364
+#: src/Module/Contact/Profile.php:388
msgid "Currently collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:365
+#: src/Module/Contact/Profile.php:389
msgid "Currently archived"
msgstr "Í geymslu"
-#: src/Module/Contact/Profile.php:368
+#: 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:368
+#: src/Module/Contact/Profile.php:394
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"
-#: src/Module/Contact/Profile.php:369
+#: src/Module/Contact/Profile.php:395
msgid "Notification for new posts"
msgstr ""
-#: src/Module/Contact/Profile.php:369
+#: src/Module/Contact/Profile.php:395
msgid "Send a notification of every new post of this contact"
msgstr ""
-#: src/Module/Contact/Profile.php:371
+#: src/Module/Contact/Profile.php:397
msgid "Keyword Deny List"
msgstr ""
-#: src/Module/Contact/Profile.php:371
+#: 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:389
+#: src/Module/Contact/Profile.php:415
#: src/Module/Settings/TwoFactor/Index.php:139
msgid "Actions"
msgstr "Aðgerðir"
-#: src/Module/Contact/Profile.php:391
+#: 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:397
+#: src/Module/Contact/Profile.php:423
msgid "Mirror postings from this contact"
msgstr ""
-#: src/Module/Contact/Profile.php:399
+#: 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:469
+#: 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:480
+#: src/Module/Contact/Profile.php:513
msgid "Toggle Blocked status"
msgstr ""
-#: src/Module/Contact/Profile.php:488
+#: src/Module/Contact/Profile.php:521
msgid "Toggle Ignored status"
msgstr ""
-#: src/Module/Contact/Profile.php:496
+#: src/Module/Contact/Profile.php:529
msgid "Toggle Collapsed status"
msgstr ""
-#: src/Module/Contact/Profile.php:503 src/Module/Contact/Revoke.php:106
+#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106
msgid "Revoke Follow"
msgstr ""
-#: src/Module/Contact/Profile.php:505
+#: src/Module/Contact/Profile.php:538
msgid "Revoke the follow from this contact"
msgstr ""
@@ -6185,10 +6647,6 @@ msgstr ""
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 ""
@@ -6236,103 +6694,55 @@ msgstr ""
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr ""
-#: src/Module/Conversation/Community.php:74
+#: 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:87
-msgid "Local Community"
-msgstr ""
-
-#: src/Module/Conversation/Community.php:90
-msgid "Posts from local users on this server"
-msgstr ""
-
-#: src/Module/Conversation/Community.php:98
-msgid "Global Community"
-msgstr ""
-
-#: src/Module/Conversation/Community.php:101
-msgid "Posts from users of the whole federated network"
-msgstr ""
-
-#: 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 "Engar leitarniðurstöður."
-
-#: 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 "Ekki tiltækt."
-#: src/Module/Conversation/Network.php:175
-msgid "No such group"
-msgstr "Enginn slíkur hópur"
+#: src/Module/Conversation/Network.php:218
+msgid "No such circle"
+msgstr ""
-#: src/Module/Conversation/Network.php:179
+#: src/Module/Conversation/Network.php:222
#, php-format
-msgid "Group: %s"
-msgstr "Hópur: %s"
-
-#: src/Module/Conversation/Network.php:257
-msgid "Latest Activity"
+msgid "Circle: %s"
msgstr ""
-#: src/Module/Conversation/Network.php:260
-msgid "Sort by latest activity"
+#: src/Module/Conversation/Network.php:317
+msgid "Network feed not available."
msgstr ""
-#: src/Module/Conversation/Network.php:265
-msgid "Latest Posts"
+#: src/Module/Conversation/Timeline.php:158
+msgid "Own Contacts"
msgstr ""
-#: src/Module/Conversation/Network.php:268
-msgid "Sort by post received date"
+#: src/Module/Conversation/Timeline.php:162
+msgid "Include"
msgstr ""
-#: src/Module/Conversation/Network.php:273
-msgid "Latest Creation"
+#: src/Module/Conversation/Timeline.php:163
+msgid "Hide"
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:236
-msgid "Personal"
-msgstr "Einka"
-
-#: src/Module/Conversation/Network.php:284
-msgid "Posts that mention or involve you"
-msgstr "Færslur sem tengjast þér"
-
-#: src/Module/Conversation/Network.php:289 src/Object/Post.php:356
-msgid "Starred"
-msgstr "Stjörnumerkt"
-
-#: src/Module/Conversation/Network.php:292
-msgid "Favourite Posts"
-msgstr "Uppáhalds færslur"
-
#: src/Module/Credits.php:44
msgid "Credits"
msgstr "Þakkir"
@@ -6549,7 +6959,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:144
+#: src/Module/Settings/Profile/Index.php:177
msgid "You must be logged in to use this module"
msgstr ""
@@ -6678,138 +7088,58 @@ msgstr "Stinga uppá vinum"
msgid "Suggest a friend for %s"
msgstr "Stinga uppá vin fyrir %s"
-#: src/Module/Friendica.php:64
+#: src/Module/Friendica.php:82
msgid "Installed addons/apps:"
msgstr ""
-#: src/Module/Friendica.php:69
+#: src/Module/Friendica.php:87
msgid "No installed addons/apps"
msgstr ""
-#: src/Module/Friendica.php:74
+#: src/Module/Friendica.php:92
#, php-format
msgid "Read about the Terms of Service of this node."
msgstr ""
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:99
msgid "On this server the following remote servers are blocked."
msgstr ""
-#: 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 ""
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:104
msgid "Download this list in CSV format"
msgstr ""
-#: src/Module/Friendica.php:100
+#: 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:105
+#: src/Module/Friendica.php:123
msgid ""
"Please visit Friendi.ca to learn more "
"about the Friendica project."
msgstr ""
-#: src/Module/Friendica.php:106
+#: 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:106
+#: src/Module/Friendica.php:124
msgid "the bugtracker at github"
msgstr "villuskráningu á GitHub"
-#: src/Module/Friendica.php:107
+#: 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 "Gat ekki stofnað hóp."
-
-#: src/Module/Group.php:67 src/Module/Group.php:213 src/Module/Group.php:237
-msgid "Group not found."
-msgstr "Hópur fannst ekki."
-
-#: 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 "Vista hóp"
-
-#: src/Module/Group.php:170
-msgid "Filter"
-msgstr ""
-
-#: src/Module/Group.php:176
-msgid "Create a group of contacts/friends."
-msgstr "Stofna hóp af tengiliðum/vinum"
-
-#: src/Module/Group.php:218
-msgid "Unable to remove group."
-msgstr "Ekki tókst að eyða hóp."
-
-#: src/Module/Group.php:269
-msgid "Delete Group"
-msgstr "Eyða hópi"
-
-#: src/Module/Group.php:279
-msgid "Edit Group Name"
-msgstr "Breyta nafni hóps"
-
-#: src/Module/Group.php:289
-msgid "Members"
-msgstr "Meðlimir"
-
-#: src/Module/Group.php:292
-msgid "Group is empty"
-msgstr "Hópur er tómur"
-
-#: 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 "Ýttu á tengilið til að bæta við hóp eða taka úr hóp."
-
-#: src/Module/Group.php:340
-msgid "Add contact to group"
-msgstr ""
-
#: src/Module/HCard.php:45
msgid "No profile"
msgstr "Engin forsíða"
@@ -7101,30 +7431,26 @@ 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/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 ""
@@ -7163,37 +7489,30 @@ msgstr "Skrár"
msgid "Upload"
msgstr "Senda inn"
-#: src/Module/Media/Attachment/Upload.php:99
+#: 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:99
+#: 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:106
+#: 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:116
+#: src/Module/Media/Attachment/Upload.php:114
msgid "File upload failed."
msgstr "Skráar upphlöðun mistókst."
-#: src/Module/Media/Photo/Upload.php:154 src/Module/Media/Photo/Upload.php:155
+#: 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:188 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/Media/Photo/Upload.php:206 src/Module/Profile/Photos.php:243
+#: 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."
@@ -7226,40 +7545,40 @@ msgstr ""
msgid "List of pending user deletions"
msgstr ""
-#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:491
+#: 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:498
+#: 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:505
-msgid "Public Forum"
+#: 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:512
+#: 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 Forum"
-msgstr "Einkaspjallsvæði"
+msgid "Private Group"
+msgstr ""
-#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:463
+#: 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:470
+#: 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:477
+#: 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:484
-msgid "Community Forum"
+#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485
+msgid "Community Group"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:130
@@ -7316,6 +7635,7 @@ 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"
@@ -7389,6 +7709,8 @@ 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 ""
@@ -7671,6 +7993,237 @@ msgstr ""
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"
@@ -7680,7 +8233,7 @@ msgid "Automatic Follower Account"
msgstr ""
#: src/Module/Moderation/Summary.php:55
-msgid "Public Forum Account"
+msgid "Public Group Account"
msgstr ""
#: src/Module/Moderation/Summary.php:56
@@ -7692,7 +8245,7 @@ msgid "Blog Account"
msgstr ""
#: src/Module/Moderation/Summary.php:58
-msgid "Private Forum Account"
+msgid "Private Group Account"
msgstr ""
#: src/Module/Moderation/Summary.php:78
@@ -7835,19 +8388,19 @@ msgstr "Nýr notandi"
msgid "Add User"
msgstr "Bæta við notanda"
-#: src/Module/Moderation/Users/Create.php:71
+#: src/Module/Moderation/Users/Create.php:70
msgid "Name of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:71
msgid "Nickname"
msgstr "Stuttnefni"
-#: src/Module/Moderation/Users/Create.php:72
+#: src/Module/Moderation/Users/Create.php:71
msgid "Nickname of the new user."
msgstr ""
-#: src/Module/Moderation/Users/Create.php:73
+#: src/Module/Moderation/Users/Create.php:72
msgid "Email address of the new user."
msgstr ""
@@ -7993,11 +8546,11 @@ msgstr "Tilkynningar frá heimasvæði"
msgid "Show unread"
msgstr "Birta ólesið"
-#: src/Module/Notifications/Ping.php:245
+#: src/Module/Notifications/Ping.php:246
msgid "{0} requested registration"
msgstr "{0} óskaði eftir skráningu"
-#: src/Module/Notifications/Ping.php:254
+#: src/Module/Notifications/Ping.php:255
#, php-format
msgid "{0} and %d others requested registration"
msgstr ""
@@ -8016,7 +8569,7 @@ msgstr "Vilt þú leyfa þessu forriti að hafa aðgang að færslum og tengili
msgid "Unsupported or missing response type"
msgstr ""
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:77
+#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78
msgid "Incomplete request data"
msgstr ""
@@ -8027,11 +8580,11 @@ 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:104
+#: src/Module/OAuth/Token.php:108
msgid "Unsupported or missing grant type"
msgstr ""
@@ -8100,67 +8653,77 @@ msgstr "hunsað"
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 "Persónuverndarupplýsingar ekki fyrir hendi á fjartengdum vefþjóni."
-#: src/Module/PermissionTooltip.php:116
+#: src/Module/PermissionTooltip.php:121
msgid "Visible to:"
msgstr "Sýnilegt eftirfarandi:"
-#: 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:129
+#: 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:154
+#: src/Module/Photo.php:155
#, php-format
msgid "The Photo with id %s is not available."
msgstr ""
-#: src/Module/Photo.php:191
+#: src/Module/Photo.php:192
#, php-format
msgid "Invalid external resource with url %s."
msgstr ""
-#: src/Module/Photo.php:193
+#: src/Module/Photo.php:194
#, php-format
msgid "Invalid photo with id %s."
msgstr ""
@@ -8173,23 +8736,23 @@ msgstr ""
msgid "Edit post"
msgstr "Breyta skilaboðum"
-#: src/Module/Post/Edit.php:133
+#: src/Module/Post/Edit.php:136
msgid "web link"
msgstr "vefslóð"
-#: src/Module/Post/Edit.php:134
+#: src/Module/Post/Edit.php:137
msgid "Insert video link"
msgstr "Setja inn slóð á myndskeið"
-#: src/Module/Post/Edit.php:135
+#: src/Module/Post/Edit.php:138
msgid "video link"
msgstr "slóð á myndskeið"
-#: src/Module/Post/Edit.php:136
+#: src/Module/Post/Edit.php:139
msgid "Insert audio link"
msgstr "Setja inn slóð á hljóðskrá"
-#: src/Module/Post/Edit.php:137
+#: src/Module/Post/Edit.php:140
msgid "audio link"
msgstr "slóð á hljóðskrá"
@@ -8201,35 +8764,42 @@ msgstr "Fjarlægja merki "
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:178
+#: 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:156
+#: 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:1026
-#: src/Protocol/OStatus.php:1007
+#: 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:1030 src/Protocol/OStatus.php:1012
+#: 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:1033 src/Protocol/OStatus.php:1016
+#: 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 ""
@@ -8248,7 +8818,7 @@ msgstr ""
msgid "Image file is empty."
msgstr "Mynda skrá er tóm."
-#: src/Module/Profile/Photos.php:376
+#: src/Module/Profile/Photos.php:356
msgid "View Album"
msgstr "Skoða myndabók"
@@ -8263,7 +8833,7 @@ msgid ""
"class=\"btn btn-sm pull-right\">Cancel"
msgstr ""
-#: src/Module/Profile/Profile.php:167 src/Module/Settings/Account.php:576
+#: src/Module/Profile/Profile.php:167
msgid "Full Name:"
msgstr "Fullt nafn:"
@@ -8284,12 +8854,12 @@ msgid "Birthday:"
msgstr "Afmælisdagur:"
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:254 src/Util/Temporal.php:170
+#: 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:254 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -8297,13 +8867,13 @@ msgstr[0] ""
msgstr[1] ""
#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:247
+#: src/Module/Settings/Profile/Index.php:284
msgid "Description:"
msgstr "Lýsing:"
#: src/Module/Profile/Profile.php:261
-msgid "Forums:"
-msgstr "Spjallsvæði:"
+msgid "Groups:"
+msgstr ""
#: src/Module/Profile/Profile.php:273
msgid "View profile as:"
@@ -8364,15 +8934,15 @@ msgid ""
"content from anonymous visitors."
msgstr ""
-#: src/Module/Profile/Schedule.php:84
+#: 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 ""
@@ -8393,22 +8963,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 ""
@@ -8472,7 +9042,7 @@ msgstr ""
msgid "Please repeat your e-mail address:"
msgstr ""
-#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:101
+#: 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ð:"
@@ -8481,7 +9051,7 @@ msgstr "Nýtt aðgangsorð:"
msgid "Leave empty for an auto generated password."
msgstr ""
-#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:102
+#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101
#: src/Module/Settings/Account.php:568
msgid "Confirm:"
msgstr "Staðfesta:"
@@ -8509,11 +9079,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:156
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:156
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr ""
@@ -8604,45 +9174,45 @@ msgstr ""
msgid "Create a New Account"
msgstr "Stofna nýjan notanda"
-#: 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 "Eða auðkenna með OpenID: "
-#: src/Module/Security/Login.php:162
+#: src/Module/Security/Login.php:161
msgid "Password: "
msgstr "Aðgangsorð: "
-#: src/Module/Security/Login.php:163
+#: src/Module/Security/Login.php:162
msgid "Remember me"
msgstr "Muna eftir mér"
-#: src/Module/Security/Login.php:172
+#: src/Module/Security/Login.php:171
msgid "Forgot your password?"
msgstr "Gleymt lykilorð?"
-#: src/Module/Security/Login.php:175
+#: src/Module/Security/Login.php:174
msgid "Website Terms of Service"
msgstr "Þjónustuskilmálar vefsvæðis"
-#: src/Module/Security/Login.php:176
+#: src/Module/Security/Login.php:175
msgid "terms of service"
msgstr "þjónustuskilmálar"
-#: src/Module/Security/Login.php:178
+#: src/Module/Security/Login.php:177
msgid "Website Privacy Policy"
msgstr "Persónuverndarstefna"
-#: src/Module/Security/Login.php:179
+#: src/Module/Security/Login.php:178
msgid "privacy policy"
msgstr "persónuverndarstefna"
@@ -8699,25 +9269,25 @@ msgstr ""
msgid "Update Password"
msgstr ""
-#: src/Module/Security/PasswordTooLong.php:100
+#: src/Module/Security/PasswordTooLong.php:99
#: src/Module/Settings/Account.php:569
msgid "Current Password:"
msgstr "Núverandi lykilorð:"
-#: src/Module/Security/PasswordTooLong.php:100
+#: 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:101
-#: src/Module/Settings/Account.php:552
+#: 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:101
-#: src/Module/Settings/Account.php:553
+#: src/Module/Security/PasswordTooLong.php:100
+#: src/Module/Settings/Account.php:554
msgid "Password length is limited to 72 characters."
msgstr ""
@@ -8841,99 +9411,99 @@ msgstr "Ógilt tölvupóstfang."
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
+#: 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:363
+#: src/Module/Settings/Account.php:364
msgid "Contact CSV file upload error"
msgstr ""
-#: src/Module/Settings/Account.php:382
+#: src/Module/Settings/Account.php:383
msgid "Importing Contacts done"
msgstr ""
-#: src/Module/Settings/Account.php:395
+#: src/Module/Settings/Account.php:396
msgid "Relocate message has been send to your contacts"
msgstr ""
-#: src/Module/Settings/Account.php:412
+#: src/Module/Settings/Account.php:413
msgid "Unable to find your profile. Please contact your admin."
msgstr ""
-#: src/Module/Settings/Account.php:454
+#: src/Module/Settings/Account.php:455
msgid "Personal Page Subtypes"
msgstr ""
-#: src/Module/Settings/Account.php:455
-msgid "Community Forum Subtypes"
+#: src/Module/Settings/Account.php:456
+msgid "Community Group Subtypes"
msgstr ""
-#: src/Module/Settings/Account.php:465
+#: src/Module/Settings/Account.php:466
msgid "Account for a personal profile."
msgstr ""
-#: src/Module/Settings/Account.php:472
+#: src/Module/Settings/Account.php:473
msgid ""
"Account for an organisation that automatically approves contact requests as "
"\"Followers\"."
msgstr ""
-#: src/Module/Settings/Account.php:479
+#: 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:486
+#: src/Module/Settings/Account.php:487
msgid "Account for community discussions."
msgstr ""
-#: src/Module/Settings/Account.php:493
+#: 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:500
+#: 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:507
+#: src/Module/Settings/Account.php:508
msgid "Automatically approves all contact requests."
msgstr ""
-#: src/Module/Settings/Account.php:514
+#: 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:519
-msgid "Private Forum [Experimental]"
-msgstr "Einkaspjallsvæði [á tilraunastigi]"
+#: src/Module/Settings/Account.php:520
+msgid "Private Group [Experimental]"
+msgstr ""
-#: src/Module/Settings/Account.php:521
+#: src/Module/Settings/Account.php:522
msgid "Requires manual approval of contact requests."
msgstr ""
-#: src/Module/Settings/Account.php:530
+#: src/Module/Settings/Account.php:531
msgid "OpenID:"
msgstr "OpenID:"
-#: src/Module/Settings/Account.php:530
+#: 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:538
+#: src/Module/Settings/Account.php:539
msgid "Publish your profile in your local site directory?"
msgstr ""
-#: src/Module/Settings/Account.php:538
+#: src/Module/Settings/Account.php:539
#, php-format
msgid ""
"Your profile will be published in this node's local "
@@ -8941,18 +9511,18 @@ msgid ""
" system settings."
msgstr ""
-#: src/Module/Settings/Account.php:544
+#: 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:557
+#: src/Module/Settings/Account.php:558
msgid "Account Settings"
msgstr "Stillingar aðgangs"
-#: src/Module/Settings/Account.php:558
+#: src/Module/Settings/Account.php:559
#, php-format
msgid "Your Identity Address is '%s' or '%s'."
msgstr ""
@@ -8981,6 +9551,11 @@ msgstr ""
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:"
@@ -9107,201 +9682,209 @@ msgstr ""
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:601
+#: src/Module/Settings/Account.php:602
msgid "Expiration settings"
msgstr ""
-#: src/Module/Settings/Account.php:602
+#: 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:602
+#: 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:603
+#: src/Module/Settings/Account.php:604
msgid "Expire posts"
msgstr ""
-#: src/Module/Settings/Account.php:603
+#: src/Module/Settings/Account.php:604
msgid "When activated, posts and comments will be expired."
msgstr ""
-#: src/Module/Settings/Account.php:604
+#: src/Module/Settings/Account.php:605
msgid "Expire personal notes"
msgstr ""
-#: src/Module/Settings/Account.php:604
+#: 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:605
+#: src/Module/Settings/Account.php:606
msgid "Expire starred posts"
msgstr ""
-#: src/Module/Settings/Account.php:605
+#: 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:606
+#: src/Module/Settings/Account.php:607
msgid "Only expire posts by others"
msgstr ""
-#: src/Module/Settings/Account.php:606
+#: 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:609
+#: src/Module/Settings/Account.php:610
msgid "Notification Settings"
msgstr "Stillingar á tilkynningum"
-#: src/Module/Settings/Account.php:610
+#: src/Module/Settings/Account.php:611
msgid "Send a notification email when:"
msgstr "Senda tilkynningapóst þegar:"
-#: src/Module/Settings/Account.php:611
+#: src/Module/Settings/Account.php:612
msgid "You receive an introduction"
msgstr "Þú færð kynningu"
-#: src/Module/Settings/Account.php:612
+#: src/Module/Settings/Account.php:613
msgid "Your introductions are confirmed"
msgstr "Kynningarnar þínar eru samþykktar"
-#: src/Module/Settings/Account.php:613
+#: src/Module/Settings/Account.php:614
msgid "Someone writes on your profile wall"
msgstr "Einhver skrifar á vegginn þinn"
-#: src/Module/Settings/Account.php:614
+#: 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:615
+#: src/Module/Settings/Account.php:616
msgid "You receive a private message"
msgstr "Þú færð einkaskilaboð"
-#: src/Module/Settings/Account.php:616
+#: src/Module/Settings/Account.php:617
msgid "You receive a friend suggestion"
msgstr "Þér hefur borist vina uppástunga"
-#: src/Module/Settings/Account.php:617
+#: src/Module/Settings/Account.php:618
msgid "You are tagged in a post"
msgstr "Þú varst merkt(ur) í færslu"
-#: 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 ""
-#: 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 ""
-#: 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 "Endurstaðsetja"
-#: 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 ""
@@ -9313,73 +9896,73 @@ msgstr ""
msgid "No Addon settings configured"
msgstr ""
-#: src/Module/Settings/Connectors.php:119
+#: 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:164
-#: src/Module/Settings/Connectors.php:165
+#: 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:164
-#: src/Module/Settings/Connectors.php:168
+#: 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:165
#: 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:167
-#: src/Module/Settings/Connectors.php:168
+#: src/Module/Settings/Connectors.php:169
+#: src/Module/Settings/Connectors.php:170
msgid "OStatus (GNU Social)"
msgstr ""
-#: src/Module/Settings/Connectors.php:180
+#: 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:195
-#: src/Module/Settings/Connectors.php:241
+#: src/Module/Settings/Connectors.php:197
+#: src/Module/Settings/Connectors.php:244
msgid "None"
msgstr "Ekkert"
-#: src/Module/Settings/Connectors.php:207
+#: src/Module/Settings/Connectors.php:209
msgid "General Social Media Settings"
msgstr "Almennar stillingar samfélagsmiðla"
-#: src/Module/Settings/Connectors.php:210
+#: src/Module/Settings/Connectors.php:212
msgid "Followed content scope"
msgstr ""
-#: src/Module/Settings/Connectors.php:212
+#: 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:214
+#: src/Module/Settings/Connectors.php:216
msgid "Only conversations my follows started"
msgstr ""
-#: src/Module/Settings/Connectors.php:215
+#: src/Module/Settings/Connectors.php:217
msgid "Conversations my follows started or commented on (default)"
msgstr ""
-#: src/Module/Settings/Connectors.php:216
+#: src/Module/Settings/Connectors.php:218
msgid "Any conversation my follows interacted with, including likes"
msgstr ""
-#: src/Module/Settings/Connectors.php:219
+#: src/Module/Settings/Connectors.php:221
msgid "Enable Content Warning"
msgstr ""
-#: src/Module/Settings/Connectors.php:219
+#: 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 "
@@ -9387,499 +9970,531 @@ msgid ""
" affect any other content filtering you eventually set up."
msgstr ""
-#: src/Module/Settings/Connectors.php:220
+#: src/Module/Settings/Connectors.php:222
msgid "Enable intelligent shortening"
msgstr ""
-#: src/Module/Settings/Connectors.php:220
+#: 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:221
+#: src/Module/Settings/Connectors.php:223
msgid "Enable simple text shortening"
msgstr ""
-#: src/Module/Settings/Connectors.php:221
+#: 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:222
+#: src/Module/Settings/Connectors.php:224
msgid "Attach the link title"
msgstr ""
-#: src/Module/Settings/Connectors.php:222
+#: 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:223
+#: src/Module/Settings/Connectors.php:225
msgid "API: Use spoiler field as title"
msgstr ""
-#: src/Module/Settings/Connectors.php:223
+#: 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:224
+#: 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:224
+#: 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:226
+#: src/Module/Settings/Connectors.php:229
msgid "Repair OStatus subscriptions"
msgstr ""
-#: src/Module/Settings/Connectors.php:230
+#: src/Module/Settings/Connectors.php:233
msgid "Email/Mailbox Setup"
msgstr "Tölvupóstur stilling"
-#: src/Module/Settings/Connectors.php:231
+#: 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:232
+#: src/Module/Settings/Connectors.php:235
msgid "Last successful email check:"
msgstr "Síðasta prófun á tölvupóstfangi:"
-#: src/Module/Settings/Connectors.php:234
+#: src/Module/Settings/Connectors.php:237
msgid "IMAP server name:"
msgstr "IMAP þjónn:"
-#: src/Module/Settings/Connectors.php:235
+#: src/Module/Settings/Connectors.php:238
msgid "IMAP port:"
msgstr "IMAP port:"
-#: src/Module/Settings/Connectors.php:236
+#: src/Module/Settings/Connectors.php:239
msgid "Security:"
msgstr "Öryggi:"
-#: src/Module/Settings/Connectors.php:237
+#: src/Module/Settings/Connectors.php:240
msgid "Email login name:"
msgstr "Notandanafn tölvupóstfangs:"
-#: src/Module/Settings/Connectors.php:238
+#: src/Module/Settings/Connectors.php:241
msgid "Email password:"
msgstr "Lykilorð tölvupóstfangs:"
-#: src/Module/Settings/Connectors.php:239
+#: src/Module/Settings/Connectors.php:242
msgid "Reply-to address:"
msgstr "Svarpóstfang:"
-#: src/Module/Settings/Connectors.php:240
+#: 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:241
+#: src/Module/Settings/Connectors.php:244
msgid "Action after import:"
msgstr ""
-#: src/Module/Settings/Connectors.php:241
+#: src/Module/Settings/Connectors.php:244
msgid "Move to folder"
msgstr "Flytja yfir í skrásafn"
-#: src/Module/Settings/Connectors.php:242
+#: src/Module/Settings/Connectors.php:245
msgid "Move to folder:"
msgstr "Flytja yfir í skrásafn:"
-#: src/Module/Settings/Delegation.php:52
+#: src/Module/Settings/Delegation.php:54
msgid "Delegation successfully granted."
msgstr ""
-#: src/Module/Settings/Delegation.php:54
+#: src/Module/Settings/Delegation.php:56
msgid "Parent user not found, unavailable or password doesn't match."
msgstr ""
-#: src/Module/Settings/Delegation.php:58
+#: src/Module/Settings/Delegation.php:60
msgid "Delegation successfully revoked."
msgstr ""
-#: src/Module/Settings/Delegation.php:80
-#: src/Module/Settings/Delegation.php:102
+#: 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:94
+#: src/Module/Settings/Delegation.php:96
msgid "Delegate user not found."
msgstr ""
-#: src/Module/Settings/Delegation.php:142
+#: src/Module/Settings/Delegation.php:144
msgid "No parent user"
msgstr ""
-#: src/Module/Settings/Delegation.php:153
-#: src/Module/Settings/Delegation.php:164
+#: src/Module/Settings/Delegation.php:155
+#: src/Module/Settings/Delegation.php:166
msgid "Parent User"
msgstr ""
-#: src/Module/Settings/Delegation.php:161
+#: src/Module/Settings/Delegation.php:163
msgid "Additional Accounts"
msgstr ""
-#: src/Module/Settings/Delegation.php:162
+#: 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:163
+#: src/Module/Settings/Delegation.php:165
msgid "Register an additional account"
msgstr ""
-#: src/Module/Settings/Delegation.php:167
+#: 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:171
+#: src/Module/Settings/Delegation.php:173
msgid "Delegates"
msgstr ""
-#: src/Module/Settings/Delegation.php:173
+#: 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:174
+#: src/Module/Settings/Delegation.php:176
msgid "Existing Page Delegates"
msgstr ""
-#: src/Module/Settings/Delegation.php:176
+#: src/Module/Settings/Delegation.php:178
msgid "Potential Delegates"
msgstr ""
-#: src/Module/Settings/Delegation.php:179
+#: src/Module/Settings/Delegation.php:181
msgid "Add"
msgstr "Bæta við"
-#: src/Module/Settings/Delegation.php:180
+#: src/Module/Settings/Delegation.php:182
msgid "No entries."
msgstr "Engar færslur."
-#: src/Module/Settings/Display.php:137
+#: src/Module/Settings/Display.php:146
msgid "The theme you chose isn't available."
msgstr ""
-#: src/Module/Settings/Display.php:177
+#: src/Module/Settings/Display.php:186
#, php-format
msgid "%s - (Unsupported)"
msgstr "%s - (ekki stutt)"
-#: src/Module/Settings/Display.php:212
+#: src/Module/Settings/Display.php:221
msgid "No preview"
msgstr ""
-#: src/Module/Settings/Display.php:213
+#: src/Module/Settings/Display.php:222
msgid "No image"
msgstr ""
-#: src/Module/Settings/Display.php:214
+#: src/Module/Settings/Display.php:223
msgid "Small Image"
msgstr ""
-#: src/Module/Settings/Display.php:215
+#: src/Module/Settings/Display.php:224
msgid "Large Image"
msgstr ""
-#: src/Module/Settings/Display.php:246
+#: src/Module/Settings/Display.php:259
msgid "Display Settings"
msgstr "Birtingarstillingar"
-#: src/Module/Settings/Display.php:248
+#: src/Module/Settings/Display.php:261
msgid "General Theme Settings"
msgstr ""
-#: src/Module/Settings/Display.php:249
+#: src/Module/Settings/Display.php:262
msgid "Custom Theme Settings"
msgstr ""
-#: src/Module/Settings/Display.php:250
+#: src/Module/Settings/Display.php:263
msgid "Content Settings"
msgstr "Stillingar efnis"
-#: src/Module/Settings/Display.php:251 view/theme/duepuntozero/config.php:86
+#: 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:258
+#: 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:259
+#: src/Module/Settings/Display.php:273
msgid "Mobile Theme:"
msgstr "Farsímaþema"
-#: src/Module/Settings/Display.php:262
+#: src/Module/Settings/Display.php:276
msgid "Number of items to display per page:"
msgstr ""
-#: src/Module/Settings/Display.php:262 src/Module/Settings/Display.php:263
+#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277
msgid "Maximum of 100 items"
msgstr ""
-#: src/Module/Settings/Display.php:263
+#: 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:264
+#: 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:264
+#: src/Module/Settings/Display.php:278
msgid "Minimum of 10 seconds. Enter -1 to disable it."
msgstr ""
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:279
msgid "Display emoticons"
msgstr ""
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:279
msgid "When enabled, emoticons are replaced with matching symbols."
msgstr ""
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:280
msgid "Infinite scroll"
msgstr ""
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:280
msgid "Automatic fetch new items when reaching the page end."
msgstr ""
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:281
msgid "Enable Smart Threading"
msgstr ""
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:281
msgid "Enable the automatic suppression of extraneous thread indentation."
msgstr ""
-#: src/Module/Settings/Display.php:268
+#: src/Module/Settings/Display.php:282
msgid "Display the Dislike feature"
msgstr ""
-#: src/Module/Settings/Display.php:268
+#: src/Module/Settings/Display.php:282
msgid ""
"Display the Dislike button and dislike reactions on posts and comments."
msgstr ""
-#: src/Module/Settings/Display.php:269
+#: src/Module/Settings/Display.php:283
msgid "Display the resharer"
msgstr ""
-#: src/Module/Settings/Display.php:269
+#: 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:270
+#: src/Module/Settings/Display.php:284
msgid "Stay local"
msgstr ""
-#: src/Module/Settings/Display.php:270
+#: 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:271
+#: src/Module/Settings/Display.php:285
msgid "Link preview mode"
msgstr ""
-#: src/Module/Settings/Display.php:271
+#: 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:273
+#: 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:274
+#: 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:72
+#: src/Module/Settings/OAuth.php:71
msgid "Connected Apps"
msgstr "Tengd forrit"
-#: src/Module/Settings/OAuth.php:76
+#: src/Module/Settings/OAuth.php:75
msgid "Remove authorization"
msgstr "Fjarlæga auðkenningu"
-#: src/Module/Settings/Profile/Index.php:84
-msgid "Profile Name is required."
-msgstr "Nafn á forsíðu er skilyrði"
+#: src/Module/Settings/Profile/Index.php:116
+msgid "Display Name is required."
+msgstr ""
-#: src/Module/Settings/Profile/Index.php:134
+#: src/Module/Settings/Profile/Index.php:167
msgid "Profile couldn't be updated."
msgstr ""
-#: src/Module/Settings/Profile/Index.php:175
-#: src/Module/Settings/Profile/Index.php:195
+#: src/Module/Settings/Profile/Index.php:205
+#: src/Module/Settings/Profile/Index.php:226
msgid "Label:"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:176
-#: src/Module/Settings/Profile/Index.php:196
+#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:227
msgid "Value:"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:186
-#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:217
+#: src/Module/Settings/Profile/Index.php:238
msgid "Field Permissions"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:187
-#: src/Module/Settings/Profile/Index.php:207
+#: 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:193
+#: src/Module/Settings/Profile/Index.php:224
msgid "Add a new profile field"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:217
+#: 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:219
+#: 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:229
+#: src/Module/Settings/Profile/Index.php:255
msgid "Profile Actions"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:230
+#: src/Module/Settings/Profile/Index.php:256
msgid "Edit Profile Details"
msgstr "Breyta forsíðu upplýsingum"
-#: src/Module/Settings/Profile/Index.php:232
+#: src/Module/Settings/Profile/Index.php:258
msgid "Change Profile Photo"
msgstr "Breyta forsíðumynd"
-#: src/Module/Settings/Profile/Index.php:237
+#: src/Module/Settings/Profile/Index.php:261
msgid "Profile picture"
msgstr "Notandamynd"
-#: src/Module/Settings/Profile/Index.php:238
+#: src/Module/Settings/Profile/Index.php:262
msgid "Location"
msgstr "Staðsetning"
-#: src/Module/Settings/Profile/Index.php:239 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 "Ýmislegt"
-#: src/Module/Settings/Profile/Index.php:240
+#: src/Module/Settings/Profile/Index.php:264
msgid "Custom Profile Fields"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:242 src/Module/Welcome.php:58
+#: 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:246
-msgid "Display name:"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:249
-msgid "Street Address:"
-msgstr "Gata:"
-
-#: src/Module/Settings/Profile/Index.php:250
-msgid "Locality/City:"
-msgstr "Bær/Borg:"
-
-#: src/Module/Settings/Profile/Index.php:251
-msgid "Region/State:"
-msgstr "Svæði/Sýsla"
-
-#: src/Module/Settings/Profile/Index.php:252
-msgid "Postal/Zip Code:"
-msgstr "Póstnúmer:"
-
-#: src/Module/Settings/Profile/Index.php:253
-msgid "Country:"
-msgstr "Land:"
-
-#: src/Module/Settings/Profile/Index.php:255
-msgid "XMPP (Jabber) address:"
-msgstr "XMPP (Jabber) vistfang:"
-
-#: src/Module/Settings/Profile/Index.php:255
-msgid ""
-"The XMPP address will be published so that people can follow you there."
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:256
-msgid "Matrix (Element) address:"
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:256
-msgid ""
-"The Matrix address will be published so that people can follow you there."
-msgstr ""
-
-#: src/Module/Settings/Profile/Index.php:257
-msgid "Homepage URL:"
-msgstr "Slóð heimasíðu:"
-
-#: src/Module/Settings/Profile/Index.php:258
-msgid "Public Keywords:"
-msgstr "Opinber leitarorð:"
-
-#: src/Module/Settings/Profile/Index.php:258
-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:259
-msgid "Private Keywords:"
-msgstr "Einka leitarorð:"
-
-#: src/Module/Settings/Profile/Index.php:259
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Notað við leit að öðrum notendum, aldrei sýnt öðrum)"
-
-#: src/Module/Settings/Profile/Index.php:260
+#: src/Module/Settings/Profile/Index.php:266
#, php-format
msgid ""
"Custom fields appear on your profile page.
\n"
"\t\t\t\tYou can use BBCodes in the field values.
\n"
"\t\t\t\tReorder by dragging the field title.
\n"
"\t\t\t\tEmpty the label field to remove a custom field.
\n"
-"\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.
"
+"\t\t\t\tNon-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
@@ -9990,6 +10605,42 @@ msgstr "Þetta mun algjörlega eyða notandanum. Þegar þetta hefur verið gert
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
@@ -10311,20 +10962,41 @@ msgid ""
" 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 "Not Found"
+msgid ""
+"This node has blocked the top-level author or the author of the shared post."
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"
-"
"
+"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
@@ -10336,7 +11008,7 @@ msgstr ""
msgid "Exception thrown in %s:%d"
msgstr ""
-#: src/Module/Tos.php:57 src/Module/Tos.php:106
+#: 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"
@@ -10349,14 +11021,14 @@ msgid ""
"settings, it is not necessary for communication."
msgstr ""
-#: src/Module/Tos.php:58 src/Module/Tos.php:107
+#: 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:108
+#: 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"
@@ -10367,11 +11039,11 @@ msgid ""
"from the nodes of the communication partners."
msgstr ""
-#: src/Module/Tos.php:62 src/Module/Tos.php:105
+#: src/Module/Tos.php:63 src/Module/Tos.php:106
msgid "Privacy Statement"
msgstr "Yfirlýsing um gagnaleynd"
-#: src/Module/Tos.php:102
+#: src/Module/Tos.php:103
msgid "Rules"
msgstr ""
@@ -10379,6 +11051,10 @@ msgstr ""
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 ""
@@ -10427,22 +11103,22 @@ msgstr ""
msgid "User '%s' already exists on this server!"
msgstr ""
-#: src/Module/User/Import.php:263
+#: src/Module/User/Import.php:267
msgid "User creation error"
msgstr ""
-#: src/Module/User/Import.php:312
+#: 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:361
+#: src/Module/User/Import.php:365
msgid "User profile creation error"
msgstr ""
-#: src/Module/User/Import.php:412
+#: src/Module/User/Import.php:416
msgid "Done. You can now login with your username and password"
msgstr ""
@@ -10576,15 +11252,15 @@ msgid ""
msgstr ""
#: src/Module/Welcome.php:77
-msgid "Group Your Contacts"
-msgstr "Hópa tengiliðina þína"
+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 "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."
+"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?"
@@ -11091,249 +11767,258 @@ msgstr "Hafðu samband við sendanda með því að svara á þessari færslu ef
msgid "%s posted an update."
msgstr "%s hefur sent uppfærslu."
-#: src/Object/Post.php:135
+#: src/Object/Post.php:138
msgid "Private Message"
msgstr "Einkaskilaboð"
-#: 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:181
msgid "This entry was edited"
msgstr "Þessari færslu var breytt"
-#: src/Object/Post.php:206
+#: src/Object/Post.php:209
msgid "Connector Message"
msgstr ""
-#: src/Object/Post.php:221 src/Object/Post.php:223
+#: src/Object/Post.php:225 src/Object/Post.php:227
msgid "Edit"
msgstr "Breyta"
-#: src/Object/Post.php:247
+#: src/Object/Post.php:261
msgid "Delete globally"
msgstr ""
-#: src/Object/Post.php:247
+#: 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:274
+#: 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:309
+#: src/Object/Post.php:333
msgid "I will attend"
msgstr "Ég mæti"
-#: src/Object/Post.php:309
+#: src/Object/Post.php:333
msgid "I will not attend"
msgstr "Ég mæti ekki"
-#: src/Object/Post.php:309
+#: src/Object/Post.php:333
msgid "I might attend"
msgstr "Ég gæti mætt"
-#: src/Object/Post.php:339
+#: src/Object/Post.php:363
msgid "Ignore thread"
msgstr ""
-#: src/Object/Post.php:340
+#: src/Object/Post.php:364
msgid "Unignore thread"
msgstr ""
-#: src/Object/Post.php:341
+#: src/Object/Post.php:365
msgid "Toggle ignore status"
msgstr ""
-#: src/Object/Post.php:351
+#: src/Object/Post.php:375
msgid "Add star"
msgstr ""
-#: src/Object/Post.php:352
+#: src/Object/Post.php:376
msgid "Remove star"
msgstr ""
-#: src/Object/Post.php:353
+#: src/Object/Post.php:377
msgid "Toggle star status"
msgstr ""
-#: src/Object/Post.php:364
+#: src/Object/Post.php:388
msgid "Pin"
msgstr ""
-#: src/Object/Post.php:365
+#: src/Object/Post.php:389
msgid "Unpin"
msgstr ""
-#: src/Object/Post.php:366
+#: src/Object/Post.php:390
msgid "Toggle pin status"
msgstr ""
-#: src/Object/Post.php:369
+#: src/Object/Post.php:393
msgid "Pinned"
msgstr ""
-#: src/Object/Post.php:374
+#: src/Object/Post.php:398
msgid "Add tag"
msgstr ""
-#: src/Object/Post.php:387
+#: src/Object/Post.php:411
msgid "Quote share this"
msgstr ""
-#: src/Object/Post.php:387
+#: src/Object/Post.php:411
msgid "Quote Share"
msgstr ""
-#: src/Object/Post.php:390
+#: src/Object/Post.php:414
msgid "Reshare this"
msgstr ""
-#: src/Object/Post.php:390
+#: src/Object/Post.php:414
msgid "Reshare"
msgstr ""
-#: src/Object/Post.php:391
+#: src/Object/Post.php:415
msgid "Cancel your Reshare"
msgstr ""
-#: src/Object/Post.php:391
+#: src/Object/Post.php:415
msgid "Unshare"
msgstr ""
-#: src/Object/Post.php:438
+#: src/Object/Post.php:466
#, php-format
msgid "%s (Received %s)"
msgstr ""
-#: src/Object/Post.php:443
+#: src/Object/Post.php:472
msgid "Comment this item on your system"
msgstr ""
-#: src/Object/Post.php:443
+#: src/Object/Post.php:472
msgid "Remote comment"
msgstr ""
-#: src/Object/Post.php:464
+#: src/Object/Post.php:494
msgid "Share via ..."
msgstr ""
-#: src/Object/Post.php:464
+#: src/Object/Post.php:494
msgid "Share via external services"
msgstr ""
-#: src/Object/Post.php:493
+#: src/Object/Post.php:523
msgid "to"
msgstr "við"
-#: src/Object/Post.php:494
+#: src/Object/Post.php:524
msgid "via"
msgstr "gegnum"
-#: src/Object/Post.php:495
+#: src/Object/Post.php:525
msgid "Wall-to-Wall"
msgstr "vegg við vegg"
-#: src/Object/Post.php:496
+#: src/Object/Post.php:526
msgid "via Wall-To-Wall:"
msgstr "gegnum vegg við vegg"
-#: src/Object/Post.php:540
+#: src/Object/Post.php:573
#, php-format
msgid "Reply to %s"
msgstr ""
-#: src/Object/Post.php:543
+#: src/Object/Post.php:576
msgid "More"
msgstr ""
-#: src/Object/Post.php:561
+#: src/Object/Post.php:595
msgid "Notifier task is pending"
msgstr ""
-#: src/Object/Post.php:562
+#: src/Object/Post.php:596
msgid "Delivery to remote servers is pending"
msgstr ""
-#: src/Object/Post.php:563
+#: src/Object/Post.php:597
msgid "Delivery to remote servers is underway"
msgstr ""
-#: src/Object/Post.php:564
+#: src/Object/Post.php:598
msgid "Delivery to remote servers is mostly done"
msgstr ""
-#: src/Object/Post.php:565
+#: src/Object/Post.php:599
msgid "Delivery to remote servers is done"
msgstr ""
-#: src/Object/Post.php:585
+#: 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:586
+#: src/Object/Post.php:620
msgid "Show more"
msgstr ""
-#: src/Object/Post.php:587
+#: src/Object/Post.php:621
msgid "Show fewer"
msgstr ""
-#: src/Object/Post.php:623
+#: src/Object/Post.php:657
#, php-format
msgid "Reshared by: %s"
msgstr ""
-#: src/Object/Post.php:628
+#: src/Object/Post.php:662
#, php-format
msgid "Viewed by: %s"
msgstr ""
-#: src/Object/Post.php:633
+#: src/Object/Post.php:667
#, php-format
msgid "Liked by: %s"
msgstr ""
-#: src/Object/Post.php:638
+#: src/Object/Post.php:672
#, php-format
msgid "Disliked by: %s"
msgstr ""
-#: src/Object/Post.php:643
+#: src/Object/Post.php:677
#, php-format
msgid "Attended by: %s"
msgstr ""
-#: src/Object/Post.php:648
+#: src/Object/Post.php:682
#, php-format
msgid "Maybe attended by: %s"
msgstr ""
-#: src/Object/Post.php:653
+#: src/Object/Post.php:687
#, php-format
msgid "Not attended by: %s"
msgstr ""
-#: src/Object/Post.php:658
+#: src/Object/Post.php:692
#, php-format
msgid "Reacted with %s by: %s"
msgstr ""
@@ -11342,21 +12027,21 @@ msgstr ""
msgid "(no subject)"
msgstr ""
-#: src/Protocol/OStatus.php:1388
+#: src/Protocol/OStatus.php:1390
#, php-format
msgid "%s is now following %s."
msgstr "%s fylgist núna með %s."
-#: src/Protocol/OStatus.php:1389
+#: src/Protocol/OStatus.php:1391
msgid "following"
msgstr "fylgist með"
-#: src/Protocol/OStatus.php:1392
+#: src/Protocol/OStatus.php:1394
#, php-format
msgid "%s stopped following %s."
msgstr ""
-#: src/Protocol/OStatus.php:1393
+#: src/Protocol/OStatus.php:1395
msgid "stopped following"
msgstr "hætt að fylgja"
@@ -11373,12 +12058,12 @@ msgstr "Innskráning mistókst."
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 "Gerðu svo vel að hlaða inn forsíðumynd."
@@ -11714,7 +12399,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
@@ -11733,7 +12418,7 @@ msgstr ""
msgid "Community Pages"
msgstr ""
-#: view/theme/vier/config.php:139 view/theme/vier/theme.php:149
+#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148
msgid "Community Profiles"
msgstr ""
@@ -11741,7 +12426,7 @@ msgstr ""
msgid "Help or @NewHere ?"
msgstr ""
-#: view/theme/vier/config.php:141 view/theme/vier/theme.php:320
+#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319
msgid "Connect Services"
msgstr ""
@@ -11749,10 +12434,10 @@ msgstr ""
msgid "Find Friends"
msgstr ""
-#: view/theme/vier/config.php:143 view/theme/vier/theme.php:176
+#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175
msgid "Last users"
msgstr ""
-#: view/theme/vier/theme.php:235
+#: 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 33f9bc9112..a95719684a 100644
--- a/view/lang/is/strings.php
+++ b/view/lang/is/strings.php
@@ -127,18 +127,8 @@ $a->strings['Twitter'] = 'Twitter';
$a->strings['Diaspora Connector'] = 'Diaspora tenging';
$a->strings['GNU Social Connector'] = 'GNU Social tenging';
$a->strings['pnut'] = 'pnut';
-$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['and'] = 'og';
$a->strings['and %d other people'] = 'og %d öðrum';
-$a->strings['%s like this.'] = '%s líkar þetta.';
-$a->strings['%s don\'t like this.'] = '%s líkar þetta ekki.';
-$a->strings['%s attend.'] = '%s mætir.';
-$a->strings['%s don\'t attend.'] = '%s mætir ekki.';
-$a->strings['%s attend maybe.'] = '%s mætir kannski.';
$a->strings['Visible to everybody'] = 'Sjáanlegt öllum';
$a->strings['Tag term:'] = 'Merka með:';
$a->strings['Save to Folder:'] = 'Vista í möppu:';
@@ -166,19 +156,20 @@ $a->strings['Permission settings'] = 'Stillingar aðgangsheimilda';
$a->strings['Public post'] = 'Opinber færsla';
$a->strings['Message'] = 'Skilaboð';
$a->strings['Browser'] = 'Vafri';
+$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['remove'] = 'fjarlægja';
-$a->strings['Delete Selected Items'] = 'Eyða völdum færslum';
+$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['List Forums'] = 'Spjallsvæðalistar';
$a->strings['Tag Cloud'] = 'Merkjaský';
-$a->strings['Forums'] = 'Spjallsvæði';
-$a->strings['External link to forum'] = 'Ytri tengill á spjallsvæði';
$a->strings['show more'] = 'birta meira';
$a->strings['event'] = 'atburður';
$a->strings['status'] = 'staða';
@@ -196,7 +187,6 @@ $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['@name, !forum, #tags, content'] = '@nafn, !spjallsvæði, #merki, innihald';
$a->strings['Logout'] = 'Útskráning';
$a->strings['End this session'] = 'Loka þessu innliti';
$a->strings['Login'] = 'Innskráning';
@@ -277,7 +267,6 @@ $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['Groups'] = 'Hópar';
$a->strings['All Contacts'] = 'Allir tengiliðir';
$a->strings['Saved Folders'] = 'Vistaðar möppur';
$a->strings['Everything'] = 'Allt';
@@ -367,8 +356,10 @@ $a->strings['Oct'] = 'Okt';
$a->strings['Nov'] = 'Nóv';
$a->strings['Dec'] = 'Des';
$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['Forum'] = 'Spjallsvæði';
$a->strings['Disallowed profile URL.'] = 'Óleyfileg forsíðu slóð.';
$a->strings['Blocked domain'] = 'Útilokað lén';
$a->strings['Connect URL missing.'] = 'Tengislóð vantar.';
@@ -400,15 +391,6 @@ $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['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['add'] = 'bæta við';
-$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['Group Name: '] = 'Nafn hóps: ';
-$a->strings['Edit groups'] = 'Breyta hópum';
$a->strings['activity'] = 'virkni';
$a->strings['post'] = 'senda';
$a->strings['Content warning: %s'] = 'Viðvörun vegna innihalds: %s';
@@ -561,7 +543,6 @@ $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['Forum Search - %s'] = 'Leita á spjallsvæði - %s';
$a->strings['No matches'] = 'Engar leitarniðurstöður';
$a->strings['Account'] = 'Notandi';
$a->strings['Display'] = 'Birting';
@@ -580,6 +561,10 @@ $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';
@@ -597,7 +582,6 @@ $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 not found.'] = 'Tengiliður fannst ekki.';
$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';
@@ -605,7 +589,6 @@ $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['Invalid contact.'] = 'Ógildur tengiliður.';
$a->strings['Access denied.'] = 'Aðgangi hafnað.';
$a->strings['Submit Request'] = 'Senda beiðni';
$a->strings['Please answer the following:'] = 'Vinnsamlegast svaraðu eftirfarandi:';
@@ -654,12 +637,6 @@ $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['No such group'] = 'Enginn slíkur hópur';
-$a->strings['Group: %s'] = 'Hópur: %s';
-$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['Credits'] = 'Þakkir';
$a->strings['Markdown::toBBCode'] = 'Markdown::toBBCode';
$a->strings['Raw HTML input'] = 'Hrátt HTML-ílag';
@@ -689,16 +666,6 @@ $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['Could not create group.'] = 'Gat ekki stofnað hóp.';
-$a->strings['Group not found.'] = 'Hópur fannst ekki.';
-$a->strings['Save Group'] = 'Vista hóp';
-$a->strings['Create a group of contacts/friends.'] = 'Stofna hóp af tengiliðum/vinum';
-$a->strings['Unable to remove group.'] = 'Ekki tókst að eyða hóp.';
-$a->strings['Delete Group'] = 'Eyða hópi';
-$a->strings['Edit Group Name'] = 'Breyta nafni hóps';
-$a->strings['Members'] = 'Meðlimir';
-$a->strings['Group is empty'] = 'Hópur er tómur';
-$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['No profile'] = 'Engin forsíða';
$a->strings['Help:'] = 'Hjálp:';
$a->strings['Welcome to %s'] = 'Velkomin í %s';
@@ -739,7 +706,6 @@ $a->strings['File exceeds size limit of %s'] = 'Skrá fer leyfileg takmörk sem
$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['Private Forum'] = 'Einkaspjallsvæði';
$a->strings['Block Remote Contact'] = 'Útiloka fjartengdan tengilið';
$a->strings['select all'] = 'velja alla';
$a->strings['select none'] = 'velja ekkert';
@@ -820,7 +786,6 @@ $a->strings['j F'] = 'j F';
$a->strings['Birthday:'] = 'Afmælisdagur:';
$a->strings['Age: '] = 'Aldur: ';
$a->strings['Description:'] = 'Lýsing:';
-$a->strings['Forums:'] = 'Spjallsvæði:';
$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';
@@ -852,7 +817,6 @@ $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['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['Account Settings'] = 'Stillingar aðgangs';
@@ -913,7 +877,6 @@ $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['Profile Name is required.'] = 'Nafn á forsíðu er skilyrði';
$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';
@@ -966,8 +929,6 @@ $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['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';
diff --git a/view/lang/it/messages.po b/view/lang/it/messages.po
index 640429b0ed..3570cb30cc 100644
--- a/view/lang/it/messages.po
+++ b/view/lang/it/messages.po
@@ -17,7 +17,7 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-04-23 21:21+0000\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"
@@ -47,26 +47,26 @@ msgstr "L'oggetto non può essere recuperato."
msgid "Empty post discarded."
msgstr "Messaggio vuoto scartato."
-#: mod/item.php:411 src/Module/Admin/Themes/Details.php:39
+#: 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:435 mod/message.php:68 mod/message.php:114 mod/notes.php:45
-#: mod/photos.php:152 mod/photos.php:669 src/Model/Event.php:522
+#: 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:52
+#: 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/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/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
@@ -76,9 +76,9 @@ msgstr "Elemento non trovato."
#: 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:69
-#: src/Module/Settings/Display.php:69 src/Module/Settings/Display.php:151
+#: 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
@@ -224,90 +224,90 @@ 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/message.php:46 mod/message.php:129 src/Content/Nav.php:319
+#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321
msgid "New Message"
msgstr "Nuovo messaggio"
-#: 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 "Nessun destinatario selezionato."
-#: mod/message.php:88
+#: mod/message.php:87
msgid "Unable to locate contact information."
msgstr "Impossibile trovare le informazioni del contatto."
-#: 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 "Il messaggio non può essere inviato."
-#: 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 "Errore recuperando il messaggio."
-#: 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 "Scarta"
-#: mod/message.php:136 src/Content/Nav.php:316 view/theme/frio/theme.php:241
+#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Messages"
msgstr "Messaggi"
-#: mod/message.php:149
+#: mod/message.php:148
msgid "Conversation not found."
msgstr "Conversazione non trovata."
-#: mod/message.php:154
+#: mod/message.php:153
msgid "Message was not deleted."
msgstr "Il messaggio non è stato eliminato."
-#: mod/message.php:169
+#: mod/message.php:168
msgid "Conversation was not removed."
msgstr "La conversazione non è stata rimossa."
-#: mod/message.php:182 mod/message.php:287 src/Module/Profile/UnkMail.php:145
+#: 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:191 src/Module/Profile/UnkMail.php:151
+#: mod/message.php:190 src/Module/Profile/UnkMail.php:151
msgid "Send Private Message"
msgstr "Invia un messaggio privato"
-#: mod/message.php:192 mod/message.php:347
+#: mod/message.php:191 mod/message.php:346
msgid "To:"
msgstr "A:"
-#: mod/message.php:193 mod/message.php:348
+#: mod/message.php:192 mod/message.php:347
msgid "Subject:"
msgstr "Oggetto:"
-#: mod/message.php:197 mod/message.php:351 src/Module/Invite.php:171
+#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171
msgid "Your message:"
msgstr "Il tuo messaggio:"
-#: mod/message.php:200 mod/message.php:355 src/Content/Conversation.php:360
+#: 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:201 mod/message.php:356 src/Module/Post/Edit.php:135
+#: 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:202 mod/message.php:358 mod/photos.php:1291
-#: src/Content/Conversation.php:389 src/Content/Conversation.php:733
-#: src/Module/Item/Compose.php:204 src/Module/Post/Edit.php:145
-#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:550
+#: 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:203 mod/message.php:357 mod/photos.php:702
-#: mod/photos.php:819 mod/photos.php:1097 mod/photos.php:1138
-#: mod/photos.php:1194 mod/photos.php:1268
+#: 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:339
+#: 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
@@ -315,59 +315,64 @@ msgstr "Attendi"
#: 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:230 src/Object/Post.php:1063
+#: 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:224
+#: mod/message.php:223
msgid "No messages."
msgstr "Nessun messaggio."
-#: mod/message.php:280
+#: mod/message.php:279
msgid "Message not available."
msgstr "Messaggio non disponibile."
-#: mod/message.php:324
+#: mod/message.php:323
msgid "Delete message"
msgstr "Elimina il messaggio"
-#: mod/message.php:326 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:341 mod/message.php:454
+#: mod/message.php:340 mod/message.php:453
msgid "Delete conversation"
msgstr "Elimina la conversazione"
-#: mod/message.php:343
+#: mod/message.php:342
msgid ""
"No secure communications available. You may be able to "
"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"
@@ -383,14 +388,14 @@ msgstr "Note personali"
msgid "Personal notes are visible only by yourself."
msgstr "Le note personali sono visibili solo da te."
-#: mod/notes.php:57 src/Content/Text/HTML.php:857
+#: 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/photos.php:67 mod/photos.php:132 mod/photos.php:577
-#: src/Model/Event.php:514 src/Model/Profile.php:234
+#: 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
@@ -402,22 +407,22 @@ msgid "User not found."
msgstr "Utente non trovato."
#: mod/photos.php:106 src/Module/BaseProfile.php:68
-#: src/Module/Profile/Photos.php:399
+#: src/Module/Profile/Photos.php:379
msgid "Photo Albums"
msgstr "Album foto"
-#: mod/photos.php:107 src/Module/Profile/Photos.php:400
-#: src/Module/Profile/Photos.php:420
+#: 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:109 mod/photos.php:867 src/Module/Profile/Photos.php:402
-#: src/Module/Profile/Photos.php:422
+#: 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:121 src/Module/BaseSettings.php:74
-#: src/Module/Profile/Photos.php:383
+#: mod/photos.php:121 src/Module/BaseSettings.php:72
+#: src/Module/Profile/Photos.php:363
msgid "everybody"
msgstr "tutti"
@@ -429,72 +434,72 @@ msgstr "I dati di questo contatto non sono disponibili"
msgid "Album not found."
msgstr "Album non trovato."
-#: mod/photos.php:242
+#: mod/photos.php:244
msgid "Album successfully deleted"
msgstr "Album eliminato con successo"
-#: mod/photos.php:244
+#: mod/photos.php:246
msgid "Album was empty."
msgstr "L'album era vuoto."
-#: mod/photos.php:276
+#: mod/photos.php:277
msgid "Failed to delete the photo."
msgstr "Eliminazione della foto non riuscita."
-#: mod/photos.php:544
+#: mod/photos.php:545
msgid "a photo"
msgstr "una foto"
-#: mod/photos.php:544
+#: 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:581 src/Module/Conversation/Community.php:188
-#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:315
+#: 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:586
+#: mod/photos.php:587
msgid "No photos selected"
msgstr "Nessuna foto selezionata"
-#: mod/photos.php:718
+#: mod/photos.php:721
#, php-format
msgid "The maximum accepted image size is %s"
msgstr ""
-#: mod/photos.php:725
+#: mod/photos.php:728
msgid "Upload Photos"
msgstr "Carica foto"
-#: mod/photos.php:729 mod/photos.php:815
+#: mod/photos.php:732 mod/photos.php:820
msgid "New album name: "
msgstr "Nome nuovo album: "
-#: mod/photos.php:730
+#: mod/photos.php:733
msgid "or select existing album:"
msgstr "o seleziona un album esistente:"
-#: mod/photos.php:731
+#: 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:733 mod/photos.php:1093 src/Content/Conversation.php:391
-#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:182
+#: 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:796
+#: 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:797 mod/photos.php:820
+#: mod/photos.php:802 mod/photos.php:825
msgid "Delete Album"
msgstr "Rimuovi album"
-#: mod/photos.php:798 mod/photos.php:899 src/Content/Conversation.php:407
+#: 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
@@ -504,254 +509,271 @@ msgstr "Rimuovi album"
msgid "Cancel"
msgstr "Annulla"
-#: mod/photos.php:824
+#: mod/photos.php:829
msgid "Edit Album"
msgstr "Modifica album"
-#: mod/photos.php:825
+#: mod/photos.php:830
msgid "Drop Album"
msgstr "Elimina Album"
-#: mod/photos.php:829
+#: mod/photos.php:834
msgid "Show Newest First"
msgstr "Mostra nuove foto per prime"
-#: mod/photos.php:831
+#: mod/photos.php:836
msgid "Show Oldest First"
msgstr "Mostra vecchie foto per prime"
-#: mod/photos.php:852 src/Module/Profile/Photos.php:370
+#: mod/photos.php:857 src/Module/Profile/Photos.php:350
msgid "View Photo"
msgstr "Vedi foto"
-#: mod/photos.php:885
+#: 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:887
+#: mod/photos.php:891
msgid "Photo not available"
msgstr "Foto non disponibile"
-#: mod/photos.php:897
+#: mod/photos.php:901
msgid "Do you really want to delete this photo?"
msgstr "Vuoi veramente cancellare questa foto?"
-#: mod/photos.php:898 mod/photos.php:1098
+#: mod/photos.php:902 mod/photos.php:1102
msgid "Delete Photo"
msgstr "Rimuovi foto"
-#: mod/photos.php:996
+#: mod/photos.php:1000
msgid "View photo"
msgstr "Vedi foto"
-#: mod/photos.php:998
+#: mod/photos.php:1002
msgid "Edit photo"
msgstr "Modifica foto"
-#: mod/photos.php:999
+#: mod/photos.php:1003
msgid "Delete photo"
msgstr "Elimina foto"
-#: mod/photos.php:1000
+#: mod/photos.php:1004
msgid "Use as profile photo"
msgstr "Usa come foto del profilo"
-#: mod/photos.php:1007
+#: mod/photos.php:1011
msgid "Private Photo"
msgstr "Foto privata"
-#: mod/photos.php:1013
+#: mod/photos.php:1017
msgid "View Full Size"
msgstr "Vedi dimensione intera"
-#: mod/photos.php:1066
+#: mod/photos.php:1070
msgid "Tags: "
msgstr "Tag: "
-#: mod/photos.php:1069
+#: mod/photos.php:1073
msgid "[Select tags to remove]"
msgstr "[Seleziona tag da rimuovere]"
-#: mod/photos.php:1084
+#: mod/photos.php:1088
msgid "New album name"
msgstr "Nuovo nome dell'album"
-#: mod/photos.php:1085
+#: mod/photos.php:1089
msgid "Caption"
msgstr "Titolo"
-#: mod/photos.php:1086
+#: mod/photos.php:1090
msgid "Add a Tag"
msgstr "Aggiungi tag"
-#: mod/photos.php:1086
+#: 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:1087
+#: mod/photos.php:1091
msgid "Do not rotate"
msgstr "Non ruotare"
-#: mod/photos.php:1088
+#: mod/photos.php:1092
msgid "Rotate CW (right)"
msgstr "Ruota a destra"
-#: mod/photos.php:1089
+#: mod/photos.php:1093
msgid "Rotate CCW (left)"
msgstr "Ruota a sinistra"
-#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1265
-#: src/Module/Contact.php:588 src/Module/Item/Compose.php:188
-#: src/Object/Post.php:1060
+#: 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:1137 mod/photos.php:1193 mod/photos.php:1267
-#: src/Object/Post.php:544 src/Object/Post.php:1062
+#: 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:1139 mod/photos.php:1195 mod/photos.php:1269
-#: src/Content/Conversation.php:404 src/Module/Calendar/Event/Form.php:248
-#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:165
-#: src/Object/Post.php:1074
+#: 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:1140 src/Content/Conversation.php:359
-#: src/Module/Post/Edit.php:130 src/Object/Post.php:1064
+#: 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:1226 src/Content/Conversation.php:649
-#: src/Object/Post.php:257
+#: mod/photos.php:1236 src/Content/Conversation.php:1464
+#: src/Object/Post.php:260
msgid "Select"
msgstr "Seleziona"
-#: mod/photos.php:1227 src/Content/Conversation.php:650
+#: 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:1288 src/Object/Post.php:385
+#: mod/photos.php:1298 src/Object/Post.php:408
msgid "Like"
msgstr "Mi Piace"
-#: mod/photos.php:1289 src/Object/Post.php:385
+#: mod/photos.php:1299 src/Object/Post.php:408
msgid "I like this (toggle)"
msgstr "Mi piace (clic per cambiare)"
-#: mod/photos.php:1290 src/Object/Post.php:386
+#: mod/photos.php:1300 src/Object/Post.php:409
msgid "Dislike"
msgstr "Non Mi Piace"
-#: mod/photos.php:1292 src/Object/Post.php:386
+#: 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:1314
+#: mod/photos.php:1324
msgid "Map"
msgstr "Mappa"
-#: src/App.php:470
+#: src/App.php:473
msgid "No system theme config value set."
msgstr "Nessun tema di sistema impostato."
-#: src/App.php:574
+#: 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:247
+#: src/App/Page.php:248
msgid "Delete this item?"
msgstr "Cancellare questo elemento?"
-#: src/App/Page.php:248
+#: 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:249
+#: 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 "Like not successful"
+msgid "Collapse this author's posts?"
msgstr ""
#: src/App/Page.php:252
-msgid "Dislike not successful"
+msgid "Ignore this author's server?"
msgstr ""
-#: src/App/Page.php:253
-msgid "Sharing not successful"
-msgstr ""
-
-#: src/App/Page.php:254
-msgid "Attendance unsuccessful"
+#: 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 "Backend error"
+msgid "Like not successful"
msgstr ""
#: src/App/Page.php:256
-msgid "Network error"
+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 "Drop files here to upload"
+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:261
+#: 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:262
+#: src/App/Page.php:266
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
msgstr ""
-#: src/App/Page.php:263
+#: src/App/Page.php:267
msgid "You can't upload files of this type."
msgstr ""
-#: src/App/Page.php:264
+#: src/App/Page.php:268
msgid "Server responded with {{statusCode}} code."
msgstr ""
-#: src/App/Page.php:265
+#: src/App/Page.php:269
msgid "Cancel upload"
msgstr ""
-#: src/App/Page.php:266
+#: src/App/Page.php:270
msgid "Upload canceled."
msgstr ""
-#: src/App/Page.php:267
+#: src/App/Page.php:271
msgid "Are you sure you want to cancel this upload?"
msgstr ""
-#: src/App/Page.php:268
+#: src/App/Page.php:272
msgid "Remove file"
msgstr ""
-#: src/App/Page.php:269
+#: src/App/Page.php:273
msgid "You can't upload any more files."
msgstr ""
-#: src/App/Page.php:347
+#: src/App/Page.php:351
msgid "toggle mobile"
msgstr "commuta tema mobile"
@@ -768,33 +790,33 @@ msgstr "Pagina non trovata."
msgid "You must be logged in to use addons. "
msgstr "Devi aver effettuato il login per usare i componenti aggiuntivi."
-#: src/BaseModule.php:400
+#: 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:427
+#: src/BaseModule.php:428
msgid "All contacts"
msgstr "Tutti i contatti"
-#: src/BaseModule.php:432 src/Content/Widget.php:239 src/Core/ACL.php:195
-#: src/Module/Contact.php:407 src/Module/PermissionTooltip.php:127
-#: src/Module/PermissionTooltip.php:149
+#: 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:437 src/Content/Widget.php:240
-#: src/Module/Contact.php:408
+#: src/BaseModule.php:438 src/Content/Widget.php:240
+#: src/Module/Contact.php:418
msgid "Following"
msgstr "Seguendo"
-#: src/BaseModule.php:442 src/Content/Widget.php:241
-#: src/Module/Contact.php:409
+#: src/BaseModule.php:443 src/Content/Widget.php:241
+#: src/Module/Contact.php:421
msgid "Mutual friends"
msgstr "Amici reciproci"
-#: src/BaseModule.php:450
+#: src/BaseModule.php:451
msgid "Common"
msgstr "Comune"
@@ -944,7 +966,7 @@ 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:663
+#: 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
@@ -1119,21 +1141,25 @@ msgstr "pnut"
msgid "Tumblr"
msgstr ""
-#: src/Content/ContactSelector.php:179
+#: 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:218
+#: src/Content/Conversation.php:226
msgid "and"
msgstr "e"
-#: src/Content/Conversation.php:221
+#: src/Content/Conversation.php:229
#, php-format
msgid "and %d other people"
msgstr "e altre %d persone"
-#: src/Content/Conversation.php:227
+#: src/Content/Conversation.php:235
#, php-format
msgid "%2$s likes this."
msgid_plural "%2$s like this."
@@ -1141,7 +1167,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:229
+#: src/Content/Conversation.php:237
#, php-format
msgid "%2$s doesn't like this."
msgid_plural "%2$s don't like this."
@@ -1149,7 +1175,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:231
+#: src/Content/Conversation.php:239
#, php-format
msgid "%2$s attends."
msgid_plural "%2$s attend."
@@ -1157,7 +1183,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:233
+#: src/Content/Conversation.php:241
#, php-format
msgid "%2$s doesn't attend."
msgid_plural "%2$s don't attend."
@@ -1165,7 +1191,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:235
+#: src/Content/Conversation.php:243
#, php-format
msgid "%2$s attends maybe."
msgid_plural "%2$s attend maybe."
@@ -1173,7 +1199,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:237
+#: src/Content/Conversation.php:245
#, php-format
msgid "%2$s reshared this."
msgid_plural "%2$s reshared this."
@@ -1181,7 +1207,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:266
+#: src/Content/Conversation.php:274
#, php-format
msgid " likes this"
msgid_plural " like this"
@@ -1189,7 +1215,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:269
+#: src/Content/Conversation.php:277
#, php-format
msgid " doesn't like this"
msgid_plural " don't like this"
@@ -1197,7 +1223,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:272
+#: src/Content/Conversation.php:280
#, php-format
msgid " attends"
msgid_plural " attend"
@@ -1205,7 +1231,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:275
+#: src/Content/Conversation.php:283
#, php-format
msgid " doesn't attend"
msgid_plural " don't attend"
@@ -1213,7 +1239,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:278
+#: src/Content/Conversation.php:286
#, php-format
msgid " attends maybe"
msgid_plural " attend maybe"
@@ -1221,7 +1247,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:281
+#: src/Content/Conversation.php:289
#, php-format
msgid " reshared this"
msgid_plural " reshared this"
@@ -1229,269 +1255,398 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Content/Conversation.php:328
+#: src/Content/Conversation.php:336
msgid "Visible to everybody"
msgstr "Visibile a tutti"
-#: src/Content/Conversation.php:329 src/Module/Item/Compose.php:198
-#: src/Object/Post.php:1073
+#: 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:330
+#: src/Content/Conversation.php:338
msgid "Tag term:"
msgstr "Tag:"
-#: src/Content/Conversation.php:331 src/Module/Filer/SaveTag.php:73
+#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73
msgid "Save to Folder:"
msgstr "Salva nella Cartella:"
-#: src/Content/Conversation.php:332
+#: src/Content/Conversation.php:340
msgid "Where are you right now?"
msgstr "Dove sei ora?"
-#: src/Content/Conversation.php:333
+#: src/Content/Conversation.php:341
msgid "Delete item(s)?"
msgstr "Cancellare questo elemento/i?"
-#: src/Content/Conversation.php:345 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:355
+#: src/Content/Conversation.php:363
msgid "New Post"
msgstr "Nuovo Messaggio"
-#: src/Content/Conversation.php:358
+#: src/Content/Conversation.php:366
msgid "Share"
msgstr "Condividi"
-#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:132
+#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132
msgid "upload photo"
msgstr "carica foto"
-#: src/Content/Conversation.php:362 src/Module/Post/Edit.php:133
+#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133
msgid "Attach file"
msgstr "Allega file"
-#: src/Content/Conversation.php:363 src/Module/Post/Edit.php:134
+#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134
msgid "attach file"
msgstr "allega file"
-#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190
-#: src/Module/Post/Edit.php:171 src/Object/Post.php:1065
+#: 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:365 src/Module/Item/Compose.php:191
-#: src/Module/Post/Edit.php:172 src/Object/Post.php:1066
+#: 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:366 src/Module/Item/Compose.php:192
-#: src/Module/Post/Edit.php:173 src/Object/Post.php:1067
+#: 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:367 src/Module/Item/Compose.php:193
-#: src/Module/Post/Edit.php:174 src/Object/Post.php:1068
+#: 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:368 src/Module/Item/Compose.php:194
-#: src/Module/Post/Edit.php:175 src/Object/Post.php:1069
+#: 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:369 src/Module/Item/Compose.php:195
-#: src/Object/Post.php:1070
+#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197
+#: src/Object/Post.php:1104
msgid "Image"
msgstr "Immagine"
-#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:196
-#: src/Module/Post/Edit.php:176 src/Object/Post.php:1071
+#: 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:371 src/Module/Item/Compose.php:197
-#: src/Module/Post/Edit.php:177 src/Object/Post.php:1072
+#: 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:372
+#: src/Content/Conversation.php:382
msgid "Video"
msgstr "Video"
-#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:200
+#: 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:374 src/Module/Post/Edit.php:142
+#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142
msgid "set location"
msgstr "posizione"
-#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:143
+#: 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:376 src/Module/Post/Edit.php:144
+#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144
msgid "clear location"
msgstr "canc. pos."
-#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:205
+#: 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:380 src/Module/Item/Compose.php:206
+#: 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:385 src/Module/Item/Compose.php:222
+#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224
msgid "Scheduled at"
msgstr "Programmato per"
-#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:146
+#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146
msgid "Permission settings"
msgstr "Impostazioni permessi"
-#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:155
+#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155
msgid "Public post"
msgstr "Messaggio pubblico"
-#: src/Content/Conversation.php:414 src/Content/Widget/VCard.php:113
-#: src/Model/Profile.php:469 src/Module/Admin/Logs/View.php:92
-#: src/Module/Post/Edit.php:180
+#: 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:415 src/Module/Post/Edit.php:181
+#: 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:417 src/Module/Post/Edit.php:184
+#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185
msgid "Open Compose page"
msgstr "Apri pagina di Composizione"
-#: src/Content/Conversation.php:677 src/Object/Post.php:244
-msgid "Pinned item"
-msgstr "Oggetto in evidenza"
-
-#: src/Content/Conversation.php:693 src/Object/Post.php:496
-#: src/Object/Post.php:497
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Vedi il profilo di %s @ %s"
-
-#: src/Content/Conversation.php:706 src/Object/Post.php:484
-msgid "Categories:"
-msgstr "Categorie:"
-
-#: src/Content/Conversation.php:707 src/Object/Post.php:485
-msgid "Filed under:"
-msgstr "Archiviato in:"
-
-#: src/Content/Conversation.php:715 src/Object/Post.php:510
-#, php-format
-msgid "%s from %s"
-msgstr "%s da %s"
-
-#: src/Content/Conversation.php:731
-msgid "View in context"
-msgstr "Vedi nel contesto"
-
-#: src/Content/Conversation.php:796
+#: src/Content/Conversation.php:595
msgid "remove"
msgstr "rimuovi"
-#: src/Content/Conversation.php:800
+#: src/Content/Conversation.php:599
msgid "Delete Selected Items"
msgstr "Cancella elementi selezionati"
-#: src/Content/Conversation.php:865 src/Content/Conversation.php:868
-#: src/Content/Conversation.php:871 src/Content/Conversation.php:874
-#: src/Content/Conversation.php:877
+#: 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:880
+#: src/Content/Conversation.php:769
#, php-format
msgid "You are following %s."
msgstr "Stai seguendo %s."
-#: src/Content/Conversation.php:883
+#: 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:896
+#: src/Content/Conversation.php:796
#, php-format
msgid "%s reshared this."
msgstr "%s ha ricondiviso questo."
-#: src/Content/Conversation.php:898
+#: src/Content/Conversation.php:798
msgid "Reshared"
msgstr "Ricondiviso"
-#: src/Content/Conversation.php:898
+#: src/Content/Conversation.php:798
#, php-format
msgid "Reshared by %s <%s>"
msgstr "Ricondiviso da %s <%s>"
-#: src/Content/Conversation.php:901
+#: src/Content/Conversation.php:801
#, php-format
msgid "%s is participating in this thread."
msgstr "%s partecipa in questa conversazione."
-#: src/Content/Conversation.php:904
+#: src/Content/Conversation.php:804
msgid "Stored for general reasons"
msgstr ""
-#: src/Content/Conversation.php:907
+#: src/Content/Conversation.php:807
msgid "Global post"
msgstr ""
-#: src/Content/Conversation.php:910
+#: src/Content/Conversation.php:810
msgid "Sent via an relay server"
msgstr ""
-#: src/Content/Conversation.php:910
+#: src/Content/Conversation.php:810
#, php-format
msgid "Sent via the relay server %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:913
+#: src/Content/Conversation.php:813
msgid "Fetched"
msgstr "Recuperato"
-#: src/Content/Conversation.php:913
+#: src/Content/Conversation.php:813
#, php-format
msgid "Fetched because of %s <%s>"
msgstr "Recuperato a causa di %s <%s>"
-#: src/Content/Conversation.php:916
+#: src/Content/Conversation.php:816
msgid "Stored because of a child post to complete this thread."
msgstr ""
-#: src/Content/Conversation.php:919
+#: src/Content/Conversation.php:819
msgid "Local delivery"
msgstr ""
-#: src/Content/Conversation.php:922
+#: src/Content/Conversation.php:822
msgid "Stored because of your activity (like, comment, star, ...)"
msgstr ""
-#: src/Content/Conversation.php:925
+#: src/Content/Conversation.php:825
msgid "Distributed"
msgstr ""
-#: src/Content/Conversation.php:928
+#: 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"
@@ -1521,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"
@@ -1567,12 +1722,12 @@ msgid "Advanced Profile Settings"
msgstr "Impostazioni Avanzate Profilo"
#: src/Content/Feature.php:119
-msgid "List Forums"
-msgstr "Elenco forum"
+msgid "List Groups"
+msgstr ""
#: src/Content/Feature.php:119
-msgid "Show visitors public community forums at the Advanced Profile Page"
-msgstr "Mostra ai visitatori i forum nella pagina Profilo Avanzato"
+msgid "Show visitors public groups at the Advanced Profile Page"
+msgstr ""
#: src/Content/Feature.php:120
msgid "Tag Cloud"
@@ -1604,385 +1759,395 @@ msgid ""
"Contact birthday events are private to you."
msgstr ""
-#: src/Content/ForumManager.php:151 src/Content/Nav.php:276
-#: src/Content/Text/HTML.php:878 src/Content/Widget.php:528
-msgid "Forums"
-msgstr "Forum"
+#: 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/ForumManager.php:153
-msgid "External link to forum"
-msgstr "Collegamento esterno al forum"
+#: src/Content/GroupManager.php:154
+msgid "External link to group"
+msgstr ""
-#: src/Content/ForumManager.php:156 src/Content/Widget.php:507
+#: src/Content/GroupManager.php:158 src/Content/Widget.php:512
msgid "show less"
msgstr "mostra meno"
-#: src/Content/ForumManager.php:157 src/Content/Widget.php:409
-#: src/Content/Widget.php:508
+#: 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:326 src/Model/Item.php:2922
+#: src/Content/GroupManager.php:160
+msgid "Create new group"
+msgstr ""
+
+#: src/Content/Item.php:331 src/Model/Item.php:3003
msgid "event"
msgstr "l'evento"
-#: src/Content/Item.php:329 src/Content/Item.php:339
+#: src/Content/Item.php:334 src/Content/Item.php:344
msgid "status"
msgstr "stato"
-#: src/Content/Item.php:335 src/Model/Item.php:2924
+#: 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:349 src/Module/Post/Tag/Add.php:141
+#: 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:419 view/theme/frio/theme.php:262
+#: src/Content/Item.php:428 view/theme/frio/theme.php:262
msgid "Follow Thread"
msgstr "Segui la discussione"
-#: src/Content/Item.php:420 src/Model/Contact.php:1204
+#: src/Content/Item.php:429 src/Model/Contact.php:1227
msgid "View Status"
msgstr "Visualizza stato"
-#: src/Content/Item.php:421 src/Content/Item.php:441
-#: src/Model/Contact.php:1148 src/Model/Contact.php:1196
-#: src/Model/Contact.php:1205 src/Module/Directory.php:157
-#: src/Module/Settings/Profile/Index.php:233
+#: 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:422 src/Model/Contact.php:1206
+#: src/Content/Item.php:431 src/Model/Contact.php:1229
msgid "View Photos"
msgstr "Visualizza foto"
-#: src/Content/Item.php:423 src/Model/Contact.php:1197
-#: src/Model/Contact.php:1207
+#: 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:424 src/Model/Contact.php:1198
-#: src/Model/Contact.php:1208
+#: 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:425 src/Model/Contact.php:1209
+#: src/Content/Item.php:434 src/Model/Contact.php:1232
msgid "Send PM"
msgstr "Invia messaggio privato"
-#: src/Content/Item.php:426 src/Module/Contact.php:439
-#: src/Module/Contact/Profile.php:477
+#: 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:427 src/Module/Contact.php:440
-#: src/Module/Contact/Profile.php:485
+#: 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:428 src/Module/Contact.php:441
-#: src/Module/Contact/Profile.php:493
+#: src/Content/Item.php:437 src/Module/Contact.php:470
+#: src/Module/Contact/Profile.php:527
msgid "Collapse"
msgstr ""
-#: src/Content/Item.php:432 src/Object/Post.php:465
+#: 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:438 src/Content/Widget.php:80
-#: src/Model/Contact.php:1199 src/Model/Contact.php:1210
-#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:196
+#: 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/Item.php:863
+#: src/Content/Item.php:882
msgid "Unable to fetch user."
msgstr ""
-#: src/Content/Nav.php:120
+#: src/Content/Nav.php:121
msgid "Nothing new here"
msgstr "Niente di nuovo qui"
-#: src/Content/Nav.php:124 src/Module/Special/HTTPException.php:77
+#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77
msgid "Go back"
msgstr "Torna indietro"
-#: src/Content/Nav.php:125
+#: src/Content/Nav.php:126
msgid "Clear notifications"
msgstr "Pulisci le notifiche"
-#: src/Content/Nav.php:126 src/Content/Text/HTML.php:865
-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:220 src/Module/Security/Login.php:157
+#: src/Content/Nav.php:222 src/Module/Security/Login.php:157
msgid "Logout"
msgstr "Esci"
-#: src/Content/Nav.php:220
+#: src/Content/Nav.php:222
msgid "End this session"
msgstr "Finisci questa sessione"
-#: src/Content/Nav.php:222 src/Module/Bookmarklet.php:44
+#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44
#: src/Module/Security/Login.php:158
msgid "Login"
msgstr "Accedi"
-#: src/Content/Nav.php:222
+#: src/Content/Nav.php:224
msgid "Sign in"
msgstr "Entra"
-#: src/Content/Nav.php:227 src/Module/BaseProfile.php:57
-#: src/Module/Contact.php:483
+#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57
+#: src/Module/Contact.php:512
msgid "Conversations"
msgstr ""
-#: src/Content/Nav.php:227
+#: src/Content/Nav.php:229
msgid "Conversations you started"
msgstr ""
-#: src/Content/Nav.php:228 src/Module/BaseProfile.php:49
-#: src/Module/BaseSettings.php:100 src/Module/Contact.php:475
-#: src/Module/Contact/Profile.php:392 src/Module/Profile/Profile.php:268
+#: 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:228 view/theme/frio/theme.php:230
+#: src/Content/Nav.php:230 view/theme/frio/theme.php:230
msgid "Your profile page"
msgstr "Pagina del tuo profilo"
-#: src/Content/Nav.php:229 src/Module/BaseProfile.php:65
+#: 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:229 view/theme/frio/theme.php:234
+#: src/Content/Nav.php:231 view/theme/frio/theme.php:234
msgid "Your photos"
msgstr "Le tue foto"
-#: src/Content/Nav.php:230 src/Module/BaseProfile.php:73
-#: src/Module/BaseProfile.php:76 src/Module/Contact.php:499
+#: 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:230 view/theme/frio/theme.php:235
+#: 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:231 src/Content/Nav.php:291
+#: 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:252 view/theme/frio/theme.php:236
+#: 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:231 view/theme/frio/theme.php:236
+#: src/Content/Nav.php:233 view/theme/frio/theme.php:236
msgid "Your calendar"
msgstr ""
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Personal notes"
msgstr "Note personali"
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Your personal notes"
msgstr "Le tue note personali"
-#: src/Content/Nav.php:249 src/Content/Nav.php:306
+#: src/Content/Nav.php:251 src/Content/Nav.php:308
msgid "Home"
msgstr "Home"
-#: src/Content/Nav.php:249 src/Module/Settings/OAuth.php:73
+#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73
msgid "Home Page"
msgstr "Home Page"
-#: src/Content/Nav.php:253 src/Module/Register.php:168
+#: src/Content/Nav.php:255 src/Module/Register.php:168
#: src/Module/Security/Login.php:124
msgid "Register"
msgstr "Registrati"
-#: src/Content/Nav.php:253
+#: src/Content/Nav.php:255
msgid "Create an account"
msgstr "Crea un account"
-#: src/Content/Nav.php:259 src/Module/Help.php:67
+#: 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:241
+#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240
msgid "Help"
msgstr "Guida"
-#: src/Content/Nav.php:259
+#: src/Content/Nav.php:261
msgid "Help and documentation"
msgstr "Guida e documentazione"
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:265
msgid "Apps"
msgstr "Applicazioni"
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:265
msgid "Addon applications, utilities, games"
msgstr "Applicazioni, utilità e giochi aggiuntivi"
-#: src/Content/Nav.php:267 src/Content/Text/HTML.php:863
+#: 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:267
+#: src/Content/Nav.php:269
msgid "Search site content"
msgstr "Cerca nel contenuto del sito"
-#: src/Content/Nav.php:270 src/Content/Text/HTML.php:872
+#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874
msgid "Full Text"
msgstr "Testo Completo"
-#: src/Content/Nav.php:271 src/Content/Text/HTML.php:873
+#: 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:272 src/Content/Nav.php:327
-#: src/Content/Text/HTML.php:874 src/Module/BaseProfile.php:127
-#: src/Module/BaseProfile.php:130 src/Module/Contact.php:410
-#: src/Module/Contact.php:506 view/theme/frio/theme.php:243
+#: 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:287
+#: src/Content/Nav.php:289
msgid "Community"
msgstr "Comunità"
-#: src/Content/Nav.php:287
+#: src/Content/Nav.php:289
msgid "Conversations on this and other servers"
msgstr "Conversazioni su questo e su altri server"
-#: src/Content/Nav.php:294
+#: src/Content/Nav.php:296
msgid "Directory"
msgstr "Elenco"
-#: src/Content/Nav.php:294
+#: src/Content/Nav.php:296
msgid "People directory"
msgstr "Elenco delle persone"
-#: src/Content/Nav.php:296 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:296
+#: src/Content/Nav.php:298
msgid "Information about this friendica instance"
msgstr "Informazioni su questo server friendica"
-#: src/Content/Nav.php:299 src/Module/Admin/Tos.php:78
+#: 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:100
+#: src/Module/Tos.php:101
msgid "Terms of Service"
msgstr "Termini di Servizio"
-#: src/Content/Nav.php:299
+#: 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:304 view/theme/frio/theme.php:239
+#: src/Content/Nav.php:306 view/theme/frio/theme.php:239
msgid "Network"
msgstr "Rete"
-#: src/Content/Nav.php:304 view/theme/frio/theme.php:239
+#: 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:306 view/theme/frio/theme.php:229
+#: 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:310
+#: src/Content/Nav.php:312
msgid "Introductions"
msgstr "Presentazioni"
-#: src/Content/Nav.php:310
+#: src/Content/Nav.php:312
msgid "Friend Requests"
msgstr "Richieste di amicizia"
-#: src/Content/Nav.php:311 src/Module/BaseNotifications.php:149
+#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149
#: src/Module/Notifications/Introductions.php:75
msgid "Notifications"
msgstr "Notifiche"
-#: src/Content/Nav.php:312
+#: src/Content/Nav.php:314
msgid "See all notifications"
msgstr "Vedi tutte le notifiche"
-#: src/Content/Nav.php:313 src/Module/Settings/Connectors.php:244
+#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244
msgid "Mark as seen"
msgstr "Segna come letto"
-#: src/Content/Nav.php:313
+#: 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:316 view/theme/frio/theme.php:241
+#: src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Private mail"
msgstr "Posta privata"
-#: src/Content/Nav.php:317
+#: src/Content/Nav.php:319
msgid "Inbox"
msgstr "In arrivo"
-#: src/Content/Nav.php:318
+#: src/Content/Nav.php:320
msgid "Outbox"
msgstr "Inviati"
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Accounts"
msgstr "Account"
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Manage other pages"
msgstr "Gestisci altre pagine"
-#: 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/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:325 view/theme/frio/theme.php:242
+#: src/Content/Nav.php:327 view/theme/frio/theme.php:242
msgid "Account settings"
msgstr "Parametri account"
-#: src/Content/Nav.php:327 view/theme/frio/theme.php:243
+#: 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:332 src/Module/BaseAdmin.php:119
+#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119
msgid "Admin"
msgstr "Amministrazione"
-#: src/Content/Nav.php:332
+#: src/Content/Nav.php:334
msgid "Site setup and configuration"
msgstr "Configurazione del sito"
-#: src/Content/Nav.php:333 src/Module/BaseModeration.php:127
+#: 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/Summary.php:76
+#: 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
@@ -1990,23 +2155,23 @@ msgstr "Configurazione del sito"
msgid "Moderation"
msgstr ""
-#: src/Content/Nav.php:333
+#: src/Content/Nav.php:335
msgid "Content and user moderation"
msgstr ""
-#: src/Content/Nav.php:336
+#: src/Content/Nav.php:338
msgid "Navigation"
msgstr "Navigazione"
-#: src/Content/Nav.php:336
+#: src/Content/Nav.php:338
msgid "Site map"
msgstr "Mappa del sito"
-#: src/Content/OEmbed.php:317
+#: src/Content/OEmbed.php:316
msgid "Embedding disabled"
msgstr "Embed disabilitato"
-#: src/Content/OEmbed.php:441
+#: src/Content/OEmbed.php:440
msgid "Embedded content"
msgstr "Contenuto incorporato"
@@ -2026,51 +2191,51 @@ msgstr "succ"
msgid "last"
msgstr "ultimo"
-#: src/Content/Text/BBCode.php:713 src/Content/Text/BBCode.php:1599
-#: src/Content/Text/BBCode.php:1600
+#: 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:931
+#: src/Content/Text/BBCode.php:914
#, php-format
msgid "%2$s %3$s"
msgstr "%2$s %3$s"
-#: src/Content/Text/BBCode.php:956 src/Model/Item.php:3607
-#: src/Model/Item.php:3613 src/Model/Item.php:3614
+#: 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:1506 src/Content/Text/HTML.php:902
+#: 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:1539
+#: src/Content/Text/BBCode.php:1576
msgid "$1 wrote:"
msgstr "$1 ha scritto:"
-#: src/Content/Text/BBCode.php:1604 src/Content/Text/BBCode.php:1605
+#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642
msgid "Encrypted content"
msgstr "Contenuto criptato"
-#: src/Content/Text/BBCode.php:1869
+#: src/Content/Text/BBCode.php:1901
msgid "Invalid source protocol"
msgstr "Protocollo sorgente non valido"
-#: src/Content/Text/BBCode.php:1888
+#: src/Content/Text/BBCode.php:1920
msgid "Invalid link protocol"
msgstr "Protocollo collegamento non valido"
-#: src/Content/Text/HTML.php:780
+#: src/Content/Text/HTML.php:782
msgid "Loading more entries..."
msgstr "Carico più elementi..."
-#: src/Content/Text/HTML.php:781
+#: src/Content/Text/HTML.php:783
msgid "The end"
msgstr "Fine"
-#: src/Content/Text/HTML.php:857 src/Content/Widget/VCard.php:109
-#: src/Model/Profile.php:463 src/Module/Contact/Profile.php:437
+#: 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"
@@ -2098,88 +2263,92 @@ msgstr[0] "%d invito disponibile"
msgstr[1] "%d inviti disponibili"
msgstr[2] "%d inviti disponibili"
-#: src/Content/Widget.php:78 view/theme/vier/theme.php:194
+#: src/Content/Widget.php:78 view/theme/vier/theme.php:193
msgid "Find People"
msgstr "Trova persone"
-#: src/Content/Widget.php:79 view/theme/vier/theme.php:195
+#: 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:81 view/theme/vier/theme.php:197
+#: 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:82 src/Module/Contact.php:432
-#: src/Module/Directory.php:96 view/theme/vier/theme.php:198
+#: 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:83 src/Module/Contact/Suggestions.php:73
-#: view/theme/vier/theme.php:199
+#: view/theme/vier/theme.php:198
msgid "Friend Suggestions"
msgstr "Contatti suggeriti"
-#: src/Content/Widget.php:84 view/theme/vier/theme.php:200
+#: src/Content/Widget.php:84 view/theme/vier/theme.php:199
msgid "Similar Interests"
msgstr "Interessi simili"
-#: src/Content/Widget.php:85 view/theme/vier/theme.php:201
+#: src/Content/Widget.php:85 view/theme/vier/theme.php:200
msgid "Random Profile"
msgstr "Profilo Casuale"
-#: src/Content/Widget.php:86 view/theme/vier/theme.php:202
+#: src/Content/Widget.php:86 view/theme/vier/theme.php:201
msgid "Invite Friends"
msgstr "Invita amici"
#: src/Content/Widget.php:87 src/Module/Directory.php:88
-#: view/theme/vier/theme.php:203
+#: view/theme/vier/theme.php:202
msgid "Global Directory"
msgstr "Elenco globale"
-#: src/Content/Widget.php:89 view/theme/vier/theme.php:205
+#: src/Content/Widget.php:89 view/theme/vier/theme.php:204
msgid "Local Directory"
msgstr "Elenco Locale"
-#: src/Content/Widget.php:215 src/Model/Group.php:587
-#: src/Module/Contact.php:394 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:217
msgid "Everyone"
msgstr "Chiunque"
-#: src/Content/Widget.php:246
+#: 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:248 src/Module/Contact.php:338
-#: src/Module/Group.php:291
+#: 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:287
+#: src/Content/Widget.php:288
msgid "Protocols"
msgstr "Protocolli"
-#: src/Content/Widget.php:289
+#: src/Content/Widget.php:290
msgid "All Protocols"
msgstr "Tutti i Protocolli"
-#: src/Content/Widget.php:317
+#: src/Content/Widget.php:318
msgid "Saved Folders"
msgstr "Cartelle Salvate"
-#: src/Content/Widget.php:319 src/Content/Widget.php:350
+#: src/Content/Widget.php:320 src/Content/Widget.php:351
msgid "Everything"
msgstr "Tutto"
-#: src/Content/Widget.php:348
+#: src/Content/Widget.php:349
msgid "Categories"
msgstr "Categorie"
-#: src/Content/Widget.php:405
+#: src/Content/Widget.php:406
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
@@ -2187,30 +2356,38 @@ msgstr[0] "%d contatto in comune"
msgstr[1] "%d contatti in comune"
msgstr[2] "%d contatti in comune"
-#: src/Content/Widget.php:501
+#: src/Content/Widget.php:506
msgid "Archives"
msgstr "Archivi"
-#: src/Content/Widget.php:525
+#: src/Content/Widget.php:514
+msgid "On this date"
+msgstr ""
+
+#: src/Content/Widget.php:534
msgid "Persons"
msgstr "Persone"
-#: src/Content/Widget.php:526
+#: src/Content/Widget.php:535
msgid "Organisations"
msgstr "Organizzazioni"
-#: src/Content/Widget.php:527 src/Model/Contact.php:1656
+#: src/Content/Widget.php:536 src/Model/Contact.php:1698
msgid "News"
msgstr "Notizie"
-#: src/Content/Widget.php:531 src/Module/Settings/Account.php:453
+#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454
msgid "Account Types"
msgstr "Tipi di Account"
-#: src/Content/Widget.php:532 src/Module/Moderation/BaseUsers.php:69
+#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69
msgid "All"
msgstr "Tutto"
+#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266
+msgid "Channels"
+msgstr ""
+
#: src/Content/Widget/CalendarExport.php:56
msgid "Export"
msgstr "Esporta"
@@ -2259,32 +2436,32 @@ msgstr[2] "Etichette di Tendenza (ultime %d ore)"
msgid "More Trending Tags"
msgstr "Più Etichette di Tendenza"
-#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:378
-#: src/Module/Contact/Profile.php:381 src/Module/Profile/Profile.php:199
+#: 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:379
-#: src/Module/Contact/Profile.php:383 src/Module/Profile/Profile.php:203
+#: 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: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/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:107 src/Model/Profile.php:476
+#: 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:111 src/Model/Contact.php:1200
-#: src/Model/Contact.php:1211 src/Model/Profile.php:465
-#: src/Module/Contact/Profile.php:429
+#: 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"
@@ -2325,8 +2502,8 @@ msgstr "Questo contenuto sarà mostrato solo alle persone nel primo campo, ad ec
#: src/Core/ACL.php:324
msgid ""
-"Start typing the name of a contact or a group to show a filtered list. You "
-"can also mention the special groups \"Followers\" and \"Mutuals\"."
+"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
@@ -2668,161 +2845,172 @@ msgstr "Database già in uso."
msgid "Could not connect to database."
msgstr " Impossibile collegarsi con il database."
-#: src/Core/L10n.php:408 src/Model/Event.php:432
-#: src/Module/Settings/Display.php:222
+#: src/Core/L10n.php:476 src/Model/Event.php:430
+#: src/Module/Settings/Display.php:235
msgid "Monday"
msgstr "Lunedì"
-#: src/Core/L10n.php:408 src/Model/Event.php:433
-#: src/Module/Settings/Display.php:223
+#: src/Core/L10n.php:476 src/Model/Event.php:431
+#: src/Module/Settings/Display.php:236
msgid "Tuesday"
msgstr "Martedì"
-#: src/Core/L10n.php:408 src/Model/Event.php:434
-#: src/Module/Settings/Display.php:224
+#: src/Core/L10n.php:476 src/Model/Event.php:432
+#: src/Module/Settings/Display.php:237
msgid "Wednesday"
msgstr "Mercoledì"
-#: src/Core/L10n.php:408 src/Model/Event.php:435
-#: src/Module/Settings/Display.php:225
+#: src/Core/L10n.php:476 src/Model/Event.php:433
+#: src/Module/Settings/Display.php:238
msgid "Thursday"
msgstr "Giovedì"
-#: src/Core/L10n.php:408 src/Model/Event.php:436
-#: src/Module/Settings/Display.php:226
+#: src/Core/L10n.php:476 src/Model/Event.php:434
+#: src/Module/Settings/Display.php:239
msgid "Friday"
msgstr "Venerdì"
-#: src/Core/L10n.php:408 src/Model/Event.php:437
-#: src/Module/Settings/Display.php:227
+#: src/Core/L10n.php:476 src/Model/Event.php:435
+#: src/Module/Settings/Display.php:240
msgid "Saturday"
msgstr "Sabato"
-#: src/Core/L10n.php:408 src/Model/Event.php:431
-#: src/Module/Settings/Display.php:221
+#: src/Core/L10n.php:476 src/Model/Event.php:429
+#: src/Module/Settings/Display.php:234
msgid "Sunday"
msgstr "Domenica"
-#: src/Core/L10n.php:412 src/Model/Event.php:452
+#: src/Core/L10n.php:480 src/Model/Event.php:450
msgid "January"
msgstr "Gennaio"
-#: src/Core/L10n.php:412 src/Model/Event.php:453
+#: src/Core/L10n.php:480 src/Model/Event.php:451
msgid "February"
msgstr "Febbraio"
-#: src/Core/L10n.php:412 src/Model/Event.php:454
+#: src/Core/L10n.php:480 src/Model/Event.php:452
msgid "March"
msgstr "Marzo"
-#: src/Core/L10n.php:412 src/Model/Event.php:455
+#: src/Core/L10n.php:480 src/Model/Event.php:453
msgid "April"
msgstr "Aprile"
-#: src/Core/L10n.php:412 src/Core/L10n.php:431 src/Model/Event.php:443
+#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441
msgid "May"
msgstr "Maggio"
-#: src/Core/L10n.php:412 src/Model/Event.php:456
+#: src/Core/L10n.php:480 src/Model/Event.php:454
msgid "June"
msgstr "Giugno"
-#: src/Core/L10n.php:412 src/Model/Event.php:457
+#: src/Core/L10n.php:480 src/Model/Event.php:455
msgid "July"
msgstr "Luglio"
-#: src/Core/L10n.php:412 src/Model/Event.php:458
+#: src/Core/L10n.php:480 src/Model/Event.php:456
msgid "August"
msgstr "Agosto"
-#: src/Core/L10n.php:412 src/Model/Event.php:459
+#: src/Core/L10n.php:480 src/Model/Event.php:457
msgid "September"
msgstr "Settembre"
-#: src/Core/L10n.php:412 src/Model/Event.php:460
+#: src/Core/L10n.php:480 src/Model/Event.php:458
msgid "October"
msgstr "Ottobre"
-#: src/Core/L10n.php:412 src/Model/Event.php:461
+#: src/Core/L10n.php:480 src/Model/Event.php:459
msgid "November"
msgstr "Novembre"
-#: src/Core/L10n.php:412 src/Model/Event.php:462
+#: src/Core/L10n.php:480 src/Model/Event.php:460
msgid "December"
msgstr "Dicembre"
-#: src/Core/L10n.php:427 src/Model/Event.php:424
+#: src/Core/L10n.php:495 src/Model/Event.php:422
msgid "Mon"
msgstr "Lun"
-#: src/Core/L10n.php:427 src/Model/Event.php:425
+#: src/Core/L10n.php:495 src/Model/Event.php:423
msgid "Tue"
msgstr "Mar"
-#: src/Core/L10n.php:427 src/Model/Event.php:426
+#: src/Core/L10n.php:495 src/Model/Event.php:424
msgid "Wed"
msgstr "Mer"
-#: src/Core/L10n.php:427 src/Model/Event.php:427
+#: src/Core/L10n.php:495 src/Model/Event.php:425
msgid "Thu"
msgstr "Gio"
-#: src/Core/L10n.php:427 src/Model/Event.php:428
+#: src/Core/L10n.php:495 src/Model/Event.php:426
msgid "Fri"
msgstr "Ven"
-#: src/Core/L10n.php:427 src/Model/Event.php:429
+#: src/Core/L10n.php:495 src/Model/Event.php:427
msgid "Sat"
msgstr "Sab"
-#: src/Core/L10n.php:427 src/Model/Event.php:423
+#: src/Core/L10n.php:495 src/Model/Event.php:421
msgid "Sun"
msgstr "Dom"
-#: src/Core/L10n.php:431 src/Model/Event.php:439
+#: src/Core/L10n.php:499 src/Model/Event.php:437
msgid "Jan"
msgstr "Gen"
-#: src/Core/L10n.php:431 src/Model/Event.php:440
+#: src/Core/L10n.php:499 src/Model/Event.php:438
msgid "Feb"
msgstr "Feb"
-#: src/Core/L10n.php:431 src/Model/Event.php:441
+#: src/Core/L10n.php:499 src/Model/Event.php:439
msgid "Mar"
msgstr "Mar"
-#: src/Core/L10n.php:431 src/Model/Event.php:442
+#: src/Core/L10n.php:499 src/Model/Event.php:440
msgid "Apr"
msgstr "Apr"
-#: src/Core/L10n.php:431 src/Model/Event.php:444
+#: src/Core/L10n.php:499 src/Model/Event.php:442
msgid "Jun"
msgstr "Giu"
-#: src/Core/L10n.php:431 src/Model/Event.php:445
+#: src/Core/L10n.php:499 src/Model/Event.php:443
msgid "Jul"
msgstr "Lug"
-#: src/Core/L10n.php:431 src/Model/Event.php:446
+#: src/Core/L10n.php:499 src/Model/Event.php:444
msgid "Aug"
msgstr "Ago"
-#: src/Core/L10n.php:431
+#: src/Core/L10n.php:499
msgid "Sep"
msgstr "Set"
-#: src/Core/L10n.php:431 src/Model/Event.php:448
+#: src/Core/L10n.php:499 src/Model/Event.php:446
msgid "Oct"
msgstr "Ott"
-#: src/Core/L10n.php:431 src/Model/Event.php:449
+#: src/Core/L10n.php:499 src/Model/Event.php:447
msgid "Nov"
msgstr "Nov"
-#: src/Core/L10n.php:431 src/Model/Event.php:450
+#: src/Core/L10n.php:499 src/Model/Event.php:448
msgid "Dec"
msgstr "Dic"
+#: 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/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:147 src/Core/Renderer.php:181
#: src/Render/FriendicaSmartyEngine.php:60
@@ -2867,22 +3055,22 @@ msgid ""
" 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:197
+#: src/Core/Update.php:183
#, php-format
msgid "%s: executing pre update %d"
msgstr "%s: eseguendo pre aggiornamento %d"
-#: src/Core/Update.php:239
+#: src/Core/Update.php:225
#, php-format
msgid "%s: executing post update %d"
msgstr "%s: eseguendo post aggiornamento %d"
-#: src/Core/Update.php:313
+#: 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:353
+#: src/Core/Update.php:339
#, php-format
msgid ""
"\n"
@@ -2892,16 +3080,16 @@ 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:359
+#: 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:363 src/Core/Update.php:391
+#: 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:385
+#: src/Core/Update.php:371
#, php-format
msgid ""
"\n"
@@ -2913,28 +3101,28 @@ msgstr ""
msgid "The database version had been set to %s."
msgstr "La versione del database è stata impostata come %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 "Il post aggiornamento è alla versione %d, deve essere a %d per fare il drop delle tabelle in sicurezza."
-#: src/Database/DBStructure.php:83
+#: src/Database/DBStructure.php:95
msgid "No unused tables found."
msgstr "Nessuna tabella inutilizzata trovata."
-#: 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 "Queste tabelle non sono utilizzate da friendica e saranno eliminate quando eseguirai \"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 "Non ci sono tabelle su MyISAM o InnoDB con il formato file Antelope"
-#: src/Database/DBStructure.php:150
+#: src/Database/DBStructure.php:161
#, php-format
msgid ""
"\n"
@@ -2942,20 +3130,20 @@ msgid ""
"%s\n"
msgstr "\nErrore %d durante l'aggiornamento del database:\n%s\n"
-#: src/Database/DBStructure.php:153
+#: src/Database/DBStructure.php:164
msgid "Errors encountered performing database changes: "
msgstr "Errori riscontrati eseguendo le modifiche al database:"
-#: src/Database/DBStructure.php:221
+#: 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:225
+#: src/Database/DBStructure.php:236
#, php-format
msgid "%s: Database update"
msgstr "%s: Aggiornamento database"
-#: src/Database/DBStructure.php:482
+#: src/Database/DBStructure.php:493
#, php-format
msgid "%s: updating %s table."
msgstr "%s: aggiornando la tabella %s."
@@ -2986,82 +3174,122 @@ msgstr "Errore Interno del Server"
msgid "Legacy module file not found: %s"
msgstr "File del modulo legacy non trovato: %s"
-#: src/Model/Contact.php:1217 src/Module/Moderation/Users/Pending.php:102
+#: 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 "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:1652
+#: src/Model/Contact.php:1694
msgid "Organisation"
msgstr "Organizzazione"
-#: src/Model/Contact.php:1660
-msgid "Forum"
-msgstr "Forum"
+#: src/Model/Contact.php:1702
+msgid "Group"
+msgstr ""
-#: src/Model/Contact.php:2947
+#: src/Model/Contact.php:3005
msgid "Disallowed profile URL."
msgstr "Indirizzo profilo non permesso."
-#: src/Model/Contact.php:2952 src/Module/Friendica.php:83
+#: src/Model/Contact.php:3010 src/Module/Friendica.php:101
msgid "Blocked domain"
msgstr "Dominio bloccato"
-#: src/Model/Contact.php:2957
+#: src/Model/Contact.php:3015
msgid "Connect URL missing."
msgstr "URL di connessione mancante."
-#: src/Model/Contact.php:2966
+#: 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:2984
+#: src/Model/Contact.php:3042
#, php-format
msgid "Expected network %s does not match actual network %s"
msgstr ""
-#: src/Model/Contact.php:3001
+#: 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:3003
+#: 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:3006
+#: 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:3009
+#: 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:3012
+#: 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:3013
+#: 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:3019
+#: 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:3024
+#: 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:3089
+#: src/Model/Contact.php:3148
msgid "Unable to retrieve contact information."
msgstr "Impossibile recuperare informazioni sul contatto."
@@ -3069,54 +3297,54 @@ msgstr "Impossibile recuperare informazioni sul contatto."
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:75 src/Model/Event.php:92 src/Model/Event.php:471
-#: src/Model/Event.php:940
+#: 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:78 src/Model/Event.php:98 src/Model/Event.php:472
-#: src/Model/Event.php:944
+#: 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:421
+#: src/Model/Event.php:419
msgid "all-day"
msgstr "tutto il giorno"
-#: src/Model/Event.php:447
+#: src/Model/Event.php:445
msgid "Sept"
msgstr "Set"
-#: src/Model/Event.php:464 src/Module/Calendar/Show.php:128
+#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128
#: src/Util/Temporal.php:343
msgid "today"
msgstr "oggi"
-#: src/Model/Event.php:465 src/Module/Calendar/Show.php:129
-#: src/Module/Settings/Display.php:232 src/Util/Temporal.php:353
+#: 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:466 src/Module/Calendar/Show.php:130
-#: src/Module/Settings/Display.php:233 src/Util/Temporal.php:354
+#: 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:467 src/Module/Calendar/Show.php:131
-#: src/Module/Settings/Display.php:234 src/Util/Temporal.php:355
+#: 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:469
+#: src/Model/Event.php:467
msgid "No events to display"
msgstr "Nessun evento da mostrare"
-#: src/Model/Event.php:518 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69
+#: 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:559 src/Module/Calendar/Event/Show.php:67
+#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67
msgid "Event not found."
msgstr ""
@@ -3148,110 +3376,66 @@ msgstr "D G:i"
msgid "g:i A"
msgstr "G:i"
-#: src/Model/Event.php:959 src/Model/Event.php:961
+#: src/Model/Event.php:964 src/Model/Event.php:966
msgid "Show map"
msgstr "Mostra mappa"
-#: src/Model/Event.php:960
+#: src/Model/Event.php:965
msgid "Hide map"
msgstr "Nascondi mappa"
-#: src/Model/Event.php:1053
+#: src/Model/Event.php:1058
#, php-format
msgid "%s's birthday"
msgstr "Compleanno di %s"
-#: src/Model/Event.php:1054
+#: src/Model/Event.php:1059
#, php-format
msgid "Happy Birthday %s"
msgstr "Buon compleanno %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 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:503
-msgid "Default privacy group for new contacts"
-msgstr "Gruppo predefinito per i nuovi contatti"
-
-#: src/Model/Group.php:535
-msgid "Everybody"
-msgstr "Tutti"
-
-#: src/Model/Group.php:554
-msgid "edit"
-msgstr "modifica"
-
-#: src/Model/Group.php:586
-msgid "add"
-msgstr "aggiungi"
-
-#: src/Model/Group.php:591
-msgid "Edit group"
-msgstr "Modifica gruppo"
-
-#: src/Model/Group.php:592 src/Module/Group.php:192
-msgid "Contacts not in any group"
-msgstr "Contatti in nessun gruppo."
-
-#: src/Model/Group.php:594
-msgid "Create a new group"
-msgstr "Crea un nuovo gruppo"
-
-#: src/Model/Group.php:595 src/Module/Group.php:177 src/Module/Group.php:200
-#: src/Module/Group.php:275
-msgid "Group Name: "
-msgstr "Nome del gruppo:"
-
-#: src/Model/Group.php:596
-msgid "Edit groups"
-msgstr "Modifica gruppi"
-
-#: src/Model/Item.php:2023
+#: 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:2926
+#: src/Model/Item.php:3007
msgid "activity"
msgstr "attività"
-#: src/Model/Item.php:2928
+#: src/Model/Item.php:3009
msgid "comment"
msgstr "commento"
-#: src/Model/Item.php:2931 src/Module/Post/Tag/Add.php:123
+#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123
msgid "post"
msgstr "messaggio"
-#: src/Model/Item.php:3093
+#: src/Model/Item.php:3182
#, php-format
msgid "%s is blocked"
msgstr ""
-#: src/Model/Item.php:3095
+#: src/Model/Item.php:3184
#, php-format
msgid "%s is ignored"
msgstr ""
-#: src/Model/Item.php:3097
+#: src/Model/Item.php:3186
#, php-format
msgid "Content from %s is collapsed"
msgstr ""
-#: src/Model/Item.php:3101
+#: src/Model/Item.php:3190
#, php-format
msgid "Content warning: %s"
msgstr "Avviso contenuto: %s"
-#: src/Model/Item.php:3519
+#: src/Model/Item.php:3652
msgid "bytes"
msgstr "bytes"
-#: src/Model/Item.php:3550
+#: src/Model/Item.php:3683
#, php-format
msgid "%2$s (%3$d%%, %1$d vote)"
msgid_plural "%2$s (%3$d%%, %1$d votes)"
@@ -3259,7 +3443,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Model/Item.php:3552
+#: src/Model/Item.php:3685
#, php-format
msgid "%2$s (%1$d vote)"
msgid_plural "%2$s (%1$d votes)"
@@ -3267,7 +3451,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Model/Item.php:3557
+#: src/Model/Item.php:3690
#, php-format
msgid "%d voter. Poll end: %s"
msgid_plural "%d voters. Poll end: %s"
@@ -3275,7 +3459,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Model/Item.php:3559
+#: src/Model/Item.php:3692
#, php-format
msgid "%d voter."
msgid_plural "%d voters."
@@ -3283,12 +3467,12 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Model/Item.php:3561
+#: src/Model/Item.php:3694
#, php-format
msgid "Poll end: %s"
msgstr ""
-#: src/Model/Item.php:3595 src/Model/Item.php:3596
+#: src/Model/Item.php:3728 src/Model/Item.php:3729
msgid "View on separate page"
msgstr "Vedi in una pagina separata"
@@ -3296,227 +3480,228 @@ msgstr "Vedi in una pagina separata"
msgid "[no subject]"
msgstr "[nessun oggetto]"
-#: src/Model/Photo.php:1189 src/Module/Media/Photo/Upload.php:197
+#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170
msgid "Wall Photos"
msgstr "Foto della bacheca"
-#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:283
+#: 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:363
+#: src/Model/Profile.php:361
msgid "Change profile photo"
msgstr "Cambia la foto del profilo"
-#: src/Model/Profile.php:376 src/Module/Directory.php:152
+#: 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:385
+#: 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:467
+#: src/Model/Profile.php:465
msgid "Atom feed"
msgstr "Feed Atom"
-#: src/Model/Profile.php:474
+#: src/Model/Profile.php:472
msgid "This website has been verified to belong to the same person."
msgstr ""
-#: src/Model/Profile.php:511
+#: src/Model/Profile.php:509
msgid "F d"
msgstr "d F"
-#: src/Model/Profile.php:575 src/Model/Profile.php:664
+#: src/Model/Profile.php:573 src/Model/Profile.php:662
msgid "[today]"
msgstr "[oggi]"
-#: src/Model/Profile.php:584
+#: src/Model/Profile.php:582
msgid "Birthday Reminders"
msgstr "Promemoria compleanni"
-#: src/Model/Profile.php:585
+#: src/Model/Profile.php:583
msgid "Birthdays this week:"
msgstr "Compleanni questa settimana:"
-#: src/Model/Profile.php:613
+#: src/Model/Profile.php:611
msgid "g A l F d"
msgstr "g A l d F"
-#: src/Model/Profile.php:651
+#: src/Model/Profile.php:649
msgid "[No description]"
msgstr "[Nessuna descrizione]"
-#: src/Model/Profile.php:677
+#: src/Model/Profile.php:675
msgid "Event Reminders"
msgstr "Promemoria"
-#: src/Model/Profile.php:678
+#: src/Model/Profile.php:676
msgid "Upcoming events the next 7 days:"
msgstr "Eventi dei prossimi 7 giorni:"
-#: src/Model/Profile.php:875
+#: 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:1015
+#: src/Model/Profile.php:1013
msgid "Hometown:"
msgstr "Paese natale:"
-#: src/Model/Profile.php:1016
+#: src/Model/Profile.php:1014
msgid "Marital Status:"
msgstr "Stato Coniugale:"
-#: src/Model/Profile.php:1017
+#: src/Model/Profile.php:1015
msgid "With:"
msgstr "Con:"
-#: src/Model/Profile.php:1018
+#: src/Model/Profile.php:1016
msgid "Since:"
msgstr "Dal:"
-#: src/Model/Profile.php:1019
+#: src/Model/Profile.php:1017
msgid "Sexual Preference:"
msgstr "Preferenze sessuali:"
-#: src/Model/Profile.php:1020
+#: src/Model/Profile.php:1018
msgid "Political Views:"
msgstr "Orientamento politico:"
-#: src/Model/Profile.php:1021
+#: src/Model/Profile.php:1019
msgid "Religious Views:"
msgstr "Orientamento religioso:"
-#: src/Model/Profile.php:1022
+#: src/Model/Profile.php:1020
msgid "Likes:"
msgstr "Mi piace:"
-#: src/Model/Profile.php:1023
+#: src/Model/Profile.php:1021
msgid "Dislikes:"
msgstr "Non mi piace:"
-#: src/Model/Profile.php:1024
+#: src/Model/Profile.php:1022
msgid "Title/Description:"
msgstr "Breve descrizione (es. titolo, posizione, altro):"
-#: src/Model/Profile.php:1025 src/Module/Admin/Summary.php:221
+#: 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:1026
+#: src/Model/Profile.php:1024
msgid "Musical interests"
msgstr "Interessi musicali"
-#: src/Model/Profile.php:1027
+#: src/Model/Profile.php:1025
msgid "Books, literature"
msgstr "Libri, letteratura"
-#: src/Model/Profile.php:1028
+#: src/Model/Profile.php:1026
msgid "Television"
msgstr "Televisione"
-#: src/Model/Profile.php:1029
+#: src/Model/Profile.php:1027
msgid "Film/dance/culture/entertainment"
msgstr "Film/danza/cultura/intrattenimento"
-#: src/Model/Profile.php:1030
+#: src/Model/Profile.php:1028
msgid "Hobbies/Interests"
msgstr "Hobby/interessi"
-#: src/Model/Profile.php:1031
+#: src/Model/Profile.php:1029
msgid "Love/romance"
msgstr "Amore"
-#: src/Model/Profile.php:1032
+#: src/Model/Profile.php:1030
msgid "Work/employment"
msgstr "Lavoro/impiego"
-#: src/Model/Profile.php:1033
+#: src/Model/Profile.php:1031
msgid "School/education"
msgstr "Scuola/educazione"
-#: src/Model/Profile.php:1034
+#: src/Model/Profile.php:1032
msgid "Contact information and Social Networks"
msgstr "Informazioni su contatti e social network"
-#: src/Model/User.php:214 src/Model/User.php:1120
+#: 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:572 src/Model/User.php:605
+#: src/Model/User.php:620 src/Model/User.php:653
msgid "Login failed"
msgstr "Accesso fallito."
-#: src/Model/User.php:637
+#: src/Model/User.php:685
msgid "Not enough information to authenticate"
msgstr "Informazioni insufficienti per l'autenticazione"
-#: src/Model/User.php:754
+#: src/Model/User.php:806
msgid "Password can't be empty"
msgstr "La password non può essere vuota"
-#: src/Model/User.php:796
+#: src/Model/User.php:848
msgid "Empty passwords are not allowed."
msgstr "Password vuote non sono consentite."
-#: src/Model/User.php:800
+#: 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:804
+#: src/Model/User.php:856
msgid "The password length is limited to 72 characters."
msgstr ""
-#: src/Model/User.php:808
+#: src/Model/User.php:860
msgid "The password can't contain white spaces nor accentuated letters"
msgstr ""
-#: src/Model/User.php:1003
+#: src/Model/User.php:1069
msgid "Passwords do not match. Password unchanged."
msgstr "Le password non corrispondono. Password non cambiata."
-#: src/Model/User.php:1010
+#: src/Model/User.php:1076
msgid "An invitation is required."
msgstr "E' richiesto un invito."
-#: src/Model/User.php:1014
+#: src/Model/User.php:1080
msgid "Invitation could not be verified."
msgstr "L'invito non può essere verificato."
-#: src/Model/User.php:1022
+#: src/Model/User.php:1088
msgid "Invalid OpenID url"
msgstr "Url OpenID non valido"
-#: src/Model/User.php:1035 src/Security/Authentication.php:241
+#: 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:1035 src/Security/Authentication.php:241
+#: src/Model/User.php:1101 src/Security/Authentication.php:241
msgid "The error message was:"
msgstr "Il messaggio riportato era:"
-#: src/Model/User.php:1041
+#: src/Model/User.php:1107
msgid "Please enter the required information."
msgstr "Inserisci le informazioni richieste."
-#: src/Model/User.php:1055
+#: 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:1062
+#: src/Model/User.php:1128
#, php-format
msgid "Username should be at least %s character."
msgid_plural "Username should be at least %s characters."
@@ -3524,7 +3709,7 @@ 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:1066
+#: src/Model/User.php:1132
#, php-format
msgid "Username should be at most %s character."
msgid_plural "Username should be at most %s characters."
@@ -3532,60 +3717,60 @@ 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:1074
+#: 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:1079
+#: 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:1083
+#: src/Model/User.php:1149
msgid "Not a valid email address."
msgstr "L'indirizzo email non è valido."
-#: src/Model/User.php:1086
+#: 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:1090 src/Model/User.php:1096
+#: 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:1102
+#: 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:1110 src/Model/User.php:1167
+#: 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:1154 src/Model/User.php:1158
+#: 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:1181
+#: 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:1188
+#: 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:1193
+#: src/Model/User.php:1259
msgid "Friends"
msgstr "Amici"
-#: src/Model/User.php:1197
+#: 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:1236
+#: src/Model/User.php:1307
msgid "Profile Photos"
msgstr "Foto del profilo"
-#: src/Model/User.php:1431
+#: src/Model/User.php:1487
#, php-format
msgid ""
"\n"
@@ -3593,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:1434
+#: src/Model/User.php:1490
#, php-format
msgid ""
"\n"
@@ -3625,12 +3810,12 @@ msgid ""
"\t\tThank you and welcome to %4$s."
msgstr ""
-#: src/Model/User.php:1467 src/Model/User.php:1574
+#: 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:1487
+#: src/Model/User.php:1543
#, php-format
msgid ""
"\n"
@@ -3645,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:1506
+#: src/Model/User.php:1562
#, php-format
msgid "Registration at %s"
msgstr "Registrazione su %s"
-#: src/Model/User.php:1530
+#: src/Model/User.php:1586
#, php-format
msgid ""
"\n"
@@ -3659,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:1538
+#: src/Model/User.php:1594
#, php-format
msgid ""
"\n"
@@ -3716,10 +3901,10 @@ msgid "Enable"
msgstr "Abilita"
#: src/Module/Admin/Addons/Details.php:111
-#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:209
+#: 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:220
+#: 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
@@ -3729,7 +3914,7 @@ msgstr "Amministrazione"
#: src/Module/Admin/Addons/Details.php:112
#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92
-#: src/Module/BaseSettings.php:134
+#: src/Module/BaseSettings.php:132
msgid "Addons"
msgstr "Componenti aggiuntivi"
@@ -3760,10 +3945,10 @@ 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:560 src/Module/Settings/Addons.php:78
+#: 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:169 src/Module/Settings/Display.php:247
+#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260
#: src/Module/Settings/Features.php:76
msgid "Save Settings"
msgstr "Salva Impostazioni"
@@ -3848,15 +4033,17 @@ msgstr "Blocca funzionalità %s"
msgid "Manage Additional Features"
msgstr "Gestisci Funzionalità Aggiuntive"
-#: src/Module/Admin/Federation.php:75
+#: 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:149 src/Module/Admin/Federation.php:398
+#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403
msgid "unknown"
msgstr "sconosciuto"
-#: src/Module/Admin/Federation.php:182
+#: src/Module/Admin/Federation.php:187
#, php-format
msgid "%2$s total system"
msgid_plural "%2$s total systems"
@@ -3864,7 +4051,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/Admin/Federation.php:183
+#: src/Module/Admin/Federation.php:188
#, php-format
msgid "%2$s active user last month"
msgid_plural "%2$s active users last month"
@@ -3872,7 +4059,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/Admin/Federation.php:184
+#: 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"
@@ -3880,7 +4067,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/Admin/Federation.php:185
+#: src/Module/Admin/Federation.php:190
#, php-format
msgid "%2$s registered user"
msgid_plural "%2$s registered users"
@@ -3888,7 +4075,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/Admin/Federation.php:186
+#: 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"
@@ -3896,7 +4083,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/Admin/Federation.php:189
+#: src/Module/Admin/Federation.php:194
#, php-format
msgid "%2$s post per user"
msgid_plural "%2$s posts per user"
@@ -3904,7 +4091,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/Admin/Federation.php:194
+#: src/Module/Admin/Federation.php:199
#, php-format
msgid "%2$s user per system"
msgid_plural "%2$s users per system"
@@ -3912,18 +4099,18 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/Admin/Federation.php:204
+#: 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:210 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:214
+#: src/Module/Admin/Federation.php:219
#, php-format
msgid ""
"Currently this node is aware of %2$s node (%3$s active users last month, "
@@ -4117,7 +4304,8 @@ msgstr "Comando"
msgid "Job Parameters"
msgstr "Parametri lavoro"
-#: src/Module/Admin/Queue.php:78 src/Module/Settings/OAuth.php:74
+#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95
+#: src/Module/Settings/OAuth.php:74
msgid "Created"
msgstr "Creato"
@@ -4130,11 +4318,11 @@ msgstr "Priorità"
msgid "%s is no valid input for maximum image size"
msgstr ""
-#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:169
+#: 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:330 src/Module/Settings/Display.php:179
+#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188
#, php-format
msgid "%s - (Experimental)"
msgstr "%s - (Sperimentale)"
@@ -4224,7 +4412,7 @@ msgid "Policies"
msgstr "Politiche"
#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252
-#: src/Module/Contact.php:516 src/Module/Profile/Profile.php:276
+#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276
msgid "Advanced"
msgstr "Avanzate"
@@ -4554,8 +4742,8 @@ msgstr "Messaggi privati come impostazioni predefinita per i nuovi utenti"
#: 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:456
msgid "Don't include post content in email notifications"
@@ -4969,13 +5157,13 @@ 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:507
-msgid "Generate counts per contact group when calculating network count"
+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 groups the query can be very "
-"expensive."
+"On systems with users that heavily use contact circles the query can be very"
+" expensive."
msgstr ""
#: src/Module/Admin/Site.php:509
@@ -5019,7 +5207,7 @@ msgid ""
"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:513 src/Module/Contact/Profile.php:286
+#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309
#: src/Module/Settings/TwoFactor/Index.php:125
msgid "Disabled"
msgstr "Disabilitato"
@@ -5214,51 +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:142
-#, 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:156
-#, 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:172
+#: 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:180
+#: 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:188
+#: 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:199
+#: src/Module/Admin/Summary.php:175
msgid "Message queues"
msgstr "Code messaggi"
-#: src/Module/Admin/Summary.php:205
+#: src/Module/Admin/Summary.php:181
msgid "Server Settings"
msgstr "Impostazioni Server"
-#: src/Module/Admin/Summary.php:223
+#: src/Module/Admin/Summary.php:199
msgid "Version"
msgstr "Versione"
-#: src/Module/Admin/Summary.php:227
+#: src/Module/Admin/Summary.php:203
msgid "Active addons"
msgstr "Componenti aggiuntivi attivi"
@@ -5411,11 +5588,11 @@ msgstr "Oggetto non trovato."
msgid "Please login to continue."
msgstr "Effettua il login per continuare."
-#: src/Module/BaseAdmin.php:63 src/Module/BaseModeration.php:86
+#: src/Module/BaseAdmin.php:63
msgid "You don't have access to administration pages."
msgstr "Non hai accesso alle pagine di amministrazione."
-#: src/Module/BaseAdmin.php:67 src/Module/BaseModeration.php:90
+#: src/Module/BaseAdmin.php:67
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
@@ -5425,11 +5602,11 @@ msgstr "Account sottogestiti non possono accedere alle pagine di amministrazione
msgid "Overview"
msgstr "Panoramica"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:111
+#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
msgid "Configuration"
msgstr "Configurazione"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:112
+#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
msgid "Additional features"
msgstr "Funzionalità aggiuntive"
@@ -5449,7 +5626,7 @@ msgstr "Analizza i lavori rinviati"
msgid "Inspect worker Queue"
msgstr "Analizza coda lavori"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:119
+#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
msgid "Diagnostics"
msgstr "Diagnostiche"
@@ -5477,7 +5654,7 @@ msgstr "Conversione ActivityPub"
msgid "Addon Features"
msgstr "Funzionalità Componenti Aggiuntivi"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.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"
@@ -5512,32 +5689,46 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/BaseModeration.php:112 src/Module/Moderation/Users/Index.php:148
+#: 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:114
+#: src/Module/BaseModeration.php:115
msgid "Tools"
msgstr "Strumenti"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:116
msgid "Contact Blocklist"
msgstr "Blocklist Contatti"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:117
msgid "Server Blocklist"
msgstr "Server Blocklist"
-#: src/Module/BaseModeration.php:117 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
msgid "Delete Item"
msgstr "Rimuovi elemento"
-#: src/Module/BaseModeration.php:120 src/Module/Moderation/Item/Source.php:76
+#: 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:478
+#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507
msgid "Profile Details"
msgstr "Dettagli del profilo"
@@ -5561,15 +5752,15 @@ msgstr ""
msgid "Tips for New Members"
msgstr "Consigli per i Nuovi Utenti"
-#: src/Module/BaseSearch.php:69
+#: src/Module/BaseSearch.php:71
#, php-format
msgid "People Search - %s"
msgstr "Cerca persone - %s"
-#: src/Module/BaseSearch.php:79
+#: src/Module/BaseSearch.php:75
#, php-format
-msgid "Forum Search - %s"
-msgstr "Ricerca Forum - %s"
+msgid "Group Search - %s"
+msgstr ""
#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139
msgid "No matches"
@@ -5589,36 +5780,40 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: src/Module/BaseSettings.php:80
+#: src/Module/BaseSettings.php:78
msgid "Account"
msgstr "Account"
-#: src/Module/BaseSettings.php:87 src/Module/Security/TwoFactor/Verify.php:96
+#: 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:120
+#: src/Module/BaseSettings.php:118
msgid "Display"
msgstr "Visualizzazione"
-#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:204
+#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204
msgid "Social Networks"
msgstr "Social Networks"
-#: src/Module/BaseSettings.php:141 src/Module/Settings/Delegation.php:170
+#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172
msgid "Manage Accounts"
msgstr "Gestisci Account"
-#: src/Module/BaseSettings.php:148
+#: src/Module/BaseSettings.php:146
msgid "Connected apps"
msgstr "Applicazioni collegate"
-#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:98
+#: 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:162
+#: src/Module/BaseSettings.php:167
msgid "Remove account"
msgstr "Rimuovi account"
@@ -5738,10 +5933,113 @@ msgstr "Mostra"
msgid "Create New Event"
msgstr "Crea un nuovo evento"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:235
+#: 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."
@@ -5750,159 +6048,146 @@ msgstr[0] "%d contatto modificato."
msgstr[1] "%d contatti modificati"
msgstr[2] "%d contatti modificati"
-#: src/Module/Contact.php:341
+#: src/Module/Contact.php:348
msgid "Show all contacts"
msgstr "Mostra tutti i contatti"
-#: src/Module/Contact.php:346 src/Module/Contact.php:414
+#: 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:349
+#: src/Module/Contact.php:356
msgid "Only show pending contacts"
msgstr "Mostra solo contatti in sospeso"
-#: src/Module/Contact.php:354 src/Module/Contact.php:415
+#: src/Module/Contact.php:361 src/Module/Contact.php:435
#: src/Module/Moderation/BaseUsers.php:93
msgid "Blocked"
msgstr "Bloccato"
-#: src/Module/Contact.php:357
+#: src/Module/Contact.php:364
msgid "Only show blocked contacts"
msgstr "Mostra solo contatti bloccati"
-#: src/Module/Contact.php:362 src/Module/Contact.php:417
-#: src/Object/Post.php:345
+#: 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:365
+#: src/Module/Contact.php:372
msgid "Only show ignored contacts"
msgstr "Mostra solo contatti ignorati"
-#: src/Module/Contact.php:370 src/Module/Contact.php:418
+#: src/Module/Contact.php:377 src/Module/Contact.php:444
msgid "Collapsed"
msgstr ""
-#: src/Module/Contact.php:373
+#: src/Module/Contact.php:380
msgid "Only show collapsed contacts"
msgstr ""
-#: src/Module/Contact.php:378 src/Module/Contact.php:419
+#: src/Module/Contact.php:385 src/Module/Contact.php:447
msgid "Archived"
msgstr "Archiviato"
-#: src/Module/Contact.php:381
+#: src/Module/Contact.php:388
msgid "Only show archived contacts"
msgstr "Mostra solo contatti archiviati"
-#: src/Module/Contact.php:386 src/Module/Contact.php:416
+#: src/Module/Contact.php:393 src/Module/Contact.php:438
msgid "Hidden"
msgstr "Nascosto"
-#: src/Module/Contact.php:389
+#: src/Module/Contact.php:396
msgid "Only show hidden contacts"
msgstr "Mostra solo contatti nascosti"
-#: src/Module/Contact.php:397
-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:430
+#: src/Module/Contact.php:459
msgid "Search your contacts"
msgstr "Cerca nei tuoi contatti"
-#: src/Module/Contact.php:431 src/Module/Search/Index.php:207
+#: 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:438
+#: src/Module/Contact.php:467
msgid "Update"
msgstr "Aggiorna"
-#: src/Module/Contact.php:439 src/Module/Contact/Profile.php:477
+#: 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:440 src/Module/Contact/Profile.php:485
+#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519
msgid "Unignore"
msgstr "Non ignorare"
-#: src/Module/Contact.php:441 src/Module/Contact/Profile.php:493
+#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527
msgid "Uncollapse"
msgstr ""
-#: src/Module/Contact.php:443
+#: src/Module/Contact.php:472
msgid "Batch Actions"
msgstr "Azioni Batch"
-#: src/Module/Contact.php:486
+#: src/Module/Contact.php:515
msgid "Conversations started by this contact"
msgstr "Conversazioni iniziate da questo contatto"
-#: src/Module/Contact.php:491
+#: src/Module/Contact.php:520
msgid "Posts and Comments"
msgstr "Messaggi e Commenti"
-#: src/Module/Contact.php:494
+#: src/Module/Contact.php:523
msgid "Individual Posts and Replies"
msgstr ""
-#: src/Module/Contact.php:502
+#: src/Module/Contact.php:531
msgid "Posts containing media objects"
msgstr ""
-#: src/Module/Contact.php:509
+#: src/Module/Contact.php:539
msgid "View all known contacts"
msgstr "Vedi tutti i contatti conosciuti"
-#: src/Module/Contact.php:519
+#: src/Module/Contact.php:550
msgid "Advanced Contact Settings"
msgstr "Impostazioni avanzate Contatto"
-#: src/Module/Contact.php:555
+#: src/Module/Contact.php:586
msgid "Mutual Friendship"
msgstr "Amicizia reciproca"
-#: src/Module/Contact.php:559
+#: src/Module/Contact.php:590
msgid "is a fan of yours"
msgstr "è un tuo fan"
-#: src/Module/Contact.php:563
+#: src/Module/Contact.php:594
msgid "you are a fan of"
msgstr "sei un fan di"
-#: src/Module/Contact.php:581
+#: src/Module/Contact.php:612
msgid "Pending outgoing contact request"
msgstr "Richiesta di contatto in uscita in sospeso"
-#: src/Module/Contact.php:583
+#: src/Module/Contact.php:614
msgid "Pending incoming contact request"
msgstr "Richiesta di contatto in arrivo in sospeso"
-#: src/Module/Contact.php:596 src/Module/Contact/Profile.php:346
+#: 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]"
-#: 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
-#: src/Module/Group.php:97 src/Module/Group.php:106
-msgid "Contact not found."
-msgstr "Contatto non trovato."
-
#: src/Module/Contact/Advanced.php:99
msgid "Contact update failed."
msgstr "Le modifiche al contatto non sono state salvate."
@@ -5913,6 +6198,7 @@ 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
@@ -5939,11 +6225,6 @@ msgstr "URL Feed"
msgid "New photo from this URL"
msgstr "Nuova foto da questo URL"
-#: src/Module/Contact/Contacts.php:66 src/Module/Conversation/Network.php:189
-#: src/Module/Group.php:101
-msgid "Invalid contact."
-msgstr "Contatto non valido."
-
#: src/Module/Contact/Contacts.php:89
msgid "No known contacts."
msgstr "Nessun contatto conosciuto."
@@ -6005,7 +6286,7 @@ msgstr[1] "Contatti (%s)"
msgstr[2] "Contatti (%s)"
#: 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/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
@@ -6043,15 +6324,16 @@ msgstr "Rispondi:"
msgid "Your Identity Address:"
msgstr "L'indirizzo della tua identità:"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:375
+#: 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:387
+#: 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:"
@@ -6077,8 +6359,8 @@ 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:82 src/Module/Media/Photo/Upload.php:87
-#: src/Module/Media/Photo/Upload.php:136
+#: 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."
@@ -6090,248 +6372,312 @@ msgstr "Nessuna parola chiave corrisponde. Per favore aggiungi parole chiave al
msgid "Profile Match"
msgstr "Profili corrispondenti"
-#: src/Module/Contact/Profile.php:128
+#: src/Module/Contact/Profile.php:140
msgid "Failed to update contact record."
msgstr "Errore nell'aggiornamento del contatto."
-#: src/Module/Contact/Profile.php:178
+#: src/Module/Contact/Profile.php:190
msgid "Contact has been unblocked"
msgstr "Il contatto è stato sbloccato"
-#: src/Module/Contact/Profile.php:182
+#: src/Module/Contact/Profile.php:194
msgid "Contact has been blocked"
msgstr "Il contatto è stato bloccato"
-#: src/Module/Contact/Profile.php:194
+#: src/Module/Contact/Profile.php:206
msgid "Contact has been unignored"
msgstr "Il contatto non è più ignorato"
-#: src/Module/Contact/Profile.php:198
+#: src/Module/Contact/Profile.php:210
msgid "Contact has been ignored"
msgstr "Il contatto è ignorato"
-#: src/Module/Contact/Profile.php:210
+#: src/Module/Contact/Profile.php:222
msgid "Contact has been uncollapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:214
+#: src/Module/Contact/Profile.php:226
msgid "Contact has been collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:242
+#: 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:243
+#: src/Module/Contact/Profile.php:255
#, php-format
msgid "You are sharing with %s"
msgstr "Stai condividendo con %s"
-#: src/Module/Contact/Profile.php:244
+#: 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:260
+#: 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:262
+#: 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:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was not successful)"
msgstr "(L'aggiornamento non è stato completato)"
-#: src/Module/Contact/Profile.php:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was successful)"
msgstr "(L'aggiornamento è stato completato)"
-#: src/Module/Contact/Profile.php:267 src/Module/Contact/Profile.php:448
+#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482
msgid "Suggest friends"
msgstr "Suggerisci amici"
-#: src/Module/Contact/Profile.php:271
+#: src/Module/Contact/Profile.php:294
#, php-format
msgid "Network type: %s"
msgstr "Tipo di rete: %s"
-#: src/Module/Contact/Profile.php:276
+#: src/Module/Contact/Profile.php:299
msgid "Communications lost with this contact!"
msgstr "Comunicazione con questo contatto persa!"
-#: src/Module/Contact/Profile.php:282
+#: src/Module/Contact/Profile.php:305
msgid "Fetch further information for feeds"
msgstr "Recupera maggiori informazioni per i feed"
-#: src/Module/Contact/Profile.php:284
+#: 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:287
+#: src/Module/Contact/Profile.php:310
msgid "Fetch information"
msgstr "Recupera informazioni"
-#: src/Module/Contact/Profile.php:288
+#: src/Module/Contact/Profile.php:311
msgid "Fetch keywords"
msgstr "Recupera parole chiave"
-#: src/Module/Contact/Profile.php:289
+#: src/Module/Contact/Profile.php:312
msgid "Fetch information and keywords"
msgstr "Recupera informazioni e parole chiave"
-#: src/Module/Contact/Profile.php:299 src/Module/Contact/Profile.php:304
-#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:315
+#: 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:300 src/Module/Contact/Profile.php:310
-#: src/Module/Contact/Profile.php:316
+#: 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:305 src/Module/Contact/Profile.php:311
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334
msgid "Native reshare"
msgstr "Ricondivisione nativa"
-#: src/Module/Contact/Profile.php:328
+#: src/Module/Contact/Profile.php:353
msgid "Contact Information / Notes"
msgstr "Informazioni / Note sul contatto"
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:354
msgid "Contact Settings"
msgstr "Impostazioni Contatto"
-#: src/Module/Contact/Profile.php:337
+#: src/Module/Contact/Profile.php:362
msgid "Contact"
msgstr "Contatto"
-#: src/Module/Contact/Profile.php:341
+#: src/Module/Contact/Profile.php:366
msgid "Their personal note"
msgstr "La loro nota personale"
-#: src/Module/Contact/Profile.php:343
+#: src/Module/Contact/Profile.php:368
msgid "Edit contact notes"
msgstr "Modifica note contatto"
-#: src/Module/Contact/Profile.php:347
+#: src/Module/Contact/Profile.php:372
msgid "Block/Unblock contact"
msgstr "Blocca/Sblocca contatto"
-#: src/Module/Contact/Profile.php:348
+#: 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:349
+#: src/Module/Contact/Profile.php:374
msgid "View conversations"
msgstr "Vedi conversazioni"
-#: src/Module/Contact/Profile.php:354
+#: src/Module/Contact/Profile.php:379
msgid "Last update:"
msgstr "Ultimo aggiornamento:"
-#: src/Module/Contact/Profile.php:356
+#: src/Module/Contact/Profile.php:381
msgid "Update public posts"
msgstr "Aggiorna messaggi pubblici"
-#: src/Module/Contact/Profile.php:358 src/Module/Contact/Profile.php:458
+#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492
msgid "Update now"
msgstr "Aggiorna adesso"
-#: src/Module/Contact/Profile.php:360
+#: src/Module/Contact/Profile.php:385
msgid "Awaiting connection acknowledge"
msgstr "In attesa di conferma della connessione"
-#: src/Module/Contact/Profile.php:361
+#: src/Module/Contact/Profile.php:386
msgid "Currently blocked"
msgstr "Bloccato"
-#: src/Module/Contact/Profile.php:362
+#: src/Module/Contact/Profile.php:387
msgid "Currently ignored"
msgstr "Ignorato"
-#: src/Module/Contact/Profile.php:363
+#: src/Module/Contact/Profile.php:388
msgid "Currently collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:364
+#: src/Module/Contact/Profile.php:389
msgid "Currently archived"
msgstr "Al momento archiviato"
-#: src/Module/Contact/Profile.php:367
+#: 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:367
+#: 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:368
+#: src/Module/Contact/Profile.php:395
msgid "Notification for new posts"
msgstr "Notifica per i nuovi messaggi"
-#: src/Module/Contact/Profile.php:368
+#: 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:370
+#: src/Module/Contact/Profile.php:397
msgid "Keyword Deny List"
msgstr "Elenco di Parole Chiave Negate"
-#: src/Module/Contact/Profile.php:370
+#: 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:388
+#: src/Module/Contact/Profile.php:415
#: src/Module/Settings/TwoFactor/Index.php:139
msgid "Actions"
msgstr "Azioni"
-#: src/Module/Contact/Profile.php:390
+#: 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:396
+#: src/Module/Contact/Profile.php:423
msgid "Mirror postings from this contact"
msgstr "Ripeti i messaggi di questo contatto"
-#: src/Module/Contact/Profile.php:398
+#: 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:468
+#: 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:479
+#: src/Module/Contact/Profile.php:513
msgid "Toggle Blocked status"
msgstr "Inverti stato \"Blocca\""
-#: src/Module/Contact/Profile.php:487
+#: src/Module/Contact/Profile.php:521
msgid "Toggle Ignored status"
msgstr "Inverti stato \"Ignora\""
-#: src/Module/Contact/Profile.php:495
+#: src/Module/Contact/Profile.php:529
msgid "Toggle Collapsed status"
msgstr ""
-#: src/Module/Contact/Profile.php:502 src/Module/Contact/Revoke.php:106
+#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106
msgid "Revoke Follow"
msgstr ""
-#: src/Module/Contact/Profile.php:504
+#: src/Module/Contact/Profile.php:538
msgid "Revoke the follow from this contact"
msgstr ""
@@ -6343,10 +6689,6 @@ msgstr "Richiesta Errata."
msgid "Unknown contact."
msgstr ""
-#: src/Module/Contact/Revoke.php:73 src/Module/Group.php:110
-msgid "Contact is deleted."
-msgstr "Contatto eliminato."
-
#: src/Module/Contact/Revoke.php:77
msgid "Contact is being deleted."
msgstr ""
@@ -6394,102 +6736,54 @@ msgstr "Il contatto non è più seguito"
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:74
+#: 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/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:87
-msgid "Local Community"
-msgstr "Comunità Locale"
-
-#: src/Module/Conversation/Community.php:90
-msgid "Posts from local users on this server"
-msgstr "Messaggi dagli utenti locali su questo sito"
-
-#: src/Module/Conversation/Community.php:98
-msgid "Global Community"
-msgstr "Comunità Globale"
-
-#: src/Module/Conversation/Community.php:101
-msgid "Posts from users of the whole federated network"
-msgstr "Messaggi dagli utenti della rete federata"
-
-#: src/Module/Conversation/Community.php:134
-msgid "Own Contacts"
-msgstr "Propri Contatti"
-
-#: src/Module/Conversation/Community.php:138
-msgid "Include"
-msgstr "Includi"
-
-#: src/Module/Conversation/Community.php:139
-msgid "Hide"
-msgstr "Nascondi"
-
-#: src/Module/Conversation/Community.php:156 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
-msgid "No results."
-msgstr "Nessun risultato."
-
-#: src/Module/Conversation/Community.php:212
+#: src/Module/Conversation/Community.php:179
msgid "Community option not available."
msgstr "Opzione Comunità non disponibile"
-#: src/Module/Conversation/Community.php:228
+#: src/Module/Conversation/Community.php:195
msgid "Not available."
msgstr "Non disponibile."
-#: src/Module/Conversation/Network.php:175
-msgid "No such group"
-msgstr "Nessun gruppo"
+#: src/Module/Conversation/Network.php:218
+msgid "No such circle"
+msgstr ""
-#: src/Module/Conversation/Network.php:179
+#: src/Module/Conversation/Network.php:222
#, php-format
-msgid "Group: %s"
-msgstr "Gruppo: %s"
-
-#: src/Module/Conversation/Network.php:257
-msgid "Latest Activity"
-msgstr "Ultima Attività"
-
-#: src/Module/Conversation/Network.php:260
-msgid "Sort by latest activity"
-msgstr "Ordina per ultima attività"
-
-#: src/Module/Conversation/Network.php:265
-msgid "Latest Posts"
-msgstr "Ultimi Messaggi"
-
-#: src/Module/Conversation/Network.php:268
-msgid "Sort by post received date"
-msgstr "Ordina per data di ricezione del messaggio"
-
-#: src/Module/Conversation/Network.php:273
-msgid "Latest Creation"
+msgid "Circle: %s"
msgstr ""
-#: src/Module/Conversation/Network.php:276
-msgid "Sort by post creation date"
+#: src/Module/Conversation/Network.php:317
+msgid "Network feed not available."
msgstr ""
-#: src/Module/Conversation/Network.php:281
-#: src/Module/Settings/Profile/Index.php:235
-msgid "Personal"
-msgstr "Personale"
+#: src/Module/Conversation/Timeline.php:158
+msgid "Own Contacts"
+msgstr "Propri Contatti"
-#: src/Module/Conversation/Network.php:284
-msgid "Posts that mention or involve you"
-msgstr "Messaggi che ti citano o coinvolgono"
+#: src/Module/Conversation/Timeline.php:162
+msgid "Include"
+msgstr "Includi"
-#: src/Module/Conversation/Network.php:289 src/Object/Post.php:357
-msgid "Starred"
-msgstr "Preferiti"
-
-#: src/Module/Conversation/Network.php:292
-msgid "Favourite Posts"
-msgstr "Messaggi preferiti"
+#: src/Module/Conversation/Timeline.php:163
+msgid "Hide"
+msgstr "Nascondi"
#: src/Module/Credits.php:44
msgid "Credits"
@@ -6708,7 +7002,7 @@ msgid "Twitter Source / Tweet URL (requires API key)"
msgstr "Sorgente Twitter / URL Tweet (richiede chiave API)"
#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47
-#: src/Module/Settings/Profile/Index.php:144
+#: 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"
@@ -6837,138 +7131,58 @@ msgstr "Suggerisci amici"
msgid "Suggest a friend for %s"
msgstr "Suggerisci un amico a %s"
-#: src/Module/Friendica.php:64
+#: src/Module/Friendica.php:82
msgid "Installed addons/apps:"
msgstr "Componenti aggiuntivi/applicazioni installate:"
-#: src/Module/Friendica.php:69
+#: src/Module/Friendica.php:87
msgid "No installed addons/apps"
msgstr "Nessun componente aggiuntivo/applicazione installata"
-#: src/Module/Friendica.php:74
+#: 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:81
+#: 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: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 "Motivazione del blocco"
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:104
msgid "Download this list in CSV format"
msgstr ""
-#: src/Module/Friendica.php:100
+#: 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:105
+#: 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:106
+#: src/Module/Friendica.php:124
msgid "Bug reports and issues: please visit"
msgstr "Segnalazioni di bug e problemi: visita"
-#: src/Module/Friendica.php:106
+#: src/Module/Friendica.php:124
msgid "the bugtracker at github"
msgstr "il bugtracker su github"
-#: src/Module/Friendica.php:107
+#: 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:56
-msgid "Could not create group."
-msgstr "Impossibile creare il gruppo."
-
-#: src/Module/Group.php:67 src/Module/Group.php:213 src/Module/Group.php:237
-msgid "Group not found."
-msgstr "Gruppo non trovato."
-
-#: src/Module/Group.php:73
-msgid "Group name was not changed."
-msgstr "Il nome del gruppo non è stato cambiato."
-
-#: src/Module/Group.php:91
-msgid "Unknown group."
-msgstr "Gruppo sconosciuto."
-
-#: src/Module/Group.php:116
-msgid "Unable to add the contact to the group."
-msgstr "Impossibile aggiungere il contatto al gruppo."
-
-#: src/Module/Group.php:119
-msgid "Contact successfully added to group."
-msgstr "Contatto aggiunto con successo al gruppo."
-
-#: src/Module/Group.php:123
-msgid "Unable to remove the contact from the group."
-msgstr "Impossibile rimuovere il contatto dal gruppo."
-
-#: src/Module/Group.php:126
-msgid "Contact successfully removed from group."
-msgstr "Contatto rimosso con successo dal gruppo."
-
-#: src/Module/Group.php:130
-msgid "Bad request."
-msgstr "Richiesta sbagliata."
-
-#: src/Module/Group.php:169
-msgid "Save Group"
-msgstr "Salva gruppo"
-
-#: src/Module/Group.php:170
-msgid "Filter"
-msgstr "Filtro"
-
-#: src/Module/Group.php:176
-msgid "Create a group of contacts/friends."
-msgstr "Crea un gruppo di amici/contatti."
-
-#: src/Module/Group.php:218
-msgid "Unable to remove group."
-msgstr "Impossibile rimuovere il gruppo."
-
-#: src/Module/Group.php:269
-msgid "Delete Group"
-msgstr "Elimina Gruppo"
-
-#: src/Module/Group.php:279
-msgid "Edit Group Name"
-msgstr "Modifica Nome Gruppo"
-
-#: src/Module/Group.php:289
-msgid "Members"
-msgstr "Membri"
-
-#: src/Module/Group.php:292
-msgid "Group is empty"
-msgstr "Il gruppo è vuoto"
-
-#: src/Module/Group.php:305
-msgid "Remove contact from group"
-msgstr "Rimuovi il contatto dal gruppo"
-
-#: src/Module/Group.php:326
-msgid "Click on a contact to add or remove."
-msgstr "Clicca su un contatto per aggiungerlo o rimuoverlo."
-
-#: src/Module/Group.php:340
-msgid "Add contact to group"
-msgstr "Aggiungi il contatto al gruppo"
-
#: src/Module/HCard.php:45
msgid "No profile"
msgstr "Nessun profilo"
@@ -7261,30 +7475,26 @@ msgstr "Componi un nuovo messaggio"
msgid "Visibility"
msgstr "Visibilità"
-#: src/Module/Item/Compose.php:201
+#: src/Module/Item/Compose.php:203
msgid "Clear the location"
msgstr "Rimuovi la posizione"
-#: src/Module/Item/Compose.php:202
+#: 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:203
+#: 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/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/Display.php:136 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/Item/Feed.php:86
msgid "The feed for this item is unavailable."
msgstr "Il flusso per questo oggetto non è disponibile."
@@ -7340,20 +7550,13 @@ msgstr "Il file supera la dimensione massima di %s"
msgid "File upload failed."
msgstr "Caricamento del file non riuscito."
-#: src/Module/Media/Photo/Upload.php:153 src/Module/Media/Photo/Upload.php:154
+#: 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:187 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/Media/Photo/Upload.php:205 src/Module/Profile/Photos.php:243
+#: 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."
@@ -7386,41 +7589,41 @@ msgstr "Eliminato"
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:491
+#: 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:498
+#: 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:505
-msgid "Public Forum"
-msgstr "Forum Pubblico"
+#: 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:512
+#: 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 Forum"
-msgstr "Forum Privato"
+msgid "Private Group"
+msgstr ""
-#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:463
+#: 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:470
+#: 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:477
+#: 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:484
-msgid "Community Forum"
-msgstr "Community Forum"
+#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485
+msgid "Community Group"
+msgstr ""
#: src/Module/Moderation/BaseUsers.php:130
msgid "Relay"
@@ -7477,6 +7680,7 @@ 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"
@@ -7552,6 +7756,8 @@ 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"
@@ -7838,6 +8044,238 @@ msgstr ""
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"
@@ -7847,8 +8285,8 @@ msgid "Automatic Follower Account"
msgstr "Account Follower Automatico"
#: src/Module/Moderation/Summary.php:55
-msgid "Public Forum Account"
-msgstr "Account Forum Publico"
+msgid "Public Group Account"
+msgstr ""
#: src/Module/Moderation/Summary.php:56
msgid "Automatic Friend Account"
@@ -7859,8 +8297,8 @@ msgid "Blog Account"
msgstr "Account Blog"
#: src/Module/Moderation/Summary.php:58
-msgid "Private Forum Account"
-msgstr "Account Forum Privato"
+msgid "Private Group Account"
+msgstr ""
#: src/Module/Moderation/Summary.php:78
msgid "Registered users"
@@ -8165,11 +8603,11 @@ msgstr "Notifiche bacheca"
msgid "Show unread"
msgstr "Mostra non letti"
-#: src/Module/Notifications/Ping.php:245
+#: src/Module/Notifications/Ping.php:246
msgid "{0} requested registration"
msgstr "{0} chiede la registrazione"
-#: src/Module/Notifications/Ping.php:254
+#: src/Module/Notifications/Ping.php:255
#, php-format
msgid "{0} and %d others requested registration"
msgstr "{0} e %d altre registrazioni richieste"
@@ -8188,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:77
+#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78
msgid "Incomplete request data"
msgstr "Dati richiesta incompleti"
@@ -8199,11 +8637,11 @@ 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:104
+#: src/Module/OAuth/Token.php:108
msgid "Unsupported or missing grant type"
msgstr "Tipo di concessione mancante o non supportato"
@@ -8328,21 +8766,21 @@ msgstr ""
msgid "Attributed To: %s
"
msgstr ""
-#: src/Module/Photo.php:129
+#: src/Module/Photo.php:130
msgid "The Photo is not available."
msgstr ""
-#: src/Module/Photo.php:154
+#: 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:191
+#: src/Module/Photo.php:192
#, php-format
msgid "Invalid external resource with url %s."
msgstr ""
-#: src/Module/Photo.php:193
+#: src/Module/Photo.php:194
#, php-format
msgid "Invalid photo with id %s."
msgstr "Foto con id %s non valida."
@@ -8383,7 +8821,7 @@ msgstr "Rimuovi il tag"
msgid "Select a tag to remove: "
msgstr "Seleziona un tag da rimuovere: "
-#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:178
+#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180
#: src/Module/Settings/TwoFactor/Trusted.php:144
msgid "Remove"
msgstr "Rimuovi"
@@ -8394,24 +8832,31 @@ msgstr "Nessun contatto."
#: 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:1032
-#: src/Protocol/OStatus.php:1007
+#: 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:1036 src/Protocol/OStatus.php:1012
+#: 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:1039 src/Protocol/OStatus.php:1016
+#: 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."
@@ -8430,7 +8875,7 @@ msgstr "Il server non può accettare il caricamento di un nuovo file in questo m
msgid "Image file is empty."
msgstr "Il file dell'immagine è vuoto."
-#: src/Module/Profile/Photos.php:376
+#: src/Module/Profile/Photos.php:356
msgid "View Album"
msgstr "Sfoglia l'album"
@@ -8445,7 +8890,7 @@ msgid ""
"class=\"btn btn-sm pull-right\">Cancel"
msgstr "Attualmente stai vedendo il tuo profilo come %s Annulla"
-#: src/Module/Profile/Profile.php:167 src/Module/Settings/Account.php:575
+#: src/Module/Profile/Profile.php:167
msgid "Full Name:"
msgstr "Nome completo:"
@@ -8466,12 +8911,12 @@ msgid "Birthday:"
msgstr "Compleanno:"
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
msgid "Age: "
msgstr "Età : "
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -8480,13 +8925,13 @@ msgstr[1] "%d anni"
msgstr[2] "%d anni"
#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:246
+#: src/Module/Settings/Profile/Index.php:284
msgid "Description:"
msgstr "Descrizione:"
#: src/Module/Profile/Profile.php:261
-msgid "Forums:"
-msgstr "Forum:"
+msgid "Groups:"
+msgstr ""
#: src/Module/Profile/Profile.php:273
msgid "View profile as:"
@@ -8656,7 +9101,7 @@ 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:566
+#: src/Module/Settings/Account.php:567
msgid "New Password:"
msgstr "Nuova password:"
@@ -8665,7 +9110,7 @@ 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:567
+#: src/Module/Settings/Account.php:568
msgid "Confirm:"
msgstr "Conferma:"
@@ -8692,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:154
+#: 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:154
+#: 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."
@@ -8883,24 +9328,24 @@ msgid "Update Password"
msgstr ""
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: src/Module/Settings/Account.php:569
msgid "Current Password:"
msgstr "Password Attuale:"
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: 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:552
+#: 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:553
+#: src/Module/Settings/Account.php:554
msgid "Password length is limited to 72 characters."
msgstr ""
@@ -9024,99 +9469,99 @@ msgstr "Email non valida."
msgid "Cannot change to that email."
msgstr "Non puoi usare quella email."
-#: 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
+#: 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:363
+#: 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:382
+#: src/Module/Settings/Account.php:383
msgid "Importing Contacts done"
msgstr "Importazione dei Contatti riuscita"
-#: src/Module/Settings/Account.php:395
+#: 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:412
+#: 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:454
+#: src/Module/Settings/Account.php:455
msgid "Personal Page Subtypes"
msgstr "Sottotipi di Pagine Personali"
-#: src/Module/Settings/Account.php:455
-msgid "Community Forum Subtypes"
-msgstr "Sottotipi di Community Forum"
+#: src/Module/Settings/Account.php:456
+msgid "Community Group Subtypes"
+msgstr ""
-#: src/Module/Settings/Account.php:465
+#: src/Module/Settings/Account.php:466
msgid "Account for a personal profile."
msgstr "Account per profilo personale."
-#: src/Module/Settings/Account.php:472
+#: 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:479
+#: 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:486
+#: src/Module/Settings/Account.php:487
msgid "Account for community discussions."
msgstr "Account per discussioni comunitarie."
-#: src/Module/Settings/Account.php:493
+#: 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:500
+#: 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:507
+#: 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:514
+#: 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:519
-msgid "Private Forum [Experimental]"
-msgstr "Forum privato [sperimentale]"
+#: src/Module/Settings/Account.php:520
+msgid "Private Group [Experimental]"
+msgstr ""
-#: src/Module/Settings/Account.php:521
+#: 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:530
+#: src/Module/Settings/Account.php:531
msgid "OpenID:"
msgstr "OpenID:"
-#: src/Module/Settings/Account.php:530
+#: 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:538
+#: 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:538
+#: src/Module/Settings/Account.php:539
#, php-format
msgid ""
"Your profile will be published in this node's local "
@@ -9124,89 +9569,94 @@ msgid ""
" system settings."
msgstr "Il tuo profilo verrà pubblicato nella directory locale di questo nodo. I dettagli del tuo profilo potrebbero essere visibili pubblicamente a seconda delle impostazioni di sistema."
-#: src/Module/Settings/Account.php:544
+#: 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:557
+#: src/Module/Settings/Account.php:558
msgid "Account Settings"
msgstr "Impostazioni account"
-#: src/Module/Settings/Account.php:558
+#: 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:565
+#: src/Module/Settings/Account.php:566
msgid "Password Settings"
msgstr "Impostazioni password"
-#: src/Module/Settings/Account.php:567
+#: 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:569
+#: src/Module/Settings/Account.php:570
msgid "Password:"
msgstr "Password:"
-#: 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 "La tua password attuale per confermare il cambio di indirizzo email"
-#: src/Module/Settings/Account.php:572
+#: src/Module/Settings/Account.php:573
msgid "Delete OpenID URL"
msgstr "Elimina URL OpenID"
-#: src/Module/Settings/Account.php:574
+#: 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:577
+#: src/Module/Settings/Account.php:578
msgid "Your Timezone:"
msgstr "Il tuo fuso orario:"
-#: src/Module/Settings/Account.php:578
+#: src/Module/Settings/Account.php:579
msgid "Your Language:"
msgstr "La tua lingua:"
-#: 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 "Imposta la lingua che sarà usata per mostrarti l'interfaccia di Friendica e per inviarti le email"
-#: src/Module/Settings/Account.php:579
+#: src/Module/Settings/Account.php:580
msgid "Default Post Location:"
msgstr "Località predefinita:"
-#: src/Module/Settings/Account.php:580
+#: src/Module/Settings/Account.php:581
msgid "Use Browser Location:"
msgstr "Usa la località rilevata dal browser:"
-#: src/Module/Settings/Account.php:582
+#: src/Module/Settings/Account.php:583
msgid "Security and Privacy Settings"
msgstr "Impostazioni di sicurezza e privacy"
-#: src/Module/Settings/Account.php:584
+#: 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: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 "(per prevenire lo spam)"
-#: src/Module/Settings/Account.php:586
+#: 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: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 "
@@ -9214,43 +9664,43 @@ msgid ""
"indexed or not."
msgstr "Attiva questa impostazione se vuoi che gli altri ti trovino facilmente e ti seguano. Il tuo profilo sarà ricercabile da sistemi remoti. Questa impostazione determina anche se Friendica informerà i motori di ricerca che il tuo profilo sia indicizzabile o meno."
-#: src/Module/Settings/Account.php:587
+#: 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: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 "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:588
+#: src/Module/Settings/Account.php:589
msgid "Hide your public content from anonymous viewers"
msgstr ""
-#: src/Module/Settings/Account.php:588
+#: 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:589
+#: src/Module/Settings/Account.php:590
msgid "Make public posts unlisted"
msgstr "Rendi messaggi pubblici non elencati"
-#: 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 "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:590
+#: src/Module/Settings/Account.php:591
msgid "Make all posted pictures accessible"
msgstr "Rendi tutte le immagini pubblicate accessibili"
-#: 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 "
@@ -9258,233 +9708,241 @@ msgid ""
"public on your photo albums though."
msgstr "Questa opzione rende ogni immagine pubblicata accessibile attraverso il collegamento diretto. Questo è una soluzione alternativa al problema che la maggior parte delle altre reti non gestiscono i permessi sulle immagini. Le immagini non pubbliche non saranno visibili al pubblico nei tuoi album fotografici comunque."
-#: src/Module/Settings/Account.php:591
+#: 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: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 "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:592
+#: 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:592
+#: 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:593
+#: 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: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 "Gli utenti sulla rete Friendica possono inviarti messaggi privati anche se non sono nella tua lista di contatti."
-#: src/Module/Settings/Account.php:594
+#: 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:600
+#: src/Module/Settings/Account.php:602
msgid "Expiration settings"
msgstr "Impostazioni di scadenza"
-#: src/Module/Settings/Account.php:601
+#: 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:601
+#: 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:602
+#: src/Module/Settings/Account.php:604
msgid "Expire posts"
msgstr "Fai scadere i messaggi"
-#: src/Module/Settings/Account.php:602
+#: 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:603
+#: src/Module/Settings/Account.php:605
msgid "Expire personal notes"
msgstr "Fai scadere le note personali"
-#: 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 "Quando attivato, le note personali sulla tua pagina del profilo scadranno."
-#: src/Module/Settings/Account.php:604
+#: src/Module/Settings/Account.php:606
msgid "Expire starred posts"
msgstr "Fai scadere i messaggi speciali"
-#: 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 "Inserire i messaggi negli speciali evita di farli scadere. Questo comportamento viene scavalcato da questa impostazione."
-#: src/Module/Settings/Account.php:605
+#: 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: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 "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:608
+#: src/Module/Settings/Account.php:610
msgid "Notification Settings"
msgstr "Impostazioni notifiche"
-#: src/Module/Settings/Account.php:609
+#: src/Module/Settings/Account.php:611
msgid "Send a notification email when:"
msgstr "Invia una mail di notifica quando:"
-#: src/Module/Settings/Account.php:610
+#: src/Module/Settings/Account.php:612
msgid "You receive an introduction"
msgstr "Ricevi una presentazione"
-#: src/Module/Settings/Account.php:611
+#: src/Module/Settings/Account.php:613
msgid "Your introductions are confirmed"
msgstr "Le tue presentazioni sono confermate"
-#: src/Module/Settings/Account.php:612
+#: 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:613
+#: 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:614
+#: src/Module/Settings/Account.php:616
msgid "You receive a private message"
msgstr "Ricevi un messaggio privato"
-#: src/Module/Settings/Account.php:615
+#: src/Module/Settings/Account.php:617
msgid "You receive a friend suggestion"
msgstr "Hai ricevuto un suggerimento di amicizia"
-#: src/Module/Settings/Account.php:616
+#: 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:618
+#: src/Module/Settings/Account.php:620
msgid "Create a desktop notification when:"
msgstr "Crea una notifica desktop quando:"
-#: src/Module/Settings/Account.php:619
+#: src/Module/Settings/Account.php:621
msgid "Someone tagged you"
msgstr ""
-#: src/Module/Settings/Account.php:620
+#: src/Module/Settings/Account.php:622
msgid "Someone directly commented on your post"
msgstr ""
-#: src/Module/Settings/Account.php:621
+#: 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:621 src/Module/Settings/Account.php:622
+#: 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:622
+#: src/Module/Settings/Account.php:624
msgid "Someone shared your content"
msgstr "Qualcuno ha condiviso un tuo contenuto"
-#: src/Module/Settings/Account.php:623
+#: src/Module/Settings/Account.php:625
msgid "Someone commented in your thread"
msgstr ""
-#: src/Module/Settings/Account.php:624
+#: src/Module/Settings/Account.php:626
msgid "Someone commented in a thread where you commented"
msgstr ""
-#: src/Module/Settings/Account.php:625
+#: src/Module/Settings/Account.php:627
msgid "Someone commented in a thread where you interacted"
msgstr ""
-#: src/Module/Settings/Account.php:627
+#: src/Module/Settings/Account.php:629
msgid "Activate desktop notifications"
msgstr "Attiva notifiche desktop"
-#: src/Module/Settings/Account.php:627
+#: 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:631
+#: src/Module/Settings/Account.php:633
msgid "Text-only notification emails"
msgstr "Email di notifica in solo testo"
-#: src/Module/Settings/Account.php:633
+#: 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:637
+#: src/Module/Settings/Account.php:639
msgid "Show detailled notifications"
msgstr "Mostra notifiche dettagliate"
-#: src/Module/Settings/Account.php:639
+#: 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:643
+#: src/Module/Settings/Account.php:645
msgid "Show notifications of ignored contacts"
msgstr "Mostra notifiche dai contatti ignorati"
-#: src/Module/Settings/Account.php:645
+#: 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:648
+#: src/Module/Settings/Account.php:650
msgid "Advanced Account/Page Type Settings"
msgstr "Impostazioni avanzate Account/Tipo di pagina"
-#: src/Module/Settings/Account.php:649
+#: 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:652
+#: src/Module/Settings/Account.php:654
msgid "Import Contacts"
msgstr "Importa Contatti"
-#: src/Module/Settings/Account.php:653
+#: 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:654
+#: src/Module/Settings/Account.php:656
msgid "Upload File"
msgstr "Carica File"
-#: src/Module/Settings/Account.php:657
+#: src/Module/Settings/Account.php:659
msgid "Relocate"
msgstr "Trasloca"
-#: src/Module/Settings/Account.php:658
+#: 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:659
+#: src/Module/Settings/Account.php:661
msgid "Resend relocate message to contacts"
msgstr "Invia nuovamente il messaggio di trasloco ai contatti"
@@ -9693,224 +10151,250 @@ msgstr "Sposta nella cartella"
msgid "Move to folder:"
msgstr "Sposta nella cartella:"
-#: src/Module/Settings/Delegation.php:52
+#: src/Module/Settings/Delegation.php:54
msgid "Delegation successfully granted."
msgstr "Delega concessa con successo."
-#: src/Module/Settings/Delegation.php:54
+#: 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:58
+#: src/Module/Settings/Delegation.php:60
msgid "Delegation successfully revoked."
msgstr "Delega revocata con successo."
-#: src/Module/Settings/Delegation.php:80
-#: src/Module/Settings/Delegation.php:102
+#: 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:94
+#: src/Module/Settings/Delegation.php:96
msgid "Delegate user not found."
msgstr "Utente delegato non trovato."
-#: src/Module/Settings/Delegation.php:142
+#: src/Module/Settings/Delegation.php:144
msgid "No parent user"
msgstr "Nessun utente principale"
-#: src/Module/Settings/Delegation.php:153
-#: src/Module/Settings/Delegation.php:164
+#: src/Module/Settings/Delegation.php:155
+#: src/Module/Settings/Delegation.php:166
msgid "Parent User"
msgstr "Utente Principale"
-#: src/Module/Settings/Delegation.php:161
+#: src/Module/Settings/Delegation.php:163
msgid "Additional Accounts"
msgstr "Account Aggiuntivi"
-#: src/Module/Settings/Delegation.php:162
+#: 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:163
+#: src/Module/Settings/Delegation.php:165
msgid "Register an additional account"
msgstr "Registra un account aggiuntivo"
-#: src/Module/Settings/Delegation.php:167
+#: 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:171
+#: src/Module/Settings/Delegation.php:173
msgid "Delegates"
msgstr "Delegati"
-#: src/Module/Settings/Delegation.php:173
+#: 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:174
+#: src/Module/Settings/Delegation.php:176
msgid "Existing Page Delegates"
msgstr "Delegati Pagina Esistenti"
-#: src/Module/Settings/Delegation.php:176
+#: src/Module/Settings/Delegation.php:178
msgid "Potential Delegates"
msgstr "Delegati Potenziali"
-#: src/Module/Settings/Delegation.php:179
+#: src/Module/Settings/Delegation.php:181
msgid "Add"
msgstr "Aggiungi"
-#: src/Module/Settings/Delegation.php:180
+#: src/Module/Settings/Delegation.php:182
msgid "No entries."
msgstr "Nessuna voce."
-#: src/Module/Settings/Display.php:137
+#: 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:177
+#: src/Module/Settings/Display.php:186
#, php-format
msgid "%s - (Unsupported)"
msgstr "%s - (Non supportato)"
-#: src/Module/Settings/Display.php:212
+#: src/Module/Settings/Display.php:221
msgid "No preview"
msgstr ""
-#: src/Module/Settings/Display.php:213
+#: src/Module/Settings/Display.php:222
msgid "No image"
msgstr ""
-#: src/Module/Settings/Display.php:214
+#: src/Module/Settings/Display.php:223
msgid "Small Image"
msgstr ""
-#: src/Module/Settings/Display.php:215
+#: src/Module/Settings/Display.php:224
msgid "Large Image"
msgstr ""
-#: src/Module/Settings/Display.php:246
+#: src/Module/Settings/Display.php:259
msgid "Display Settings"
msgstr "Impostazioni Grafiche"
-#: src/Module/Settings/Display.php:248
+#: src/Module/Settings/Display.php:261
msgid "General Theme Settings"
msgstr "Opzioni Generali Tema"
-#: src/Module/Settings/Display.php:249
+#: src/Module/Settings/Display.php:262
msgid "Custom Theme Settings"
msgstr "Opzioni Personalizzate Tema"
-#: src/Module/Settings/Display.php:250
+#: src/Module/Settings/Display.php:263
msgid "Content Settings"
msgstr "Opzioni Contenuto"
-#: src/Module/Settings/Display.php:251 view/theme/duepuntozero/config.php:86
+#: 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:257
+#: src/Module/Settings/Display.php:265
+msgid "Timelines"
+msgstr ""
+
+#: src/Module/Settings/Display.php:272
msgid "Display Theme:"
msgstr "Tema:"
-#: src/Module/Settings/Display.php:258
+#: src/Module/Settings/Display.php:273
msgid "Mobile Theme:"
msgstr "Tema mobile:"
-#: src/Module/Settings/Display.php:261
+#: 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:261 src/Module/Settings/Display.php:262
+#: 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:262
+#: 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:263
+#: src/Module/Settings/Display.php:278
msgid "Update browser every xx seconds"
msgstr "Aggiorna il browser ogni x secondi"
-#: src/Module/Settings/Display.php:263
+#: 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:264
+#: src/Module/Settings/Display.php:279
msgid "Display emoticons"
msgstr ""
-#: src/Module/Settings/Display.php:264
+#: src/Module/Settings/Display.php:279
msgid "When enabled, emoticons are replaced with matching symbols."
msgstr ""
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:280
msgid "Infinite scroll"
msgstr "Scroll infinito"
-#: src/Module/Settings/Display.php:265
+#: 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:266
+#: src/Module/Settings/Display.php:281
msgid "Enable Smart Threading"
msgstr ""
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:281
msgid "Enable the automatic suppression of extraneous thread indentation."
msgstr ""
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:282
msgid "Display the Dislike feature"
msgstr ""
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:282
msgid ""
"Display the Dislike button and dislike reactions on posts and comments."
msgstr ""
-#: src/Module/Settings/Display.php:268
+#: src/Module/Settings/Display.php:283
msgid "Display the resharer"
msgstr "Mostra chi ha condiviso"
-#: src/Module/Settings/Display.php:268
+#: 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:269
+#: src/Module/Settings/Display.php:284
msgid "Stay local"
msgstr "Rimani in locale"
-#: src/Module/Settings/Display.php:269
+#: 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:270
+#: src/Module/Settings/Display.php:285
msgid "Link preview mode"
msgstr ""
-#: src/Module/Settings/Display.php:270
+#: 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:272
+#: 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/Display.php:273
+#: 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 "Funzionalità aggiuntive"
@@ -9923,155 +10407,151 @@ msgstr "Applicazioni Collegate"
msgid "Remove authorization"
msgstr "Rimuovi l'autorizzazione"
-#: src/Module/Settings/Profile/Index.php:84
-msgid "Profile Name is required."
-msgstr "Il nome profilo è obbligatorio ."
+#: src/Module/Settings/Profile/Index.php:116
+msgid "Display Name is required."
+msgstr ""
-#: src/Module/Settings/Profile/Index.php:134
+#: 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:175
-#: src/Module/Settings/Profile/Index.php:195
+#: src/Module/Settings/Profile/Index.php:205
+#: src/Module/Settings/Profile/Index.php:226
msgid "Label:"
msgstr "Etichetta:"
-#: src/Module/Settings/Profile/Index.php:176
-#: src/Module/Settings/Profile/Index.php:196
+#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:227
msgid "Value:"
msgstr "Valore:"
-#: src/Module/Settings/Profile/Index.php:186
-#: src/Module/Settings/Profile/Index.php:206
+#: 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:187
-#: src/Module/Settings/Profile/Index.php:207
+#: 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:193
+#: 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:216
+#: 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:218
+#: 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:228
+#: src/Module/Settings/Profile/Index.php:255
msgid "Profile Actions"
msgstr "Azioni Profilo"
-#: src/Module/Settings/Profile/Index.php:229
+#: src/Module/Settings/Profile/Index.php:256
msgid "Edit Profile Details"
msgstr "Modifica i dettagli del profilo"
-#: src/Module/Settings/Profile/Index.php:231
+#: src/Module/Settings/Profile/Index.php:258
msgid "Change Profile Photo"
msgstr "Cambia la foto del profilo"
-#: src/Module/Settings/Profile/Index.php:236
+#: src/Module/Settings/Profile/Index.php:261
msgid "Profile picture"
msgstr "Immagine del profilo"
-#: src/Module/Settings/Profile/Index.php:237
+#: src/Module/Settings/Profile/Index.php:262
msgid "Location"
msgstr "Posizione"
-#: src/Module/Settings/Profile/Index.php:238 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 "Varie"
-#: src/Module/Settings/Profile/Index.php:239
+#: src/Module/Settings/Profile/Index.php:264
msgid "Custom Profile Fields"
msgstr "Campi Profilo Personalizzati"
-#: src/Module/Settings/Profile/Index.php:241 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:245
-msgid "Display name:"
-msgstr "Nome visualizzato:"
-
-#: src/Module/Settings/Profile/Index.php:248
-msgid "Street Address:"
-msgstr "Indirizzo (via/piazza):"
-
-#: src/Module/Settings/Profile/Index.php:249
-msgid "Locality/City:"
-msgstr "Località:"
-
-#: src/Module/Settings/Profile/Index.php:250
-msgid "Region/State:"
-msgstr "Regione/Stato:"
-
-#: src/Module/Settings/Profile/Index.php:251
-msgid "Postal/Zip Code:"
-msgstr "CAP:"
-
-#: src/Module/Settings/Profile/Index.php:252
-msgid "Country:"
-msgstr "Nazione:"
-
-#: src/Module/Settings/Profile/Index.php:254
-msgid "XMPP (Jabber) address:"
-msgstr "Indirizzo XMPP (Jabber):"
-
-#: 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 "Homepage:"
-
-#: src/Module/Settings/Profile/Index.php:257
-msgid "Public Keywords:"
-msgstr "Parole chiave visibili a tutti:"
-
-#: src/Module/Settings/Profile/Index.php:257
-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:258
-msgid "Private Keywords:"
-msgstr "Parole chiave private:"
-
-#: src/Module/Settings/Profile/Index.php:258
-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:259
+#: src/Module/Settings/Profile/Index.php:266
#, php-format
msgid ""
"Custom fields appear on your profile page.
\n"
"\t\t\t\tYou can use BBCodes in the field values.
\n"
"\t\t\t\tReorder by dragging the field title.
\n"
"\t\t\t\tEmpty the label field to remove a custom field.
\n"
-"\t\t\t\tNon-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\tPuoi utilizzare i BBCode nei campi personalizzati.
\n\t\t\t\tRiordina trascinando i titoli dei campi.
\n\t\t\t\tSvuota le etichette dei campi per rimuovere il campo personalizzato.
\n\t\t\t\tCampi personalizzati non pubblici possono essere visti solo da contatti Friendica selezionati o da contatti Friendica nei gruppi selezionati.
"
+"\t\t\t\tNon-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 "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
@@ -10183,6 +10663,42 @@ msgstr "Questo comando rimuoverà completamente il tuo account. Una volta rimoss
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
@@ -10504,20 +11020,41 @@ msgid ""
" e.g. Mastodon."
msgstr "Esporta la lista degli account che segui come file CSV. Compatibile per esempio con 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 "Not Found"
+msgid ""
+"This node has blocked the top-level author or the author of the shared post."
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"
-"
"
+"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
@@ -10529,7 +11066,7 @@ msgstr "Traccia dello stack:"
msgid "Exception thrown in %s:%d"
msgstr "Eccezione lanciata in %s:%d"
-#: src/Module/Tos.php:57 src/Module/Tos.php:106
+#: 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"
@@ -10542,14 +11079,14 @@ 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:107
+#: 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:108
+#: 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"
@@ -10560,11 +11097,11 @@ msgid ""
"from the nodes of the communication partners."
msgstr ""
-#: src/Module/Tos.php:62 src/Module/Tos.php:105
+#: src/Module/Tos.php:63 src/Module/Tos.php:106
msgid "Privacy Statement"
msgstr "Note sulla Privacy"
-#: src/Module/Tos.php:102
+#: src/Module/Tos.php:103
msgid "Rules"
msgstr ""
@@ -10572,6 +11109,10 @@ msgstr ""
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."
@@ -10620,11 +11161,11 @@ msgstr "Errore! Nessuna informazione di versione nel file! Potrebbe non essere u
msgid "User '%s' already exists on this server!"
msgstr "L'utente '%s' esiste già su questo server!"
-#: src/Module/User/Import.php:263
+#: src/Module/User/Import.php:267
msgid "User creation error"
msgstr "Errore creando l'utente"
-#: src/Module/User/Import.php:312
+#: src/Module/User/Import.php:316
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
@@ -10632,11 +11173,11 @@ msgstr[0] "%d contatto non importato"
msgstr[1] "%d contatti non importati"
msgstr[2] "%d contatti non importati"
-#: src/Module/User/Import.php:361
+#: 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:412
+#: 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"
@@ -10770,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?"
@@ -11285,199 +11826,208 @@ 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:135
+#: src/Object/Post.php:138
msgid "Private Message"
msgstr "Messaggio privato"
-#: 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:181
msgid "This entry was edited"
msgstr "Questa voce è stata modificata"
-#: src/Object/Post.php:206
+#: 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 "Modifica"
-#: src/Object/Post.php:248
+#: src/Object/Post.php:261
msgid "Delete globally"
msgstr "Rimuovi globalmente"
-#: src/Object/Post.php:248
+#: src/Object/Post.php:261
msgid "Remove locally"
msgstr "Rimuovi localmente"
-#: src/Object/Post.php:265
+#: src/Object/Post.php:268
#, php-format
msgid "Block %s"
msgstr "Blocca %s"
-#: src/Object/Post.php:270
+#: src/Object/Post.php:273
#, php-format
msgid "Ignore %s"
msgstr ""
-#: src/Object/Post.php:275
+#: 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:310
+#: src/Object/Post.php:333
msgid "I will attend"
msgstr "Parteciperò"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I will not attend"
msgstr "Non parteciperò"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I might attend"
msgstr "Forse parteciperò"
-#: src/Object/Post.php:340
+#: src/Object/Post.php:363
msgid "Ignore thread"
msgstr "Ignora la conversazione"
-#: src/Object/Post.php:341
+#: src/Object/Post.php:364
msgid "Unignore thread"
msgstr "Non ignorare la conversazione"
-#: src/Object/Post.php:342
+#: src/Object/Post.php:365
msgid "Toggle ignore status"
msgstr "Inverti stato ignora"
-#: src/Object/Post.php:352
+#: src/Object/Post.php:375
msgid "Add star"
msgstr "Aggiungi a preferiti"
-#: src/Object/Post.php:353
+#: src/Object/Post.php:376
msgid "Remove star"
msgstr "Rimuovi da preferiti"
-#: src/Object/Post.php:354
+#: src/Object/Post.php:377
msgid "Toggle star status"
msgstr "Inverti stato preferito"
-#: src/Object/Post.php:365
+#: src/Object/Post.php:388
msgid "Pin"
msgstr "Metti in evidenza"
-#: src/Object/Post.php:366
+#: src/Object/Post.php:389
msgid "Unpin"
msgstr "Togli da in evidenza"
-#: src/Object/Post.php:367
+#: src/Object/Post.php:390
msgid "Toggle pin status"
msgstr "Inverti stato in evidenza"
-#: src/Object/Post.php:370
+#: src/Object/Post.php:393
msgid "Pinned"
msgstr "In evidenza"
-#: src/Object/Post.php:375
+#: src/Object/Post.php:398
msgid "Add tag"
msgstr "Aggiungi tag"
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote share this"
msgstr "Condividi citando questo"
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote Share"
msgstr "Cita e Condividi"
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare this"
msgstr "Ricondividi questo"
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare"
msgstr "Ricondividi"
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Cancel your Reshare"
msgstr "Annulla la tua Ricondivisione"
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Unshare"
msgstr "Non ricondividere più"
-#: src/Object/Post.php:443
+#: src/Object/Post.php:466
#, php-format
msgid "%s (Received %s)"
msgstr "%s (Ricevuto %s)"
-#: src/Object/Post.php:448
+#: src/Object/Post.php:472
msgid "Comment this item on your system"
msgstr "Commenta questo oggetto sul tuo sistema"
-#: src/Object/Post.php:448
+#: src/Object/Post.php:472
msgid "Remote comment"
msgstr "Commento remoto"
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via ..."
msgstr ""
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via external services"
msgstr ""
-#: src/Object/Post.php:498
+#: src/Object/Post.php:523
msgid "to"
msgstr "a"
-#: src/Object/Post.php:499
+#: src/Object/Post.php:524
msgid "via"
msgstr "via"
-#: src/Object/Post.php:500
+#: src/Object/Post.php:525
msgid "Wall-to-Wall"
msgstr "Da bacheca a bacheca"
-#: src/Object/Post.php:501
+#: src/Object/Post.php:526
msgid "via Wall-To-Wall:"
msgstr "da bacheca a bacheca"
-#: src/Object/Post.php:545
+#: src/Object/Post.php:573
#, php-format
msgid "Reply to %s"
msgstr "Rispondi a %s"
-#: src/Object/Post.php:548
+#: src/Object/Post.php:576
msgid "More"
msgstr "Mostra altro"
-#: src/Object/Post.php:566
+#: src/Object/Post.php:595
msgid "Notifier task is pending"
msgstr "L'attività di notifica è in attesa"
-#: src/Object/Post.php:567
+#: src/Object/Post.php:596
msgid "Delivery to remote servers is pending"
msgstr "La consegna ai server remoti è in attesa"
-#: src/Object/Post.php:568
+#: src/Object/Post.php:597
msgid "Delivery to remote servers is underway"
msgstr "La consegna ai server remoti è in corso"
-#: src/Object/Post.php:569
+#: 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:570
+#: src/Object/Post.php:599
msgid "Delivery to remote servers is done"
msgstr "La consegna ai server remoti è completata"
-#: src/Object/Post.php:590
+#: src/Object/Post.php:619
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
@@ -11485,50 +12035,50 @@ msgstr[0] "%d commento"
msgstr[1] "%d commenti"
msgstr[2] "%d commenti"
-#: src/Object/Post.php:591
+#: src/Object/Post.php:620
msgid "Show more"
msgstr "Mostra di più"
-#: src/Object/Post.php:592
+#: src/Object/Post.php:621
msgid "Show fewer"
msgstr "Mostra di meno"
-#: src/Object/Post.php:628
+#: src/Object/Post.php:657
#, php-format
msgid "Reshared by: %s"
msgstr ""
-#: src/Object/Post.php:633
+#: src/Object/Post.php:662
#, php-format
msgid "Viewed by: %s"
msgstr ""
-#: src/Object/Post.php:638
+#: src/Object/Post.php:667
#, php-format
msgid "Liked by: %s"
msgstr ""
-#: src/Object/Post.php:643
+#: src/Object/Post.php:672
#, php-format
msgid "Disliked by: %s"
msgstr ""
-#: src/Object/Post.php:648
+#: src/Object/Post.php:677
#, php-format
msgid "Attended by: %s"
msgstr ""
-#: src/Object/Post.php:653
+#: src/Object/Post.php:682
#, php-format
msgid "Maybe attended by: %s"
msgstr ""
-#: src/Object/Post.php:658
+#: src/Object/Post.php:687
#, php-format
msgid "Not attended by: %s"
msgstr ""
-#: src/Object/Post.php:663
+#: src/Object/Post.php:692
#, php-format
msgid "Reacted with %s by: %s"
msgstr ""
@@ -11537,21 +12087,21 @@ msgstr ""
msgid "(no subject)"
msgstr "(nessun oggetto)"
-#: src/Protocol/OStatus.php:1388
+#: src/Protocol/OStatus.php:1390
#, php-format
msgid "%s is now following %s."
msgstr "%s sta seguendo %s"
-#: src/Protocol/OStatus.php:1389
+#: src/Protocol/OStatus.php:1391
msgid "following"
msgstr "segue"
-#: src/Protocol/OStatus.php:1392
+#: src/Protocol/OStatus.php:1394
#, php-format
msgid "%s stopped following %s."
msgstr "%s ha smesso di seguire %s"
-#: src/Protocol/OStatus.php:1393
+#: src/Protocol/OStatus.php:1395
msgid "stopped following"
msgstr "tolto dai seguiti"
@@ -11909,8 +12459,8 @@ msgid "Textareas font size"
msgstr "Dimensione carattere nelle aree di testo"
#: view/theme/vier/config.php:91
-msgid "Comma separated list of helper forums"
-msgstr "Elenco separato da virgole di forum di aiuto"
+msgid "Comma separated list of helper groups"
+msgstr ""
#: view/theme/vier/config.php:131
msgid "don't show"
@@ -11928,7 +12478,7 @@ msgstr "Imposta stile"
msgid "Community Pages"
msgstr "Pagine della Comunità"
-#: view/theme/vier/config.php:139 view/theme/vier/theme.php:149
+#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148
msgid "Community Profiles"
msgstr "Profili Comunità"
@@ -11936,7 +12486,7 @@ msgstr "Profili Comunità"
msgid "Help or @NewHere ?"
msgstr "Serve aiuto? Sei nuovo?"
-#: view/theme/vier/config.php:141 view/theme/vier/theme.php:320
+#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319
msgid "Connect Services"
msgstr "Servizi Connessi"
@@ -11944,10 +12494,10 @@ msgstr "Servizi Connessi"
msgid "Find Friends"
msgstr "Trova Amici"
-#: view/theme/vier/config.php:143 view/theme/vier/theme.php:176
+#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175
msgid "Last users"
msgstr "Ultimi utenti"
-#: view/theme/vier/theme.php:235
+#: 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 cf9eb7b386..9a5c7c5fbb 100644
--- a/view/lang/it/strings.php
+++ b/view/lang/it/strings.php
@@ -288,12 +288,6 @@ $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['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).';
@@ -304,28 +298,40 @@ $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['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['event'] = 'l\'evento';
@@ -346,7 +352,6 @@ $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';
@@ -438,7 +443,6 @@ $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';
@@ -596,6 +600,8 @@ $a->strings['Sep'] = 'Set';
$a->strings['Oct'] = 'Ott';
$a->strings['Nov'] = 'Nov';
$a->strings['Dec'] = 'Dic';
+$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!';
@@ -641,9 +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['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.';
@@ -679,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';
@@ -767,7 +765,6 @@ $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,
@@ -958,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.';
@@ -1055,8 +1051,6 @@ $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.';
@@ -1131,7 +1125,6 @@ $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';
@@ -1160,6 +1153,13 @@ $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',
@@ -1176,7 +1176,6 @@ $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';
@@ -1193,7 +1192,6 @@ $a->strings['you are a fan of'] = 'sei un fan di';
$a->strings['Pending outgoing contact request'] = 'Richiesta di contatto in uscita in sospeso';
$a->strings['Pending incoming contact request'] = 'Richiesta di contatto in arrivo in sospeso';
$a->strings['Visit %s\'s profile [%s]'] = 'Visita il profilo di %s [%s]';
-$a->strings['Contact not found.'] = 'Contatto non trovato.';
$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';
@@ -1201,7 +1199,6 @@ $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)'] = [
@@ -1299,7 +1296,6 @@ $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['Bad Request.'] = 'Richiesta Errata.';
-$a->strings['Contact is deleted.'] = 'Contatto eliminato.';
$a->strings['Yes'] = 'Si';
$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.';
@@ -1307,27 +1303,13 @@ $a->strings['Unfollowing is currently not supported by your network.'] = 'Smette
$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['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['Community option not available.'] = 'Opzione Comunità non disponibile';
+$a->strings['Not available.'] = 'Non disponibile.';
$a->strings['Own Contacts'] = 'Propri Contatti';
$a->strings['Include'] = 'Includi';
$a->strings['Hide'] = 'Nascondi';
-$a->strings['No results.'] = 'Nessun risultato.';
-$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['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!';
@@ -1424,26 +1406,6 @@ $a->strings['Please visit Friendi.ca to learn m
$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:';
@@ -1509,7 +1471,6 @@ $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 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['Unable to follow this item.'] = 'Impossibile seguire questo oggetto.';
$a->strings['System down for maintenance'] = 'Sistema in manutenzione';
@@ -1522,7 +1483,6 @@ $a->strings['Or - did you try to upload an empty file?'] = 'O.. non avrai provat
$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 exceeds size limit of %s'] = 'La dimensione dell\'immagine supera il limite di %s';
$a->strings['Image upload failed.'] = 'Caricamento immagine fallito.';
$a->strings['List of all users'] = 'Elenco di tutti gli utenti';
$a->strings['Active'] = 'Attivo';
@@ -1533,13 +1493,10 @@ $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['Public Forum'] = 'Forum Pubblico';
$a->strings['Automatic Friend Page'] = 'Pagina con amicizia automatica';
-$a->strings['Private Forum'] = 'Forum Privato';
$a->strings['Personal Page'] = 'Pagina Personale';
$a->strings['Organisation Page'] = 'Pagina Organizzazione';
$a->strings['News Page'] = 'Pagina Notizie';
-$a->strings['Community Forum'] = 'Community Forum';
$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'] = [
@@ -1634,10 +1591,8 @@ $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['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['Registered users'] = 'Utenti registrati';
$a->strings['Pending registrations'] = 'Registrazioni in attesa';
$a->strings['%s user blocked'] = [
@@ -1754,6 +1709,7 @@ $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';
@@ -1773,7 +1729,6 @@ $a->strings['%d year old'] = [
2 => '%d anni',
];
$a->strings['Description:'] = 'Descrizione:';
-$a->strings['Forums:'] = 'Forum:';
$a->strings['View profile as:'] = 'Vedi il tuo profilo come:';
$a->strings['View as'] = 'Vedi come';
$a->strings['Profile unavailable.'] = 'Profilo non disponibile.';
@@ -1868,7 +1823,6 @@ $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['Community Forum Subtypes'] = 'Sottotipi di Community Forum';
$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"';
@@ -1877,7 +1831,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".'] = '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['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';
@@ -1892,6 +1845,7 @@ $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:';
@@ -2029,7 +1983,6 @@ $a->strings['Beginning of week:'] = 'Inizio della settimana:';
$a->strings['Additional Features'] = 'Funzionalità aggiuntive';
$a->strings['Connected Apps'] = 'Applicazioni Collegate';
$a->strings['Remove authorization'] = 'Rimuovi l\'autorizzazione';
-$a->strings['Profile Name is required.'] = 'Il nome profilo è obbligatorio .';
$a->strings['Profile couldn\'t be updated.'] = 'Il Profilo non può essere aggiornato.';
$a->strings['Label:'] = 'Etichetta:';
$a->strings['Value:'] = 'Valore:';
@@ -2044,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:';
@@ -2056,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';
@@ -2186,6 +2129,7 @@ $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['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.';
@@ -2227,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';
@@ -2428,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 37fb6d7496..277a370969 100644
--- a/view/lang/ja/messages.po
+++ b/view/lang/ja/messages.po
@@ -13,7 +13,7 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-04-23 21:21+0000\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"
@@ -43,26 +43,26 @@ msgstr "項目を取得できませんでした。"
msgid "Empty post discarded."
msgstr "空の投稿は破棄されました。"
-#: mod/item.php:411 src/Module/Admin/Themes/Details.php:39
+#: 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:435 mod/message.php:68 mod/message.php:114 mod/notes.php:45
-#: mod/photos.php:152 mod/photos.php:669 src/Model/Event.php:522
+#: 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:52
+#: 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/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/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
@@ -72,9 +72,9 @@ msgstr "見つかりませんでした。"
#: 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:69
-#: src/Module/Settings/Display.php:69 src/Module/Settings/Display.php:151
+#: 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
@@ -220,90 +220,90 @@ msgstr "\n\t\t\tログインの詳細は次のとおりです:\n\n\t\t\tサイ
msgid "Your password has been changed at %s"
msgstr "パスワードは%s変更されました"
-#: mod/message.php:46 mod/message.php:129 src/Content/Nav.php:319
+#: 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:316 view/theme/frio/theme.php:241
+#: 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:182 mod/message.php:287 src/Module/Profile/UnkMail.php:145
+#: 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:191 src/Module/Profile/UnkMail.php:151
+#: mod/message.php:190 src/Module/Profile/UnkMail.php:151
msgid "Send Private Message"
msgstr "プライベートメッセージを送信する"
-#: mod/message.php:192 mod/message.php:347
+#: mod/message.php:191 mod/message.php:346
msgid "To:"
msgstr "送信先:"
-#: mod/message.php:193 mod/message.php:348
+#: mod/message.php:192 mod/message.php:347
msgid "Subject:"
msgstr "件名"
-#: mod/message.php:197 mod/message.php:351 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:200 mod/message.php:355 src/Content/Conversation.php:360
+#: 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:201 mod/message.php:356 src/Module/Post/Edit.php:135
+#: 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:202 mod/message.php:358 mod/photos.php:1291
-#: src/Content/Conversation.php:389 src/Content/Conversation.php:733
-#: src/Module/Item/Compose.php:204 src/Module/Post/Edit.php:145
-#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:550
+#: 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:203 mod/message.php:357 mod/photos.php:702
-#: mod/photos.php:819 mod/photos.php:1097 mod/photos.php:1138
-#: mod/photos.php:1194 mod/photos.php:1268
+#: 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:339
+#: 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
@@ -311,59 +311,64 @@ msgstr "お待ち下さい"
#: 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:230 src/Object/Post.php:1063
+#: 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:224
+#: mod/message.php:223
msgid "No messages."
msgstr "メッセージはありません。"
-#: mod/message.php:280
+#: mod/message.php:279
msgid "Message not available."
msgstr "メッセージは利用できません。"
-#: mod/message.php:324
+#: mod/message.php:323
msgid "Delete message"
msgstr "メッセージを削除"
-#: mod/message.php:326 mod/message.php:457
+#: 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:341 mod/message.php:454
+#: mod/message.php:340 mod/message.php:453
msgid "Delete conversation"
msgstr "会話を削除"
-#: mod/message.php:343
+#: 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: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"
@@ -377,14 +382,14 @@ msgstr "個人メモ"
msgid "Personal notes are visible only by yourself."
msgstr "個人メモは自分自身によってのみ見えます。"
-#: mod/notes.php:57 src/Content/Text/HTML.php:857
+#: 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:577
-#: src/Model/Event.php:514 src/Model/Profile.php:234
+#: 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
@@ -396,22 +401,22 @@ msgid "User not found."
msgstr "ユーザーが見つかりません。"
#: mod/photos.php:106 src/Module/BaseProfile.php:68
-#: src/Module/Profile/Photos.php:399
+#: src/Module/Profile/Photos.php:379
msgid "Photo Albums"
msgstr "フォトアルバム"
-#: mod/photos.php:107 src/Module/Profile/Photos.php:400
-#: src/Module/Profile/Photos.php:420
+#: mod/photos.php:107 src/Module/Profile/Photos.php:380
+#: src/Module/Profile/Photos.php:400
msgid "Recent Photos"
msgstr "最近の写真"
-#: mod/photos.php:109 mod/photos.php:867 src/Module/Profile/Photos.php:402
-#: src/Module/Profile/Photos.php:422
+#: 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:121 src/Module/BaseSettings.php:74
-#: src/Module/Profile/Photos.php:383
+#: mod/photos.php:121 src/Module/BaseSettings.php:72
+#: src/Module/Profile/Photos.php:363
msgid "everybody"
msgstr "みなさん"
@@ -423,72 +428,72 @@ msgstr "コンタクト情報は利用できません"
msgid "Album not found."
msgstr "アルバムが見つかりません。"
-#: mod/photos.php:242
+#: mod/photos.php:244
msgid "Album successfully deleted"
msgstr "アルバムを削除しました"
-#: mod/photos.php:244
+#: mod/photos.php:246
msgid "Album was empty."
msgstr "アルバムは空でした。"
-#: mod/photos.php:276
+#: mod/photos.php:277
msgid "Failed to delete the photo."
msgstr "写真を削除できませんでした"
-#: mod/photos.php:544
+#: mod/photos.php:545
msgid "a photo"
msgstr "写真"
-#: mod/photos.php:544
+#: 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:581 src/Module/Conversation/Community.php:188
-#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:315
+#: 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:586
+#: mod/photos.php:587
msgid "No photos selected"
msgstr "写真が選択されていません"
-#: mod/photos.php:718
+#: mod/photos.php:721
#, php-format
msgid "The maximum accepted image size is %s"
msgstr ""
-#: mod/photos.php:725
+#: mod/photos.php:728
msgid "Upload Photos"
msgstr "写真をアップロードする"
-#: mod/photos.php:729 mod/photos.php:815
+#: mod/photos.php:732 mod/photos.php:820
msgid "New album name: "
msgstr "新しいアルバム名:"
-#: mod/photos.php:730
+#: mod/photos.php:733
msgid "or select existing album:"
msgstr "または既存のアルバムを選択:"
-#: mod/photos.php:731
+#: mod/photos.php:734
msgid "Do not show a status post for this upload"
msgstr "このアップロードのステータス投稿を表示しません"
-#: mod/photos.php:733 mod/photos.php:1093 src/Content/Conversation.php:391
-#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:182
+#: 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:796
+#: mod/photos.php:801
msgid "Do you really want to delete this photo album and all its photos?"
msgstr "このフォトアルバムとそのすべての写真を本当に削除しますか?"
-#: mod/photos.php:797 mod/photos.php:820
+#: mod/photos.php:802 mod/photos.php:825
msgid "Delete Album"
msgstr "アルバムを削除"
-#: mod/photos.php:798 mod/photos.php:899 src/Content/Conversation.php:407
+#: 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
@@ -498,254 +503,271 @@ msgstr "アルバムを削除"
msgid "Cancel"
msgstr "キャンセル"
-#: mod/photos.php:824
+#: mod/photos.php:829
msgid "Edit Album"
msgstr "アルバムを編集"
-#: mod/photos.php:825
+#: mod/photos.php:830
msgid "Drop Album"
msgstr "アルバムを削除"
-#: mod/photos.php:829
+#: mod/photos.php:834
msgid "Show Newest First"
msgstr "新しいもの順に表示"
-#: mod/photos.php:831
+#: mod/photos.php:836
msgid "Show Oldest First"
msgstr "最も古いものを最初に表示"
-#: mod/photos.php:852 src/Module/Profile/Photos.php:370
+#: mod/photos.php:857 src/Module/Profile/Photos.php:350
msgid "View Photo"
msgstr "写真を見る"
-#: mod/photos.php:885
+#: mod/photos.php:889
msgid "Permission denied. Access to this item may be restricted."
msgstr "アクセス拒否。この項目へのアクセスは制限される場合があります。"
-#: mod/photos.php:887
+#: mod/photos.php:891
msgid "Photo not available"
msgstr "写真は利用できません"
-#: mod/photos.php:897
+#: mod/photos.php:901
msgid "Do you really want to delete this photo?"
msgstr "この写真を本当に削除しますか?"
-#: mod/photos.php:898 mod/photos.php:1098
+#: mod/photos.php:902 mod/photos.php:1102
msgid "Delete Photo"
msgstr "写真を削除"
-#: mod/photos.php:996
+#: mod/photos.php:1000
msgid "View photo"
msgstr "写真を見る"
-#: mod/photos.php:998
+#: mod/photos.php:1002
msgid "Edit photo"
msgstr "写真を編集する"
-#: mod/photos.php:999
+#: mod/photos.php:1003
msgid "Delete photo"
msgstr "写真を削除"
-#: mod/photos.php:1000
+#: mod/photos.php:1004
msgid "Use as profile photo"
msgstr "プロフィール写真として使用"
-#: mod/photos.php:1007
+#: mod/photos.php:1011
msgid "Private Photo"
msgstr "プライベート写真"
-#: mod/photos.php:1013
+#: mod/photos.php:1017
msgid "View Full Size"
msgstr "フルサイズを表示"
-#: mod/photos.php:1066
+#: mod/photos.php:1070
msgid "Tags: "
msgstr "タグ:"
-#: mod/photos.php:1069
+#: mod/photos.php:1073
msgid "[Select tags to remove]"
msgstr "[削除するタグを選択]"
-#: mod/photos.php:1084
+#: mod/photos.php:1088
msgid "New album name"
msgstr "新しいアルバム名"
-#: mod/photos.php:1085
+#: mod/photos.php:1089
msgid "Caption"
msgstr "キャプション"
-#: mod/photos.php:1086
+#: mod/photos.php:1090
msgid "Add a Tag"
msgstr "タグを追加する"
-#: mod/photos.php:1086
+#: 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:1087
+#: mod/photos.php:1091
msgid "Do not rotate"
msgstr "回転させないでください"
-#: mod/photos.php:1088
+#: mod/photos.php:1092
msgid "Rotate CW (right)"
msgstr "CWを回転(右)"
-#: mod/photos.php:1089
+#: mod/photos.php:1093
msgid "Rotate CCW (left)"
msgstr "CCWを回転(左)"
-#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1265
-#: src/Module/Contact.php:588 src/Module/Item/Compose.php:188
-#: src/Object/Post.php:1060
+#: 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:1137 mod/photos.php:1193 mod/photos.php:1267
-#: src/Object/Post.php:544 src/Object/Post.php:1062
+#: 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:1139 mod/photos.php:1195 mod/photos.php:1269
-#: src/Content/Conversation.php:404 src/Module/Calendar/Event/Form.php:248
-#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:165
-#: src/Object/Post.php:1074
+#: 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:1140 src/Content/Conversation.php:359
-#: src/Module/Post/Edit.php:130 src/Object/Post.php:1064
+#: 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:1226 src/Content/Conversation.php:649
-#: src/Object/Post.php:257
+#: mod/photos.php:1236 src/Content/Conversation.php:1464
+#: src/Object/Post.php:260
msgid "Select"
msgstr "選択"
-#: mod/photos.php:1227 src/Content/Conversation.php:650
+#: 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:1288 src/Object/Post.php:385
+#: mod/photos.php:1298 src/Object/Post.php:408
msgid "Like"
msgstr "いいね"
-#: mod/photos.php:1289 src/Object/Post.php:385
+#: mod/photos.php:1299 src/Object/Post.php:408
msgid "I like this (toggle)"
msgstr "私はこれが好きです(トグル)"
-#: mod/photos.php:1290 src/Object/Post.php:386
+#: mod/photos.php:1300 src/Object/Post.php:409
msgid "Dislike"
msgstr "嫌い"
-#: mod/photos.php:1292 src/Object/Post.php:386
+#: mod/photos.php:1302 src/Object/Post.php:409
msgid "I don't like this (toggle)"
msgstr "気に入らない(トグル)"
-#: mod/photos.php:1314
+#: mod/photos.php:1324
msgid "Map"
msgstr "地図"
-#: src/App.php:470
+#: src/App.php:473
msgid "No system theme config value set."
msgstr "システムテーマの構成値が設定されていません。"
-#: src/App.php:574
+#: src/App.php:580
msgid "Apologies but the website is unavailable at the moment."
msgstr ""
-#: src/App/Page.php:247
+#: src/App/Page.php:248
msgid "Delete this item?"
msgstr "この項目を削除しますか?"
-#: src/App/Page.php:248
+#: 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:249
+#: 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 "Like not successful"
+msgid "Collapse this author's posts?"
msgstr ""
#: src/App/Page.php:252
-msgid "Dislike not successful"
+msgid "Ignore this author's server?"
msgstr ""
-#: src/App/Page.php:253
-msgid "Sharing not successful"
-msgstr ""
-
-#: src/App/Page.php:254
-msgid "Attendance unsuccessful"
+#: 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 "Backend error"
+msgid "Like not successful"
msgstr ""
#: src/App/Page.php:256
-msgid "Network error"
+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 "Drop files here to upload"
+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:261
+#: 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:262
+#: src/App/Page.php:266
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
msgstr ""
-#: src/App/Page.php:263
+#: src/App/Page.php:267
msgid "You can't upload files of this type."
msgstr ""
-#: src/App/Page.php:264
+#: src/App/Page.php:268
msgid "Server responded with {{statusCode}} code."
msgstr ""
-#: src/App/Page.php:265
+#: src/App/Page.php:269
msgid "Cancel upload"
msgstr ""
-#: src/App/Page.php:266
+#: src/App/Page.php:270
msgid "Upload canceled."
msgstr ""
-#: src/App/Page.php:267
+#: src/App/Page.php:271
msgid "Are you sure you want to cancel this upload?"
msgstr ""
-#: src/App/Page.php:268
+#: src/App/Page.php:272
msgid "Remove file"
msgstr ""
-#: src/App/Page.php:269
+#: src/App/Page.php:273
msgid "You can't upload any more files."
msgstr ""
-#: src/App/Page.php:347
+#: src/App/Page.php:351
msgid "toggle mobile"
msgstr "モバイルを切り替え"
@@ -762,33 +784,33 @@ msgstr "ページが見つかりません。"
msgid "You must be logged in to use addons. "
msgstr "アドオンを使用するにはログインする必要があります。"
-#: src/BaseModule.php:400
+#: 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:427
+#: src/BaseModule.php:428
msgid "All contacts"
msgstr "すべてのコンタクト"
-#: src/BaseModule.php:432 src/Content/Widget.php:239 src/Core/ACL.php:195
-#: src/Module/Contact.php:407 src/Module/PermissionTooltip.php:127
-#: src/Module/PermissionTooltip.php:149
+#: 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:437 src/Content/Widget.php:240
-#: src/Module/Contact.php:408
+#: src/BaseModule.php:438 src/Content/Widget.php:240
+#: src/Module/Contact.php:418
msgid "Following"
msgstr "フォロー中"
-#: src/BaseModule.php:442 src/Content/Widget.php:241
-#: src/Module/Contact.php:409
+#: src/BaseModule.php:443 src/Content/Widget.php:241
+#: src/Module/Contact.php:421
msgid "Mutual friends"
msgstr "共通の友人"
-#: src/BaseModule.php:450
+#: src/BaseModule.php:451
msgid "Common"
msgstr ""
@@ -938,7 +960,7 @@ msgstr "保留中の投稿の更新はすべて完了しました。"
msgid "Enter user nickname: "
msgstr ""
-#: src/Console/User.php:182 src/Model/User.php:663
+#: 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
@@ -1113,355 +1135,488 @@ msgstr "pnut"
msgid "Tumblr"
msgstr ""
-#: src/Content/ContactSelector.php:179
+#: 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:218
+#: src/Content/Conversation.php:226
msgid "and"
msgstr "と"
-#: src/Content/Conversation.php:221
+#: src/Content/Conversation.php:229
#, php-format
msgid "and %d other people"
msgstr "と他 %d 人"
-#: src/Content/Conversation.php:227
+#: src/Content/Conversation.php:235
#, php-format
msgid "%2$s likes this."
msgid_plural "%2$s like this."
msgstr[0] ""
-#: src/Content/Conversation.php:229
+#: 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:231
+#: src/Content/Conversation.php:239
#, php-format
msgid "%2$s attends."
msgid_plural "%2$s attend."
msgstr[0] ""
-#: src/Content/Conversation.php:233
+#: 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:235
+#: src/Content/Conversation.php:243
#, php-format
msgid "%2$s attends maybe."
msgid_plural "%2$s attend maybe."
msgstr[0] ""
-#: src/Content/Conversation.php:237
+#: src/Content/Conversation.php:245
#, php-format
msgid "%2$s reshared this."
msgid_plural "%2$s reshared this."
msgstr[0] ""
-#: src/Content/Conversation.php:266
+#: src/Content/Conversation.php:274
#, php-format
msgid " likes this"
msgid_plural " like this"
msgstr[0] ""
-#: src/Content/Conversation.php:269
+#: src/Content/Conversation.php:277
#, php-format
msgid " doesn't like this"
msgid_plural " don't like this"
msgstr[0] ""
-#: src/Content/Conversation.php:272
+#: src/Content/Conversation.php:280
#, php-format
msgid " attends"
msgid_plural " attend"
msgstr[0] ""
-#: src/Content/Conversation.php:275
+#: src/Content/Conversation.php:283
#, php-format
msgid " doesn't attend"
msgid_plural " don't attend"
msgstr[0] ""
-#: src/Content/Conversation.php:278
+#: src/Content/Conversation.php:286
#, php-format
msgid " attends maybe"
msgid_plural " attend maybe"
msgstr[0] ""
-#: src/Content/Conversation.php:281
+#: src/Content/Conversation.php:289
#, php-format
msgid " reshared this"
msgid_plural " reshared this"
msgstr[0] ""
-#: src/Content/Conversation.php:328
+#: src/Content/Conversation.php:336
msgid "Visible to everybody"
msgstr "すべての人 が閲覧可能です"
-#: src/Content/Conversation.php:329 src/Module/Item/Compose.php:198
-#: src/Object/Post.php:1073
+#: 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:330
+#: src/Content/Conversation.php:338
msgid "Tag term:"
msgstr "用語のタグ付け:"
-#: src/Content/Conversation.php:331 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:332
+#: src/Content/Conversation.php:340
msgid "Where are you right now?"
msgstr "どこにいますか?:"
-#: src/Content/Conversation.php:333
+#: src/Content/Conversation.php:341
msgid "Delete item(s)?"
msgstr "これ(ら)の項目を削除しますか?"
-#: src/Content/Conversation.php:345 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:355
+#: src/Content/Conversation.php:363
msgid "New Post"
msgstr "新しい投稿"
-#: src/Content/Conversation.php:358
+#: src/Content/Conversation.php:366
msgid "Share"
msgstr "共有"
-#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:132
+#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132
msgid "upload photo"
msgstr "写真をアップロード"
-#: src/Content/Conversation.php:362 src/Module/Post/Edit.php:133
+#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133
msgid "Attach file"
msgstr "ファイルを添付"
-#: src/Content/Conversation.php:363 src/Module/Post/Edit.php:134
+#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134
msgid "attach file"
msgstr "ファイルを添付"
-#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190
-#: src/Module/Post/Edit.php:171 src/Object/Post.php:1065
+#: 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:365 src/Module/Item/Compose.php:191
-#: src/Module/Post/Edit.php:172 src/Object/Post.php:1066
+#: 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:366 src/Module/Item/Compose.php:192
-#: src/Module/Post/Edit.php:173 src/Object/Post.php:1067
+#: 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:367 src/Module/Item/Compose.php:193
-#: src/Module/Post/Edit.php:174 src/Object/Post.php:1068
+#: 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:368 src/Module/Item/Compose.php:194
-#: src/Module/Post/Edit.php:175 src/Object/Post.php:1069
+#: 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:369 src/Module/Item/Compose.php:195
-#: src/Object/Post.php:1070
+#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197
+#: src/Object/Post.php:1104
msgid "Image"
msgstr "画像"
-#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:196
-#: src/Module/Post/Edit.php:176 src/Object/Post.php:1071
+#: 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:371 src/Module/Item/Compose.php:197
-#: src/Module/Post/Edit.php:177 src/Object/Post.php:1072
+#: 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:372
+#: src/Content/Conversation.php:382
msgid "Video"
msgstr "動画"
-#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:200
+#: 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:374 src/Module/Post/Edit.php:142
+#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142
msgid "set location"
msgstr "現在地を設定"
-#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:143
+#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143
msgid "Clear browser location"
msgstr "ブラウザの現在地を解除"
-#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:144
+#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144
msgid "clear location"
msgstr "現在地を解除"
-#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:205
+#: 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:380 src/Module/Item/Compose.php:206
+#: 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:385 src/Module/Item/Compose.php:222
+#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224
msgid "Scheduled at"
msgstr ""
-#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:146
+#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146
msgid "Permission settings"
msgstr "権限設定"
-#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:155
+#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155
msgid "Public post"
msgstr "一般公開の投稿"
-#: src/Content/Conversation.php:414 src/Content/Widget/VCard.php:113
-#: src/Model/Profile.php:469 src/Module/Admin/Logs/View.php:92
-#: src/Module/Post/Edit.php:180
+#: 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:415 src/Module/Post/Edit.php:181
+#: 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:417 src/Module/Post/Edit.php:184
+#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185
msgid "Open Compose page"
msgstr "作成ページを開く"
-#: src/Content/Conversation.php:677 src/Object/Post.php:244
-msgid "Pinned item"
-msgstr "ピン留め項目"
-
-#: src/Content/Conversation.php:693 src/Object/Post.php:496
-#: src/Object/Post.php:497
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "%sのプロフィールを確認 @ %s"
-
-#: src/Content/Conversation.php:706 src/Object/Post.php:484
-msgid "Categories:"
-msgstr "カテゴリ:"
-
-#: src/Content/Conversation.php:707 src/Object/Post.php:485
-msgid "Filed under:"
-msgstr "格納先:"
-
-#: src/Content/Conversation.php:715 src/Object/Post.php:510
-#, php-format
-msgid "%s from %s"
-msgstr "%s から %s"
-
-#: src/Content/Conversation.php:731
-msgid "View in context"
-msgstr "文脈で表示する"
-
-#: src/Content/Conversation.php:796
+#: src/Content/Conversation.php:595
msgid "remove"
msgstr "削除"
-#: src/Content/Conversation.php:800
+#: src/Content/Conversation.php:599
msgid "Delete Selected Items"
msgstr "選択した項目を削除"
-#: src/Content/Conversation.php:865 src/Content/Conversation.php:868
-#: src/Content/Conversation.php:871 src/Content/Conversation.php:874
-#: src/Content/Conversation.php:877
+#: 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:880
+#: src/Content/Conversation.php:769
#, php-format
msgid "You are following %s."
msgstr ""
-#: src/Content/Conversation.php:883
+#: 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:896
+#: src/Content/Conversation.php:796
#, php-format
msgid "%s reshared this."
msgstr "%s が再共有しました。"
-#: src/Content/Conversation.php:898
+#: src/Content/Conversation.php:798
msgid "Reshared"
msgstr ""
-#: src/Content/Conversation.php:898
+#: src/Content/Conversation.php:798
#, php-format
msgid "Reshared by %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:901
+#: src/Content/Conversation.php:801
#, php-format
msgid "%s is participating in this thread."
msgstr ""
-#: src/Content/Conversation.php:904
+#: src/Content/Conversation.php:804
msgid "Stored for general reasons"
msgstr ""
-#: src/Content/Conversation.php:907
+#: src/Content/Conversation.php:807
msgid "Global post"
msgstr ""
-#: src/Content/Conversation.php:910
+#: src/Content/Conversation.php:810
msgid "Sent via an relay server"
msgstr ""
-#: src/Content/Conversation.php:910
+#: src/Content/Conversation.php:810
#, php-format
msgid "Sent via the relay server %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:913
+#: src/Content/Conversation.php:813
msgid "Fetched"
msgstr ""
-#: src/Content/Conversation.php:913
+#: src/Content/Conversation.php:813
#, php-format
msgid "Fetched because of %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:916
+#: src/Content/Conversation.php:816
msgid "Stored because of a child post to complete this thread."
msgstr ""
-#: src/Content/Conversation.php:919
+#: src/Content/Conversation.php:819
msgid "Local delivery"
msgstr ""
-#: src/Content/Conversation.php:922
+#: src/Content/Conversation.php:822
msgid "Stored because of your activity (like, comment, star, ...)"
msgstr ""
-#: src/Content/Conversation.php:925
+#: src/Content/Conversation.php:825
msgid "Distributed"
msgstr ""
-#: src/Content/Conversation.php:928
+#: 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 "一般的な機能"
@@ -1491,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"
@@ -1537,12 +1692,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"
@@ -1574,385 +1729,395 @@ msgid ""
"Contact birthday events are private to you."
msgstr ""
-#: src/Content/ForumManager.php:151 src/Content/Nav.php:276
-#: src/Content/Text/HTML.php:878 src/Content/Widget.php:528
-msgid "Forums"
-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/ForumManager.php:153
-msgid "External link to forum"
-msgstr "フォーラムへの外部リンク"
+#: src/Content/GroupManager.php:154
+msgid "External link to group"
+msgstr ""
-#: src/Content/ForumManager.php:156 src/Content/Widget.php:507
+#: src/Content/GroupManager.php:158 src/Content/Widget.php:512
msgid "show less"
msgstr ""
-#: src/Content/ForumManager.php:157 src/Content/Widget.php:409
-#: src/Content/Widget.php:508
+#: src/Content/GroupManager.php:159 src/Content/Widget.php:410
+#: src/Content/Widget.php:513
msgid "show more"
msgstr "もっと見せる"
-#: src/Content/Item.php:326 src/Model/Item.php:2922
+#: 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:329 src/Content/Item.php:339
+#: src/Content/Item.php:334 src/Content/Item.php:344
msgid "status"
msgstr "ステータス"
-#: src/Content/Item.php:335 src/Model/Item.php:2924
+#: src/Content/Item.php:340 src/Model/Item.php:3005
#: src/Module/Post/Tag/Add.php:123
msgid "photo"
msgstr "写真"
-#: src/Content/Item.php:349 src/Module/Post/Tag/Add.php:141
+#: 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:419 view/theme/frio/theme.php:262
+#: src/Content/Item.php:428 view/theme/frio/theme.php:262
msgid "Follow Thread"
msgstr "このスレッドをフォロー"
-#: src/Content/Item.php:420 src/Model/Contact.php:1204
+#: src/Content/Item.php:429 src/Model/Contact.php:1227
msgid "View Status"
msgstr "ステータスを見る"
-#: src/Content/Item.php:421 src/Content/Item.php:441
-#: src/Model/Contact.php:1148 src/Model/Contact.php:1196
-#: src/Model/Contact.php:1205 src/Module/Directory.php:157
-#: src/Module/Settings/Profile/Index.php:233
+#: 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:422 src/Model/Contact.php:1206
+#: src/Content/Item.php:431 src/Model/Contact.php:1229
msgid "View Photos"
msgstr "写真を見る"
-#: src/Content/Item.php:423 src/Model/Contact.php:1197
-#: src/Model/Contact.php:1207
+#: src/Content/Item.php:432 src/Model/Contact.php:1220
+#: src/Model/Contact.php:1230
msgid "Network Posts"
msgstr "ネットワーク投稿"
-#: src/Content/Item.php:424 src/Model/Contact.php:1198
-#: src/Model/Contact.php:1208
+#: src/Content/Item.php:433 src/Model/Contact.php:1221
+#: src/Model/Contact.php:1231
msgid "View Contact"
msgstr "コンタクトを見る"
-#: src/Content/Item.php:425 src/Model/Contact.php:1209
+#: src/Content/Item.php:434 src/Model/Contact.php:1232
msgid "Send PM"
msgstr "PMを送る"
-#: src/Content/Item.php:426 src/Module/Contact.php:439
-#: src/Module/Contact/Profile.php:477
+#: 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:427 src/Module/Contact.php:440
-#: src/Module/Contact/Profile.php:485
+#: 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:428 src/Module/Contact.php:441
-#: src/Module/Contact/Profile.php:493
+#: src/Content/Item.php:437 src/Module/Contact.php:470
+#: src/Module/Contact/Profile.php:527
msgid "Collapse"
msgstr ""
-#: src/Content/Item.php:432 src/Object/Post.php:465
+#: 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/Content/Widget.php:80
-#: src/Model/Contact.php:1199 src/Model/Contact.php:1210
-#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:196
+#: 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:863
+#: src/Content/Item.php:882
msgid "Unable to fetch user."
msgstr ""
-#: src/Content/Nav.php:120
+#: src/Content/Nav.php:121
msgid "Nothing new here"
msgstr "ここに新しいものはありません"
-#: src/Content/Nav.php:124 src/Module/Special/HTTPException.php:77
+#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77
msgid "Go back"
msgstr "戻る"
-#: src/Content/Nav.php:125
+#: src/Content/Nav.php:126
msgid "Clear notifications"
msgstr "クリア通知"
-#: src/Content/Nav.php:126 src/Content/Text/HTML.php:865
-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:220 src/Module/Security/Login.php:157
+#: src/Content/Nav.php:222 src/Module/Security/Login.php:157
msgid "Logout"
msgstr "ログアウト"
-#: src/Content/Nav.php:220
+#: src/Content/Nav.php:222
msgid "End this session"
msgstr "このセッションを終了"
-#: src/Content/Nav.php:222 src/Module/Bookmarklet.php:44
+#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44
#: src/Module/Security/Login.php:158
msgid "Login"
msgstr "ログイン"
-#: src/Content/Nav.php:222
+#: src/Content/Nav.php:224
msgid "Sign in"
msgstr "サインイン"
-#: src/Content/Nav.php:227 src/Module/BaseProfile.php:57
-#: src/Module/Contact.php:483
+#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57
+#: src/Module/Contact.php:512
msgid "Conversations"
msgstr ""
-#: src/Content/Nav.php:227
+#: src/Content/Nav.php:229
msgid "Conversations you started"
msgstr ""
-#: src/Content/Nav.php:228 src/Module/BaseProfile.php:49
-#: src/Module/BaseSettings.php:100 src/Module/Contact.php:475
-#: src/Module/Contact/Profile.php:392 src/Module/Profile/Profile.php:268
+#: 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:228 view/theme/frio/theme.php:230
+#: src/Content/Nav.php:230 view/theme/frio/theme.php:230
msgid "Your profile page"
msgstr "あなたのプロフィールページ"
-#: src/Content/Nav.php:229 src/Module/BaseProfile.php:65
+#: 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:229 view/theme/frio/theme.php:234
+#: src/Content/Nav.php:231 view/theme/frio/theme.php:234
msgid "Your photos"
msgstr "あなたの写真"
-#: src/Content/Nav.php:230 src/Module/BaseProfile.php:73
-#: src/Module/BaseProfile.php:76 src/Module/Contact.php:499
+#: 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:230 view/theme/frio/theme.php:235
+#: src/Content/Nav.php:232 view/theme/frio/theme.php:235
msgid "Your postings with media"
msgstr ""
-#: src/Content/Nav.php:231 src/Content/Nav.php:291
+#: 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:252 view/theme/frio/theme.php:236
+#: 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:231 view/theme/frio/theme.php:236
+#: src/Content/Nav.php:233 view/theme/frio/theme.php:236
msgid "Your calendar"
msgstr ""
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Personal notes"
msgstr "個人メモ"
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Your personal notes"
msgstr "あなたの個人的なメモ"
-#: src/Content/Nav.php:249 src/Content/Nav.php:306
+#: src/Content/Nav.php:251 src/Content/Nav.php:308
msgid "Home"
msgstr "ホーム"
-#: src/Content/Nav.php:249 src/Module/Settings/OAuth.php:73
+#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73
msgid "Home Page"
msgstr "ホームページ"
-#: src/Content/Nav.php:253 src/Module/Register.php:168
+#: src/Content/Nav.php:255 src/Module/Register.php:168
#: src/Module/Security/Login.php:124
msgid "Register"
msgstr "登録"
-#: src/Content/Nav.php:253
+#: src/Content/Nav.php:255
msgid "Create an account"
msgstr "アカウントを作成する"
-#: src/Content/Nav.php:259 src/Module/Help.php:67
+#: 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:241
+#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240
msgid "Help"
msgstr "ヘルプ"
-#: src/Content/Nav.php:259
+#: src/Content/Nav.php:261
msgid "Help and documentation"
msgstr "ヘルプとドキュメント"
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:265
msgid "Apps"
msgstr "アプリ"
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:265
msgid "Addon applications, utilities, games"
msgstr "アドオンアプリケーション、ユーティリティ、ゲーム"
-#: src/Content/Nav.php:267 src/Content/Text/HTML.php:863
+#: 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:267
+#: src/Content/Nav.php:269
msgid "Search site content"
msgstr "サイトのコンテンツを検索"
-#: src/Content/Nav.php:270 src/Content/Text/HTML.php:872
+#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874
msgid "Full Text"
msgstr "全文"
-#: src/Content/Nav.php:271 src/Content/Text/HTML.php:873
+#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875
#: src/Content/Widget/TagCloud.php:68
msgid "Tags"
msgstr "タグ"
-#: src/Content/Nav.php:272 src/Content/Nav.php:327
-#: src/Content/Text/HTML.php:874 src/Module/BaseProfile.php:127
-#: src/Module/BaseProfile.php:130 src/Module/Contact.php:410
-#: src/Module/Contact.php:506 view/theme/frio/theme.php:243
+#: 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:287
+#: src/Content/Nav.php:289
msgid "Community"
msgstr "コミュニティ"
-#: src/Content/Nav.php:287
+#: src/Content/Nav.php:289
msgid "Conversations on this and other servers"
msgstr "このサーバーと他のサーバーでの会話"
-#: src/Content/Nav.php:294
+#: src/Content/Nav.php:296
msgid "Directory"
msgstr "ディレクトリ"
-#: src/Content/Nav.php:294
+#: src/Content/Nav.php:296
msgid "People directory"
msgstr "人々の名簿"
-#: src/Content/Nav.php:296 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:296
+#: src/Content/Nav.php:298
msgid "Information about this friendica instance"
msgstr "このfriendicaインスタンスに関する情報"
-#: src/Content/Nav.php:299 src/Module/Admin/Tos.php:78
+#: 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:100
+#: src/Module/Tos.php:101
msgid "Terms of Service"
msgstr "利用規約"
-#: src/Content/Nav.php:299
+#: src/Content/Nav.php:301
msgid "Terms of Service of this Friendica instance"
msgstr "このFriendicaインスタンスの利用規約"
-#: src/Content/Nav.php:304 view/theme/frio/theme.php:239
+#: src/Content/Nav.php:306 view/theme/frio/theme.php:239
msgid "Network"
msgstr "ネットワーク"
-#: src/Content/Nav.php:304 view/theme/frio/theme.php:239
+#: src/Content/Nav.php:306 view/theme/frio/theme.php:239
msgid "Conversations from your friends"
msgstr "友達からの会話"
-#: src/Content/Nav.php:306 view/theme/frio/theme.php:229
+#: src/Content/Nav.php:308 view/theme/frio/theme.php:229
msgid "Your posts and conversations"
msgstr "あなたの投稿と会話"
-#: src/Content/Nav.php:310
+#: src/Content/Nav.php:312
msgid "Introductions"
msgstr "招待"
-#: src/Content/Nav.php:310
+#: src/Content/Nav.php:312
msgid "Friend Requests"
msgstr "友達リクエスト"
-#: src/Content/Nav.php:311 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:312
+#: src/Content/Nav.php:314
msgid "See all notifications"
msgstr "すべての通知を見る"
-#: src/Content/Nav.php:313 src/Module/Settings/Connectors.php:244
+#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244
msgid "Mark as seen"
msgstr "既読にする"
-#: src/Content/Nav.php:313
+#: src/Content/Nav.php:315
msgid "Mark all system notifications as seen"
msgstr ""
-#: src/Content/Nav.php:316 view/theme/frio/theme.php:241
+#: src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Private mail"
msgstr "プライベートメール"
-#: src/Content/Nav.php:317
+#: src/Content/Nav.php:319
msgid "Inbox"
msgstr "受信トレイ"
-#: src/Content/Nav.php:318
+#: src/Content/Nav.php:320
msgid "Outbox"
msgstr "送信トレイ"
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Accounts"
msgstr ""
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Manage other pages"
msgstr "他のページを管理する"
-#: 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/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:325 view/theme/frio/theme.php:242
+#: src/Content/Nav.php:327 view/theme/frio/theme.php:242
msgid "Account settings"
msgstr "アカウント設定"
-#: src/Content/Nav.php:327 view/theme/frio/theme.php:243
+#: src/Content/Nav.php:329 view/theme/frio/theme.php:243
msgid "Manage/edit friends and contacts"
msgstr "友達とコンタクトを管理/編集する"
-#: src/Content/Nav.php:332 src/Module/BaseAdmin.php:119
+#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119
msgid "Admin"
msgstr "管理者"
-#: src/Content/Nav.php:332
+#: src/Content/Nav.php:334
msgid "Site setup and configuration"
msgstr "サイトのセットアップと構成"
-#: src/Content/Nav.php:333 src/Module/BaseModeration.php:127
+#: 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/Summary.php:76
+#: 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
@@ -1960,23 +2125,23 @@ msgstr "サイトのセットアップと構成"
msgid "Moderation"
msgstr ""
-#: src/Content/Nav.php:333
+#: src/Content/Nav.php:335
msgid "Content and user moderation"
msgstr ""
-#: src/Content/Nav.php:336
+#: src/Content/Nav.php:338
msgid "Navigation"
msgstr "ナビゲーション"
-#: src/Content/Nav.php:336
+#: 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 "埋め込みコンテンツ"
@@ -1996,51 +2161,51 @@ msgstr "次"
msgid "last"
msgstr "最終"
-#: src/Content/Text/BBCode.php:713 src/Content/Text/BBCode.php:1599
-#: src/Content/Text/BBCode.php:1600
+#: 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:931
+#: src/Content/Text/BBCode.php:914
#, php-format
msgid "%2$s %3$s"
msgstr ""
-#: src/Content/Text/BBCode.php:956 src/Model/Item.php:3607
-#: src/Model/Item.php:3613 src/Model/Item.php:3614
+#: 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:1506 src/Content/Text/HTML.php:902
+#: src/Content/Text/BBCode.php:1543 src/Content/Text/HTML.php:904
msgid "Click to open/close"
msgstr "クリックして開閉"
-#: src/Content/Text/BBCode.php:1539
+#: src/Content/Text/BBCode.php:1576
msgid "$1 wrote:"
msgstr "$1 の投稿:"
-#: src/Content/Text/BBCode.php:1604 src/Content/Text/BBCode.php:1605
+#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642
msgid "Encrypted content"
msgstr "暗号化されたコンテンツ"
-#: src/Content/Text/BBCode.php:1869
+#: src/Content/Text/BBCode.php:1901
msgid "Invalid source protocol"
msgstr "無効なソースプロトコル"
-#: src/Content/Text/BBCode.php:1888
+#: src/Content/Text/BBCode.php:1920
msgid "Invalid link protocol"
msgstr "無効なリンクプロトコル"
-#: src/Content/Text/HTML.php:780
+#: src/Content/Text/HTML.php:782
msgid "Loading more entries..."
msgstr "さらにエントリを読み込んでいます..."
-#: src/Content/Text/HTML.php:781
+#: src/Content/Text/HTML.php:783
msgid "The end"
msgstr "終わり"
-#: src/Content/Text/HTML.php:857 src/Content/Widget/VCard.php:109
-#: src/Model/Profile.php:463 src/Module/Contact/Profile.php:437
+#: 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 "フォロー"
@@ -2066,117 +2231,129 @@ msgid "%d invitation available"
msgid_plural "%d invitations available"
msgstr[0] "%d通の招待が利用できます"
-#: src/Content/Widget.php:78 view/theme/vier/theme.php:194
+#: 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:195
+#: 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:197
+#: src/Content/Widget.php:81 view/theme/vier/theme.php:196
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "例:Robert Morgenstein、釣り"
-#: src/Content/Widget.php:82 src/Module/Contact.php:432
-#: src/Module/Directory.php:96 view/theme/vier/theme.php:198
+#: 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:83 src/Module/Contact/Suggestions.php:73
-#: view/theme/vier/theme.php:199
+#: view/theme/vier/theme.php:198
msgid "Friend Suggestions"
msgstr "友達の提案"
-#: src/Content/Widget.php:84 view/theme/vier/theme.php:200
+#: 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:201
+#: 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:202
+#: 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:203
+#: view/theme/vier/theme.php:202
msgid "Global Directory"
msgstr "グローバルディレクトリ"
-#: src/Content/Widget.php:89 view/theme/vier/theme.php:205
+#: src/Content/Widget.php:89 view/theme/vier/theme.php:204
msgid "Local Directory"
msgstr "ローカルディレクトリ"
-#: src/Content/Widget.php:215 src/Model/Group.php:587
-#: src/Module/Contact.php:394 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:217
msgid "Everyone"
msgstr ""
-#: src/Content/Widget.php:246
+#: 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:248 src/Module/Contact.php:338
-#: 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:287
+#: src/Content/Widget.php:288
msgid "Protocols"
msgstr "プロトコル"
-#: src/Content/Widget.php:289
+#: src/Content/Widget.php:290
msgid "All Protocols"
msgstr "すべてのプロトコル"
-#: src/Content/Widget.php:317
+#: src/Content/Widget.php:318
msgid "Saved Folders"
msgstr "保存されたフォルダー"
-#: src/Content/Widget.php:319 src/Content/Widget.php:350
+#: src/Content/Widget.php:320 src/Content/Widget.php:351
msgid "Everything"
msgstr "すべて"
-#: src/Content/Widget.php:348
+#: src/Content/Widget.php:349
msgid "Categories"
msgstr "カテゴリー"
-#: src/Content/Widget.php:405
+#: src/Content/Widget.php:406
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
msgstr[0] "共通の %d 件のコンタクト"
-#: src/Content/Widget.php:501
+#: src/Content/Widget.php:506
msgid "Archives"
msgstr "アーカイブ"
-#: src/Content/Widget.php:525
+#: src/Content/Widget.php:514
+msgid "On this date"
+msgstr ""
+
+#: src/Content/Widget.php:534
msgid "Persons"
msgstr ""
-#: src/Content/Widget.php:526
+#: src/Content/Widget.php:535
msgid "Organisations"
msgstr ""
-#: src/Content/Widget.php:527 src/Model/Contact.php:1656
+#: src/Content/Widget.php:536 src/Model/Contact.php:1698
msgid "News"
msgstr "ニュース"
-#: src/Content/Widget.php:531 src/Module/Settings/Account.php:453
+#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454
msgid "Account Types"
msgstr "アカウントの種類"
-#: src/Content/Widget.php:532 src/Module/Moderation/BaseUsers.php:69
+#: 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 "エクスポート"
@@ -2221,32 +2398,32 @@ msgstr[0] "トレンドタグ(過去%d時間)"
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
+#: 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:379
-#: src/Module/Contact/Profile.php:383 src/Module/Profile/Profile.php:203
+#: 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: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/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:107 src/Model/Profile.php:476
+#: 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/Contact.php:1200
-#: src/Model/Contact.php:1211 src/Model/Profile.php:465
-#: src/Module/Contact/Profile.php:429
+#: 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 "フォロー解除"
@@ -2287,8 +2464,8 @@ msgstr "このコンテンツは、最初のボックスに記載されたメン
#: src/Core/ACL.php:324
msgid ""
-"Start typing the name of a contact or a group to show a filtered list. You "
-"can also mention the special groups \"Followers\" and \"Mutuals\"."
+"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
@@ -2630,161 +2807,172 @@ msgstr "データベースはすでに使用されています。"
msgid "Could not connect to database."
msgstr "データベースに接続できません。"
-#: src/Core/L10n.php:408 src/Model/Event.php:432
-#: src/Module/Settings/Display.php:222
+#: src/Core/L10n.php:476 src/Model/Event.php:430
+#: src/Module/Settings/Display.php:235
msgid "Monday"
msgstr "月曜"
-#: src/Core/L10n.php:408 src/Model/Event.php:433
-#: src/Module/Settings/Display.php:223
+#: src/Core/L10n.php:476 src/Model/Event.php:431
+#: src/Module/Settings/Display.php:236
msgid "Tuesday"
msgstr "火曜日"
-#: src/Core/L10n.php:408 src/Model/Event.php:434
-#: src/Module/Settings/Display.php:224
+#: src/Core/L10n.php:476 src/Model/Event.php:432
+#: src/Module/Settings/Display.php:237
msgid "Wednesday"
msgstr "水曜日"
-#: src/Core/L10n.php:408 src/Model/Event.php:435
-#: src/Module/Settings/Display.php:225
+#: src/Core/L10n.php:476 src/Model/Event.php:433
+#: src/Module/Settings/Display.php:238
msgid "Thursday"
msgstr "木曜日"
-#: src/Core/L10n.php:408 src/Model/Event.php:436
-#: src/Module/Settings/Display.php:226
+#: src/Core/L10n.php:476 src/Model/Event.php:434
+#: src/Module/Settings/Display.php:239
msgid "Friday"
msgstr "金曜日"
-#: src/Core/L10n.php:408 src/Model/Event.php:437
-#: src/Module/Settings/Display.php:227
+#: src/Core/L10n.php:476 src/Model/Event.php:435
+#: src/Module/Settings/Display.php:240
msgid "Saturday"
msgstr "土曜日"
-#: src/Core/L10n.php:408 src/Model/Event.php:431
-#: src/Module/Settings/Display.php:221
+#: src/Core/L10n.php:476 src/Model/Event.php:429
+#: src/Module/Settings/Display.php:234
msgid "Sunday"
msgstr "日曜日"
-#: src/Core/L10n.php:412 src/Model/Event.php:452
+#: src/Core/L10n.php:480 src/Model/Event.php:450
msgid "January"
msgstr "1月"
-#: src/Core/L10n.php:412 src/Model/Event.php:453
+#: src/Core/L10n.php:480 src/Model/Event.php:451
msgid "February"
msgstr "2月"
-#: src/Core/L10n.php:412 src/Model/Event.php:454
+#: src/Core/L10n.php:480 src/Model/Event.php:452
msgid "March"
msgstr "3月"
-#: src/Core/L10n.php:412 src/Model/Event.php:455
+#: src/Core/L10n.php:480 src/Model/Event.php:453
msgid "April"
msgstr "4月"
-#: src/Core/L10n.php:412 src/Core/L10n.php:431 src/Model/Event.php:443
+#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441
msgid "May"
msgstr "5月"
-#: src/Core/L10n.php:412 src/Model/Event.php:456
+#: src/Core/L10n.php:480 src/Model/Event.php:454
msgid "June"
msgstr "6月"
-#: src/Core/L10n.php:412 src/Model/Event.php:457
+#: src/Core/L10n.php:480 src/Model/Event.php:455
msgid "July"
msgstr "7月"
-#: src/Core/L10n.php:412 src/Model/Event.php:458
+#: src/Core/L10n.php:480 src/Model/Event.php:456
msgid "August"
msgstr "8月"
-#: src/Core/L10n.php:412 src/Model/Event.php:459
+#: src/Core/L10n.php:480 src/Model/Event.php:457
msgid "September"
msgstr "9月"
-#: src/Core/L10n.php:412 src/Model/Event.php:460
+#: src/Core/L10n.php:480 src/Model/Event.php:458
msgid "October"
msgstr "10月"
-#: src/Core/L10n.php:412 src/Model/Event.php:461
+#: src/Core/L10n.php:480 src/Model/Event.php:459
msgid "November"
msgstr "11月"
-#: src/Core/L10n.php:412 src/Model/Event.php:462
+#: src/Core/L10n.php:480 src/Model/Event.php:460
msgid "December"
msgstr "12月"
-#: src/Core/L10n.php:427 src/Model/Event.php:424
+#: src/Core/L10n.php:495 src/Model/Event.php:422
msgid "Mon"
msgstr "月"
-#: src/Core/L10n.php:427 src/Model/Event.php:425
+#: src/Core/L10n.php:495 src/Model/Event.php:423
msgid "Tue"
msgstr "火"
-#: src/Core/L10n.php:427 src/Model/Event.php:426
+#: src/Core/L10n.php:495 src/Model/Event.php:424
msgid "Wed"
msgstr "水"
-#: src/Core/L10n.php:427 src/Model/Event.php:427
+#: src/Core/L10n.php:495 src/Model/Event.php:425
msgid "Thu"
msgstr "木"
-#: src/Core/L10n.php:427 src/Model/Event.php:428
+#: src/Core/L10n.php:495 src/Model/Event.php:426
msgid "Fri"
msgstr "金"
-#: src/Core/L10n.php:427 src/Model/Event.php:429
+#: src/Core/L10n.php:495 src/Model/Event.php:427
msgid "Sat"
msgstr "土"
-#: src/Core/L10n.php:427 src/Model/Event.php:423
+#: src/Core/L10n.php:495 src/Model/Event.php:421
msgid "Sun"
msgstr "日"
-#: src/Core/L10n.php:431 src/Model/Event.php:439
+#: src/Core/L10n.php:499 src/Model/Event.php:437
msgid "Jan"
msgstr "1月"
-#: src/Core/L10n.php:431 src/Model/Event.php:440
+#: src/Core/L10n.php:499 src/Model/Event.php:438
msgid "Feb"
msgstr "2月"
-#: src/Core/L10n.php:431 src/Model/Event.php:441
+#: src/Core/L10n.php:499 src/Model/Event.php:439
msgid "Mar"
msgstr "3月"
-#: src/Core/L10n.php:431 src/Model/Event.php:442
+#: src/Core/L10n.php:499 src/Model/Event.php:440
msgid "Apr"
msgstr "4月"
-#: src/Core/L10n.php:431 src/Model/Event.php:444
+#: src/Core/L10n.php:499 src/Model/Event.php:442
msgid "Jun"
msgstr "6月"
-#: src/Core/L10n.php:431 src/Model/Event.php:445
+#: src/Core/L10n.php:499 src/Model/Event.php:443
msgid "Jul"
msgstr "7月"
-#: src/Core/L10n.php:431 src/Model/Event.php:446
+#: src/Core/L10n.php:499 src/Model/Event.php:444
msgid "Aug"
msgstr "8月"
-#: src/Core/L10n.php:431
+#: src/Core/L10n.php:499
msgid "Sep"
msgstr "9月"
-#: src/Core/L10n.php:431 src/Model/Event.php:448
+#: src/Core/L10n.php:499 src/Model/Event.php:446
msgid "Oct"
msgstr "10月"
-#: src/Core/L10n.php:431 src/Model/Event.php:449
+#: src/Core/L10n.php:499 src/Model/Event.php:447
msgid "Nov"
msgstr "11月"
-#: src/Core/L10n.php:431 src/Model/Event.php:450
+#: src/Core/L10n.php:499 src/Model/Event.php:448
msgid "Dec"
msgstr "12月"
+#: 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/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:147 src/Core/Renderer.php:181
#: src/Render/FriendicaSmartyEngine.php:60
@@ -2829,22 +3017,22 @@ msgid ""
" to version 2021.01 and wait until the postupdate finished version 1383."
msgstr ""
-#: src/Core/Update.php:197
+#: src/Core/Update.php:183
#, php-format
msgid "%s: executing pre update %d"
msgstr ""
-#: src/Core/Update.php:239
+#: src/Core/Update.php:225
#, php-format
msgid "%s: executing post update %d"
msgstr ""
-#: src/Core/Update.php:313
+#: src/Core/Update.php:299
#, php-format
msgid "Update %s failed. See error logs."
msgstr "%sの更新に失敗しました。エラーログを参照してください。"
-#: src/Core/Update.php:353
+#: src/Core/Update.php:339
#, php-format
msgid ""
"\n"
@@ -2854,16 +3042,16 @@ 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:359
+#: src/Core/Update.php:345
#, php-format
msgid "The error message is\\n[pre]%s[/pre]"
msgstr ""
-#: src/Core/Update.php:363 src/Core/Update.php:391
+#: src/Core/Update.php:349 src/Core/Update.php:377
msgid "[Friendica Notify] Database update"
msgstr "[Friendica Notify]データベースの更新"
-#: src/Core/Update.php:385
+#: src/Core/Update.php:371
#, php-format
msgid ""
"\n"
@@ -2875,28 +3063,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"
@@ -2904,20 +3092,20 @@ 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:221
+#: src/Database/DBStructure.php:232
msgid "Another database update is currently running."
msgstr ""
-#: src/Database/DBStructure.php:225
+#: src/Database/DBStructure.php:236
#, php-format
msgid "%s: Database update"
msgstr "%s :データベースの更新"
-#: src/Database/DBStructure.php:482
+#: src/Database/DBStructure.php:493
#, php-format
msgid "%s: updating %s table."
msgstr "%s : %sテーブルを更新しています。"
@@ -2948,82 +3136,122 @@ msgstr "内部サーバーエラー"
msgid "Legacy module file not found: %s"
msgstr "レガシーモジュールファイルが見つかりません: %s"
-#: src/Model/Contact.php:1217 src/Module/Moderation/Users/Pending.php:102
+#: 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 "みんな"
+
+#: 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:1652
+#: src/Model/Contact.php:1694
msgid "Organisation"
msgstr "組織"
-#: src/Model/Contact.php:1660
-msgid "Forum"
-msgstr "フォーラム"
+#: src/Model/Contact.php:1702
+msgid "Group"
+msgstr ""
-#: src/Model/Contact.php:2947
+#: src/Model/Contact.php:3005
msgid "Disallowed profile URL."
msgstr "許可されていないプロフィールURL。"
-#: src/Model/Contact.php:2952 src/Module/Friendica.php:83
+#: src/Model/Contact.php:3010 src/Module/Friendica.php:101
msgid "Blocked domain"
msgstr "ブロックされたドメイン"
-#: src/Model/Contact.php:2957
+#: src/Model/Contact.php:3015
msgid "Connect URL missing."
msgstr "接続URLがありません。"
-#: src/Model/Contact.php:2966
+#: 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:2984
+#: src/Model/Contact.php:3042
#, php-format
msgid "Expected network %s does not match actual network %s"
msgstr ""
-#: src/Model/Contact.php:3001
+#: src/Model/Contact.php:3059
msgid "The profile address specified does not provide adequate information."
msgstr "指定されたプロフィールアドレスは、適切な情報を提供しません。"
-#: src/Model/Contact.php:3003
+#: src/Model/Contact.php:3061
msgid "No compatible communication protocols or feeds were discovered."
msgstr "互換性のある通信プロトコルまたはフィードは見つかりませんでした。"
-#: src/Model/Contact.php:3006
+#: src/Model/Contact.php:3064
msgid "An author or name was not found."
msgstr "著者または名前が見つかりませんでした。"
-#: src/Model/Contact.php:3009
+#: src/Model/Contact.php:3067
msgid "No browser URL could be matched to this address."
msgstr "このアドレスに一致するブラウザURLはありません。"
-#: src/Model/Contact.php:3012
+#: 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:3013
+#: src/Model/Contact.php:3071
msgid "Use mailto: in front of address to force email check."
msgstr "メールチェックを強制するには、アドレスの前にmailto:を使用します。"
-#: src/Model/Contact.php:3019
+#: 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:3024
+#: 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:3089
+#: src/Model/Contact.php:3148
msgid "Unable to retrieve contact information."
msgstr "コンタクト情報を取得できません。"
@@ -3031,54 +3259,54 @@ msgstr "コンタクト情報を取得できません。"
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
+#: 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:78 src/Model/Event.php:98 src/Model/Event.php:472
-#: src/Model/Event.php:944
+#: 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:421
+#: src/Model/Event.php:419
msgid "all-day"
msgstr "一日中"
-#: src/Model/Event.php:447
+#: src/Model/Event.php:445
msgid "Sept"
msgstr "9月"
-#: src/Model/Event.php:464 src/Module/Calendar/Show.php:128
+#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128
#: src/Util/Temporal.php:343
msgid "today"
msgstr "今日"
-#: src/Model/Event.php:465 src/Module/Calendar/Show.php:129
-#: src/Module/Settings/Display.php:232 src/Util/Temporal.php:353
+#: 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:466 src/Module/Calendar/Show.php:130
-#: src/Module/Settings/Display.php:233 src/Util/Temporal.php:354
+#: 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:467 src/Module/Calendar/Show.php:131
-#: src/Module/Settings/Display.php:234 src/Util/Temporal.php:355
+#: 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:469
+#: src/Model/Event.php:467
msgid "No events to display"
msgstr "表示するイベントはありません"
-#: src/Model/Event.php:518 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69
+#: 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:559 src/Module/Calendar/Event/Show.php:67
+#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67
msgid "Event not found."
msgstr ""
@@ -3110,139 +3338,95 @@ msgstr "D g:i A"
msgid "g:i A"
msgstr "g:i A"
-#: src/Model/Event.php:959 src/Model/Event.php:961
+#: src/Model/Event.php:964 src/Model/Event.php:966
msgid "Show map"
msgstr "地図を表示"
-#: src/Model/Event.php:960
+#: 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: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:2023
+#: src/Model/Item.php:2062
#, php-format
msgid "Detected languages in this post:\\n%s"
msgstr ""
-#: src/Model/Item.php:2926
+#: src/Model/Item.php:3007
msgid "activity"
msgstr "アクティビティ"
-#: src/Model/Item.php:2928
+#: src/Model/Item.php:3009
msgid "comment"
msgstr ""
-#: src/Model/Item.php:2931 src/Module/Post/Tag/Add.php:123
+#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123
msgid "post"
msgstr "投稿"
-#: src/Model/Item.php:3093
+#: src/Model/Item.php:3182
#, php-format
msgid "%s is blocked"
msgstr ""
-#: src/Model/Item.php:3095
+#: src/Model/Item.php:3184
#, php-format
msgid "%s is ignored"
msgstr ""
-#: src/Model/Item.php:3097
+#: src/Model/Item.php:3186
#, php-format
msgid "Content from %s is collapsed"
msgstr ""
-#: src/Model/Item.php:3101
+#: src/Model/Item.php:3190
#, php-format
msgid "Content warning: %s"
msgstr "コンテンツの警告: %s"
-#: src/Model/Item.php:3519
+#: src/Model/Item.php:3652
msgid "bytes"
msgstr "バイト"
-#: src/Model/Item.php:3550
+#: 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:3552
+#: 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:3557
+#: 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:3559
+#: src/Model/Item.php:3692
#, php-format
msgid "%d voter."
msgid_plural "%d voters."
msgstr[0] ""
-#: src/Model/Item.php:3561
+#: src/Model/Item.php:3694
#, php-format
msgid "Poll end: %s"
msgstr ""
-#: src/Model/Item.php:3595 src/Model/Item.php:3596
+#: src/Model/Item.php:3728 src/Model/Item.php:3729
msgid "View on separate page"
msgstr "個別のページで見る"
@@ -3250,292 +3434,293 @@ msgstr "個別のページで見る"
msgid "[no subject]"
msgstr "[件名なし]"
-#: src/Model/Photo.php:1189 src/Module/Media/Photo/Upload.php:197
+#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170
msgid "Wall Photos"
msgstr "ウォール写真"
-#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:283
+#: 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/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:385
+#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412
#: src/Module/Notifications/Introductions.php:189
msgid "About:"
msgstr "この場所について:"
-#: src/Model/Profile.php:467
+#: src/Model/Profile.php:465
msgid "Atom feed"
msgstr "Atomフィード"
-#: src/Model/Profile.php:474
+#: src/Model/Profile.php:472
msgid "This website has been verified to belong to the same person."
msgstr ""
-#: src/Model/Profile.php:511
+#: src/Model/Profile.php:509
msgid "F d"
msgstr "F d"
-#: src/Model/Profile.php:575 src/Model/Profile.php:664
+#: src/Model/Profile.php:573 src/Model/Profile.php:662
msgid "[today]"
msgstr "[今日]"
-#: src/Model/Profile.php:584
+#: src/Model/Profile.php:582
msgid "Birthday Reminders"
msgstr "誕生日のリマインダー"
-#: src/Model/Profile.php:585
+#: src/Model/Profile.php:583
msgid "Birthdays this week:"
msgstr "今週の誕生日:"
-#: src/Model/Profile.php:613
+#: src/Model/Profile.php:611
msgid "g A l F d"
msgstr "g A l F d"
-#: src/Model/Profile.php:651
+#: src/Model/Profile.php:649
msgid "[No description]"
msgstr "[説明なし]"
-#: src/Model/Profile.php:677
+#: src/Model/Profile.php:675
msgid "Event Reminders"
msgstr "イベントリマインダー"
-#: src/Model/Profile.php:678
+#: src/Model/Profile.php:676
msgid "Upcoming events the next 7 days:"
msgstr "今後7日間の今後のイベント:"
-#: src/Model/Profile.php:875
+#: src/Model/Profile.php:873
#, php-format
msgid "OpenWebAuth: %1$s welcomes %2$s"
msgstr "OpenWebAuth: %2$sさん、%1$sへようこそ"
-#: src/Model/Profile.php:1015
+#: src/Model/Profile.php:1013
msgid "Hometown:"
msgstr "出身地:"
-#: src/Model/Profile.php:1016
+#: src/Model/Profile.php:1014
msgid "Marital Status:"
msgstr ""
-#: src/Model/Profile.php:1017
+#: src/Model/Profile.php:1015
msgid "With:"
msgstr ""
-#: src/Model/Profile.php:1018
+#: src/Model/Profile.php:1016
msgid "Since:"
msgstr ""
-#: src/Model/Profile.php:1019
+#: src/Model/Profile.php:1017
msgid "Sexual Preference:"
msgstr "性的嗜好:"
-#: src/Model/Profile.php:1020
+#: src/Model/Profile.php:1018
msgid "Political Views:"
msgstr "政見:"
-#: src/Model/Profile.php:1021
+#: src/Model/Profile.php:1019
msgid "Religious Views:"
msgstr "宗教的見解:"
-#: src/Model/Profile.php:1022
+#: src/Model/Profile.php:1020
msgid "Likes:"
msgstr "好きなもの:"
-#: src/Model/Profile.php:1023
+#: src/Model/Profile.php:1021
msgid "Dislikes:"
msgstr "嫌いなもの:"
-#: src/Model/Profile.php:1024
+#: src/Model/Profile.php:1022
msgid "Title/Description:"
msgstr "タイトル説明:"
-#: src/Model/Profile.php:1025 src/Module/Admin/Summary.php:221
+#: 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:1026
+#: src/Model/Profile.php:1024
msgid "Musical interests"
msgstr "音楽的興味"
-#: src/Model/Profile.php:1027
+#: src/Model/Profile.php:1025
msgid "Books, literature"
msgstr "本、文学"
-#: src/Model/Profile.php:1028
+#: src/Model/Profile.php:1026
msgid "Television"
msgstr "テレビ"
-#: src/Model/Profile.php:1029
+#: src/Model/Profile.php:1027
msgid "Film/dance/culture/entertainment"
msgstr "映画/ダンス/文化/エンターテイメント"
-#: src/Model/Profile.php:1030
+#: src/Model/Profile.php:1028
msgid "Hobbies/Interests"
msgstr "趣味/興味"
-#: src/Model/Profile.php:1031
+#: src/Model/Profile.php:1029
msgid "Love/romance"
msgstr "愛/ロマンス"
-#: src/Model/Profile.php:1032
+#: src/Model/Profile.php:1030
msgid "Work/employment"
msgstr "仕事/雇用"
-#: src/Model/Profile.php:1033
+#: src/Model/Profile.php:1031
msgid "School/education"
msgstr "学校教育"
-#: src/Model/Profile.php:1034
+#: src/Model/Profile.php:1032
msgid "Contact information and Social Networks"
msgstr "コンタクト情報とソーシャルネットワーク"
-#: src/Model/User.php:214 src/Model/User.php:1120
+#: src/Model/User.php:227 src/Model/User.php:1186
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "重大なエラー:セキュリティキーの生成に失敗しました。"
-#: src/Model/User.php:572 src/Model/User.php:605
+#: src/Model/User.php:620 src/Model/User.php:653
msgid "Login failed"
msgstr "ログインに失敗しました"
-#: src/Model/User.php:637
+#: src/Model/User.php:685
msgid "Not enough information to authenticate"
msgstr "認証に十分な情報がありません"
-#: src/Model/User.php:754
+#: src/Model/User.php:806
msgid "Password can't be empty"
msgstr "パスワードは空にできません"
-#: src/Model/User.php:796
+#: src/Model/User.php:848
msgid "Empty passwords are not allowed."
msgstr "空のパスワードは許可されていません。"
-#: src/Model/User.php:800
+#: 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:804
+#: src/Model/User.php:856
msgid "The password length is limited to 72 characters."
msgstr ""
-#: src/Model/User.php:808
+#: src/Model/User.php:860
msgid "The password can't contain white spaces nor accentuated letters"
msgstr ""
-#: src/Model/User.php:1003
+#: src/Model/User.php:1069
msgid "Passwords do not match. Password unchanged."
msgstr "パスワードが一致していません。パスワードは変更されていません。"
-#: src/Model/User.php:1010
+#: src/Model/User.php:1076
msgid "An invitation is required."
msgstr "招待状が必要です。"
-#: src/Model/User.php:1014
+#: src/Model/User.php:1080
msgid "Invitation could not be verified."
msgstr "招待を確認できませんでした。"
-#: src/Model/User.php:1022
+#: src/Model/User.php:1088
msgid "Invalid OpenID url"
msgstr "無効なOpenID URL"
-#: src/Model/User.php:1035 src/Security/Authentication.php:241
+#: 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:1035 src/Security/Authentication.php:241
+#: src/Model/User.php:1101 src/Security/Authentication.php:241
msgid "The error message was:"
msgstr "エラーメッセージは次のとおりです。"
-#: src/Model/User.php:1041
+#: src/Model/User.php:1107
msgid "Please enter the required information."
msgstr "必要な情報を入力してください。"
-#: src/Model/User.php:1055
+#: 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:1062
+#: 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:1066
+#: 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:1074
+#: src/Model/User.php:1140
msgid "That doesn't appear to be your full (First Last) name."
msgstr "それはあなたのフルネーム(ファースト/ラスト)ではないようです。"
-#: src/Model/User.php:1079
+#: src/Model/User.php:1145
msgid "Your email domain is not among those allowed on this site."
msgstr "あなたのメールドメインは、このサイトで許可されているものではありません。"
-#: src/Model/User.php:1083
+#: src/Model/User.php:1149
msgid "Not a valid email address."
msgstr "有効な電子メールアドレスではありません。"
-#: src/Model/User.php:1086
+#: src/Model/User.php:1152
msgid "The nickname was blocked from registration by the nodes admin."
msgstr "そのニックネームは、ノード管理者によって登録がブロックされました。"
-#: src/Model/User.php:1090 src/Model/User.php:1096
+#: src/Model/User.php:1156 src/Model/User.php:1162
msgid "Cannot use that email."
msgstr "そのメールは使用できません。"
-#: src/Model/User.php:1102
+#: 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:1110 src/Model/User.php:1167
+#: src/Model/User.php:1176 src/Model/User.php:1233
msgid "Nickname is already registered. Please choose another."
msgstr "ニックネームはすでに登録されています。別のものを選択してください。"
-#: src/Model/User.php:1154 src/Model/User.php:1158
+#: src/Model/User.php:1220 src/Model/User.php:1224
msgid "An error occurred during registration. Please try again."
msgstr "登録中にエラーが発生しました。もう一度試してください。"
-#: src/Model/User.php:1181
+#: src/Model/User.php:1247
msgid "An error occurred creating your default profile. Please try again."
msgstr "既定のプロフィールの作成中にエラーが発生しました。もう一度試してください。"
-#: src/Model/User.php:1188
+#: src/Model/User.php:1254
msgid "An error occurred creating your self contact. Please try again."
msgstr "自己コンタクトの作成中にエラーが発生しました。もう一度試してください。"
-#: src/Model/User.php:1193
+#: src/Model/User.php:1259
msgid "Friends"
msgstr "友だち"
-#: src/Model/User.php:1197
+#: 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:1236
+#: src/Model/User.php:1307
msgid "Profile Photos"
msgstr "プロフィール写真"
-#: src/Model/User.php:1431
+#: src/Model/User.php:1487
#, php-format
msgid ""
"\n"
@@ -3543,7 +3728,7 @@ msgid ""
"\t\t\tthe administrator of %2$s has set up an account for you."
msgstr ""
-#: src/Model/User.php:1434
+#: src/Model/User.php:1490
#, php-format
msgid ""
"\n"
@@ -3575,12 +3760,12 @@ msgid ""
"\t\tThank you and welcome to %4$s."
msgstr ""
-#: src/Model/User.php:1467 src/Model/User.php:1574
+#: src/Model/User.php:1523 src/Model/User.php:1630
#, php-format
msgid "Registration details for %s"
msgstr "%s の登録の詳細"
-#: src/Model/User.php:1487
+#: src/Model/User.php:1543
#, php-format
msgid ""
"\n"
@@ -3595,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:1506
+#: src/Model/User.php:1562
#, php-format
msgid "Registration at %s"
msgstr "%s登録"
-#: src/Model/User.php:1530
+#: src/Model/User.php:1586
#, php-format
msgid ""
"\n"
@@ -3609,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:1538
+#: src/Model/User.php:1594
#, php-format
msgid ""
"\n"
@@ -3666,10 +3851,10 @@ msgid "Enable"
msgstr "有効にする"
#: src/Module/Admin/Addons/Details.php:111
-#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:209
+#: 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:220
+#: 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
@@ -3679,7 +3864,7 @@ msgstr "運営管理"
#: src/Module/Admin/Addons/Details.php:112
#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92
-#: src/Module/BaseSettings.php:134
+#: src/Module/BaseSettings.php:132
msgid "Addons"
msgstr "アドオン"
@@ -3710,10 +3895,10 @@ 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:560 src/Module/Settings/Addons.php:78
+#: 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:169 src/Module/Settings/Display.php:247
+#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260
#: src/Module/Settings/Features.php:76
msgid "Save Settings"
msgstr "設定を保存"
@@ -3798,68 +3983,70 @@ msgstr "機能 %s をロック"
msgid "Manage Additional Features"
msgstr "追加機能を管理する"
-#: src/Module/Admin/Federation.php:75
+#: 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:149 src/Module/Admin/Federation.php:398
+#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403
msgid "unknown"
msgstr "未知の"
-#: src/Module/Admin/Federation.php:182
+#: 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:183
+#: 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:184
+#: 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:185
+#: 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:186
+#: 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:189
+#: 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:194
+#: 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:204
+#: 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:210 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:214
+#: src/Module/Admin/Federation.php:219
#, php-format
msgid ""
"Currently this node is aware of %2$s node (%3$s active users last month, "
@@ -4051,7 +4238,8 @@ msgstr ""
msgid "Job Parameters"
msgstr "ジョブパラメータ"
-#: src/Module/Admin/Queue.php:78 src/Module/Settings/OAuth.php:74
+#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95
+#: src/Module/Settings/OAuth.php:74
msgid "Created"
msgstr "作成した"
@@ -4064,11 +4252,11 @@ msgstr "優先度"
msgid "%s is no valid input for maximum image size"
msgstr ""
-#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:169
+#: 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:179
+#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188
#, php-format
msgid "%s - (Experimental)"
msgstr "%s (実験的)"
@@ -4158,7 +4346,7 @@ msgid "Policies"
msgstr "ポリシー"
#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252
-#: src/Module/Contact.php:516 src/Module/Profile/Profile.php:276
+#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276
msgid "Advanced"
msgstr "詳細"
@@ -4488,8 +4676,8 @@ msgstr "新規ユーザー向けの 既定のプライベート投稿"
#: 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:456
msgid "Don't include post content in email notifications"
@@ -4903,13 +5091,13 @@ 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 group when calculating network count"
+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 groups the query can be very "
-"expensive."
+"On systems with users that heavily use contact circles the query can be very"
+" expensive."
msgstr ""
#: src/Module/Admin/Site.php:509
@@ -4953,7 +5141,7 @@ msgid ""
"received."
msgstr "\"all \"または\"tags \"にすることができます。 「すべて」は、すべての一般公開投稿を受信することを意味します。 「タグ」は、選択したタグのある投稿のみを受信することを意味します。"
-#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:286
+#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309
#: src/Module/Settings/TwoFactor/Index.php:125
msgid "Disabled"
msgstr "無効"
@@ -5148,51 +5336,40 @@ msgid ""
"href=\"%s\">the installation page for help."
msgstr "システムで %s に到達できません。これは、サーバー間の通信を妨げる重大な構成の問題です。ヘルプについては、インストールページをご覧ください。"
-#: src/Module/Admin/Summary.php:142
-#, php-format
-msgid "The logfile '%s' is not usable. No logging possible (error: '%s')"
-msgstr "ログファイル ' %s ' は使用できません。ログ機能が使用できません。(エラー: ' %s ' )"
-
-#: src/Module/Admin/Summary.php:156
-#, php-format
-msgid ""
-"The debug logfile '%s' is not usable. No logging possible (error: '%s')"
-msgstr "デバッグログファイル ' %s ' は使用できません。ログ機能が使用できません。(エラー: ' %s ' )"
-
-#: src/Module/Admin/Summary.php:172
+#: 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:180
+#: 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:188
+#: 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:199
+#: src/Module/Admin/Summary.php:175
msgid "Message queues"
msgstr "メッセージキュー"
-#: src/Module/Admin/Summary.php:205
+#: src/Module/Admin/Summary.php:181
msgid "Server Settings"
msgstr "サーバー設定"
-#: src/Module/Admin/Summary.php:223
+#: src/Module/Admin/Summary.php:199
msgid "Version"
msgstr "バージョン"
-#: src/Module/Admin/Summary.php:227
+#: src/Module/Admin/Summary.php:203
msgid "Active addons"
msgstr "アクティブなアドオン"
@@ -5345,11 +5522,11 @@ msgstr "項目が見つかりませんでした。"
msgid "Please login to continue."
msgstr "この先に進むにはログインしてください。"
-#: src/Module/BaseAdmin.php:63 src/Module/BaseModeration.php:86
+#: src/Module/BaseAdmin.php:63
msgid "You don't have access to administration pages."
msgstr ""
-#: src/Module/BaseAdmin.php:67 src/Module/BaseModeration.php:90
+#: src/Module/BaseAdmin.php:67
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
@@ -5359,11 +5536,11 @@ msgstr ""
msgid "Overview"
msgstr "概要"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:111
+#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
msgid "Configuration"
msgstr "構成"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:112
+#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
msgid "Additional features"
msgstr "追加機能"
@@ -5383,7 +5560,7 @@ msgstr "非同期実行ワーカーの検査"
msgid "Inspect worker Queue"
msgstr "ワーカーキューの検査"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:119
+#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
msgid "Diagnostics"
msgstr "診断"
@@ -5411,7 +5588,7 @@ msgstr ""
msgid "Addon Features"
msgstr "アドオン機能"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:128
+#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
msgid "User registrations waiting for confirmation"
msgstr "確認待ちのユーザー登録"
@@ -5440,32 +5617,46 @@ msgid_plural ""
"Monthly posting limit of %d posts reached. The post was rejected."
msgstr[0] ""
-#: src/Module/BaseModeration.php:112 src/Module/Moderation/Users/Index.php:148
+#: 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:114
+#: src/Module/BaseModeration.php:115
msgid "Tools"
msgstr "ツール"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:116
msgid "Contact Blocklist"
msgstr "コンタクトブロックリスト"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:117
msgid "Server Blocklist"
msgstr "サーバーブロックリスト"
-#: src/Module/BaseModeration.php:117 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
msgid "Delete Item"
msgstr "項目を削除"
-#: src/Module/BaseModeration.php:120 src/Module/Moderation/Item/Source.php:76
+#: 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:478
+#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507
msgid "Profile Details"
msgstr "プロフィールの詳細"
@@ -5489,15 +5680,15 @@ msgstr ""
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/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139
msgid "No matches"
@@ -5515,36 +5706,40 @@ msgid_plural ""
"blocking in the About page."
msgstr[0] ""
-#: src/Module/BaseSettings.php:80
+#: src/Module/BaseSettings.php:78
msgid "Account"
msgstr "アカウント"
-#: src/Module/BaseSettings.php:87 src/Module/Security/TwoFactor/Verify.php:96
+#: 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:120
+#: src/Module/BaseSettings.php:118
msgid "Display"
msgstr "表示"
-#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:204
+#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204
msgid "Social Networks"
msgstr "ソーシャルネットワーク"
-#: src/Module/BaseSettings.php:141 src/Module/Settings/Delegation.php:170
+#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172
msgid "Manage Accounts"
msgstr "アカウントの管理"
-#: src/Module/BaseSettings.php:148
+#: src/Module/BaseSettings.php:146
msgid "Connected apps"
msgstr "接続されたアプリ"
-#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:98
+#: 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:162
+#: src/Module/BaseSettings.php:167
msgid "Remove account"
msgstr "アカウントを削除"
@@ -5664,169 +5859,259 @@ msgstr "表示する"
msgid "Create New Event"
msgstr "新しいイベントを作成"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:235
+#: 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:341
+#: src/Module/Contact.php:348
msgid "Show all contacts"
msgstr "すべてのコンタクトを表示"
-#: src/Module/Contact.php:346 src/Module/Contact.php:414
+#: src/Module/Contact.php:353 src/Module/Contact.php:432
#: src/Module/Moderation/BaseUsers.php:85
msgid "Pending"
msgstr "保留"
-#: src/Module/Contact.php:349
+#: src/Module/Contact.php:356
msgid "Only show pending contacts"
msgstr "保留中のコンタクトのみを表示"
-#: src/Module/Contact.php:354 src/Module/Contact.php:415
+#: src/Module/Contact.php:361 src/Module/Contact.php:435
#: src/Module/Moderation/BaseUsers.php:93
msgid "Blocked"
msgstr "ブロックされました"
-#: src/Module/Contact.php:357
+#: src/Module/Contact.php:364
msgid "Only show blocked contacts"
msgstr "ブロックされたコンタクトのみを表示"
-#: src/Module/Contact.php:362 src/Module/Contact.php:417
-#: src/Object/Post.php:345
+#: 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:365
+#: src/Module/Contact.php:372
msgid "Only show ignored contacts"
msgstr "無視されたコンタクトのみを表示"
-#: src/Module/Contact.php:370 src/Module/Contact.php:418
+#: src/Module/Contact.php:377 src/Module/Contact.php:444
msgid "Collapsed"
msgstr ""
-#: src/Module/Contact.php:373
+#: src/Module/Contact.php:380
msgid "Only show collapsed contacts"
msgstr ""
-#: src/Module/Contact.php:378 src/Module/Contact.php:419
+#: src/Module/Contact.php:385 src/Module/Contact.php:447
msgid "Archived"
msgstr "アーカイブ済み"
-#: src/Module/Contact.php:381
+#: src/Module/Contact.php:388
msgid "Only show archived contacts"
msgstr "アーカイブされたコンタクトのみを表示"
-#: src/Module/Contact.php:386 src/Module/Contact.php:416
+#: src/Module/Contact.php:393 src/Module/Contact.php:438
msgid "Hidden"
msgstr "非表示"
-#: src/Module/Contact.php:389
+#: src/Module/Contact.php:396
msgid "Only show hidden contacts"
msgstr "非表示のコンタクトのみを表示"
-#: src/Module/Contact.php:397
-msgid "Organize your contact groups"
-msgstr "コンタクトグループを整理する"
+#: src/Module/Contact.php:404
+msgid "Organize your contact circles"
+msgstr ""
-#: src/Module/Contact.php:430
+#: src/Module/Contact.php:459
msgid "Search your contacts"
msgstr "コンタクトを検索する"
-#: src/Module/Contact.php:431 src/Module/Search/Index.php:207
+#: src/Module/Contact.php:460 src/Module/Search/Index.php:207
#, php-format
msgid "Results for: %s"
msgstr "結果: %s"
-#: src/Module/Contact.php:438
+#: src/Module/Contact.php:467
msgid "Update"
msgstr "更新"
-#: src/Module/Contact.php:439 src/Module/Contact/Profile.php:477
+#: 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:440 src/Module/Contact/Profile.php:485
+#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519
msgid "Unignore"
msgstr "無視しない"
-#: src/Module/Contact.php:441 src/Module/Contact/Profile.php:493
+#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527
msgid "Uncollapse"
msgstr ""
-#: src/Module/Contact.php:443
+#: src/Module/Contact.php:472
msgid "Batch Actions"
msgstr "バッチアクション"
-#: src/Module/Contact.php:486
+#: src/Module/Contact.php:515
msgid "Conversations started by this contact"
msgstr "このコンタクトが開始した会話"
-#: src/Module/Contact.php:491
+#: src/Module/Contact.php:520
msgid "Posts and Comments"
msgstr "投稿とコメント"
-#: src/Module/Contact.php:494
+#: src/Module/Contact.php:523
msgid "Individual Posts and Replies"
msgstr ""
-#: src/Module/Contact.php:502
+#: src/Module/Contact.php:531
msgid "Posts containing media objects"
msgstr ""
-#: src/Module/Contact.php:509
+#: src/Module/Contact.php:539
msgid "View all known contacts"
msgstr ""
-#: src/Module/Contact.php:519
+#: src/Module/Contact.php:550
msgid "Advanced Contact Settings"
msgstr "高度なコンタクト設定"
-#: src/Module/Contact.php:555
+#: src/Module/Contact.php:586
msgid "Mutual Friendship"
msgstr "相互フォロー"
-#: src/Module/Contact.php:559
+#: src/Module/Contact.php:590
msgid "is a fan of yours"
msgstr "あなたのファンです"
-#: src/Module/Contact.php:563
+#: src/Module/Contact.php:594
msgid "you are a fan of"
msgstr "あなたはファンです"
-#: src/Module/Contact.php:581
+#: src/Module/Contact.php:612
msgid "Pending outgoing contact request"
msgstr "保留中の送信済みコンタクトリクエスト"
-#: src/Module/Contact.php:583
+#: src/Module/Contact.php:614
msgid "Pending incoming contact request"
msgstr "保留中の受信済みコンタクトリクエスト"
-#: src/Module/Contact.php:596 src/Module/Contact/Profile.php:346
+#: 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: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
-#: src/Module/Group.php:97 src/Module/Group.php:106
-msgid "Contact not found."
-msgstr "コンタクトが見つかりません。"
-
#: src/Module/Contact/Advanced.php:99
msgid "Contact update failed."
msgstr "コンタクトの更新に失敗しました。"
@@ -5837,6 +6122,7 @@ 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
@@ -5863,11 +6149,6 @@ msgstr "ポーリング/フィードURL"
msgid "New photo from this URL"
msgstr "このURLからの新しい写真"
-#: src/Module/Contact/Contacts.php:66 src/Module/Conversation/Network.php:189
-#: src/Module/Group.php:101
-msgid "Invalid contact."
-msgstr "無効なコンタクト。"
-
#: src/Module/Contact/Contacts.php:89
msgid "No known contacts."
msgstr ""
@@ -5919,7 +6200,7 @@ msgid_plural "Contacts (%s)"
msgstr[0] "コンタクト( %s )"
#: 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/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
@@ -5957,15 +6238,16 @@ msgstr "以下に答えてください。"
msgid "Your Identity Address:"
msgstr "あなたのIdentityアドレス:"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:375
+#: 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:387
+#: 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:"
@@ -5991,8 +6273,8 @@ 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:82 src/Module/Media/Photo/Upload.php:87
-#: src/Module/Media/Photo/Upload.php:136
+#: 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 "無効なリクエストです。"
@@ -6004,248 +6286,312 @@ msgstr "合致するキーワードが有りません。あなたのプロフィ
msgid "Profile Match"
msgstr "一致するプロフィール"
-#: src/Module/Contact/Profile.php:128
+#: 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:210
+#: src/Module/Contact/Profile.php:222
msgid "Contact has been uncollapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:214
+#: src/Module/Contact/Profile.php:226
msgid "Contact has been collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:242
+#: src/Module/Contact/Profile.php:254
#, php-format
msgid "You are mutual friends with %s"
msgstr "あなたは%sと共通の友達です"
-#: src/Module/Contact/Profile.php:243
+#: src/Module/Contact/Profile.php:255
#, php-format
msgid "You are sharing with %s"
msgstr "%sと共有しています"
-#: src/Module/Contact/Profile.php:244
+#: src/Module/Contact/Profile.php:256
#, php-format
msgid "%s is sharing with you"
msgstr "%sはあなたと共有しています"
-#: src/Module/Contact/Profile.php:260
+#: src/Module/Contact/Profile.php:272
msgid "Private communications are not available for this contact."
msgstr "このコンタクトへのプライベート通信は利用できません。"
-#: src/Module/Contact/Profile.php:262
+#: 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:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was not successful)"
msgstr "(更新は成功しませんでした)"
-#: src/Module/Contact/Profile.php:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was successful)"
msgstr "(更新は成功しました)"
-#: src/Module/Contact/Profile.php:267 src/Module/Contact/Profile.php:448
+#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482
msgid "Suggest friends"
msgstr "友人のおすすめ"
-#: src/Module/Contact/Profile.php:271
+#: src/Module/Contact/Profile.php:294
#, php-format
msgid "Network type: %s"
msgstr "ネットワークの種類: %s"
-#: src/Module/Contact/Profile.php:276
+#: src/Module/Contact/Profile.php:299
msgid "Communications lost with this contact!"
msgstr "このコンタクトとの通信が失われました!"
-#: src/Module/Contact/Profile.php:282
+#: src/Module/Contact/Profile.php:305
msgid "Fetch further information for feeds"
msgstr "フィードの詳細情報を取得する"
-#: src/Module/Contact/Profile.php:284
+#: 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:287
+#: src/Module/Contact/Profile.php:310
msgid "Fetch information"
msgstr "情報を取得する"
-#: src/Module/Contact/Profile.php:288
+#: src/Module/Contact/Profile.php:311
msgid "Fetch keywords"
msgstr "キーワードを取得する"
-#: src/Module/Contact/Profile.php:289
+#: src/Module/Contact/Profile.php:312
msgid "Fetch information and keywords"
msgstr "情報とキーワードを取得する"
-#: src/Module/Contact/Profile.php:299 src/Module/Contact/Profile.php:304
-#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:315
+#: 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:300 src/Module/Contact/Profile.php:310
-#: src/Module/Contact/Profile.php:316
+#: 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:305 src/Module/Contact/Profile.php:311
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334
msgid "Native reshare"
msgstr ""
-#: src/Module/Contact/Profile.php:328
+#: src/Module/Contact/Profile.php:353
msgid "Contact Information / Notes"
msgstr "コンタクト/メモ"
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:354
msgid "Contact Settings"
msgstr "コンタクト設定"
-#: src/Module/Contact/Profile.php:337
+#: src/Module/Contact/Profile.php:362
msgid "Contact"
msgstr "コンタクト"
-#: src/Module/Contact/Profile.php:341
+#: src/Module/Contact/Profile.php:366
msgid "Their personal note"
msgstr "彼らの個人的なメモ"
-#: src/Module/Contact/Profile.php:343
+#: src/Module/Contact/Profile.php:368
msgid "Edit contact notes"
msgstr "コンタクトメモを編集する"
-#: src/Module/Contact/Profile.php:347
+#: src/Module/Contact/Profile.php:372
msgid "Block/Unblock contact"
msgstr "コンタクトのブロック/ブロック解除"
-#: src/Module/Contact/Profile.php:348
+#: src/Module/Contact/Profile.php:373
+#: src/Module/Moderation/Report/Create.php:293
msgid "Ignore contact"
msgstr "コンタクトを無視"
-#: src/Module/Contact/Profile.php:349
+#: src/Module/Contact/Profile.php:374
msgid "View conversations"
msgstr "会話を見る"
-#: src/Module/Contact/Profile.php:354
+#: src/Module/Contact/Profile.php:379
msgid "Last update:"
msgstr "最後の更新:"
-#: src/Module/Contact/Profile.php:356
+#: src/Module/Contact/Profile.php:381
msgid "Update public posts"
msgstr "一般公開の投稿を更新"
-#: src/Module/Contact/Profile.php:358 src/Module/Contact/Profile.php:458
+#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492
msgid "Update now"
msgstr "今すぐ更新"
-#: src/Module/Contact/Profile.php:360
+#: src/Module/Contact/Profile.php:385
msgid "Awaiting connection acknowledge"
msgstr "接続確認応答待ち"
-#: src/Module/Contact/Profile.php:361
+#: src/Module/Contact/Profile.php:386
msgid "Currently blocked"
msgstr "現在ブロックされています"
-#: src/Module/Contact/Profile.php:362
+#: src/Module/Contact/Profile.php:387
msgid "Currently ignored"
msgstr "現在無視されます"
-#: src/Module/Contact/Profile.php:363
+#: src/Module/Contact/Profile.php:388
msgid "Currently collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:364
+#: src/Module/Contact/Profile.php:389
msgid "Currently archived"
msgstr "現在アーカイブ済み"
-#: src/Module/Contact/Profile.php:367
+#: 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:367
+#: src/Module/Contact/Profile.php:394
msgid ""
"Replies/likes to your public posts may still be visible"
msgstr "一般公開の投稿への返信・いいねは、引き続き表示される場合があります"
-#: src/Module/Contact/Profile.php:368
+#: src/Module/Contact/Profile.php:395
msgid "Notification for new posts"
msgstr "新しい投稿の通知"
-#: src/Module/Contact/Profile.php:368
+#: src/Module/Contact/Profile.php:395
msgid "Send a notification of every new post of this contact"
msgstr "このコンタクトの新しい投稿ごとに通知を送信する"
-#: src/Module/Contact/Profile.php:370
+#: src/Module/Contact/Profile.php:397
msgid "Keyword Deny List"
msgstr ""
-#: src/Module/Contact/Profile.php:370
+#: 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:388
+#: src/Module/Contact/Profile.php:415
#: src/Module/Settings/TwoFactor/Index.php:139
msgid "Actions"
msgstr "操作"
-#: src/Module/Contact/Profile.php:390
+#: 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:396
+#: src/Module/Contact/Profile.php:423
msgid "Mirror postings from this contact"
msgstr "このコンタクトからの投稿をミラーリングする"
-#: src/Module/Contact/Profile.php:398
+#: 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:468
+#: 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:479
+#: src/Module/Contact/Profile.php:513
msgid "Toggle Blocked status"
msgstr "ブロック状態の切り替え"
-#: src/Module/Contact/Profile.php:487
+#: src/Module/Contact/Profile.php:521
msgid "Toggle Ignored status"
msgstr "無視ステータスの切り替え"
-#: src/Module/Contact/Profile.php:495
+#: src/Module/Contact/Profile.php:529
msgid "Toggle Collapsed status"
msgstr ""
-#: src/Module/Contact/Profile.php:502 src/Module/Contact/Revoke.php:106
+#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106
msgid "Revoke Follow"
msgstr ""
-#: src/Module/Contact/Profile.php:504
+#: src/Module/Contact/Profile.php:538
msgid "Revoke the follow from this contact"
msgstr ""
@@ -6257,10 +6603,6 @@ msgstr "要求の形式が正しくありません。"
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 ""
@@ -6308,102 +6650,54 @@ msgstr ""
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr ""
-#: src/Module/Conversation/Community.php:74
+#: 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/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:87
-msgid "Local Community"
-msgstr "ローカル コミュニティ"
-
-#: src/Module/Conversation/Community.php:90
-msgid "Posts from local users on this server"
-msgstr "このサーバー上のローカルユーザーからの投稿"
-
-#: src/Module/Conversation/Community.php:98
-msgid "Global Community"
-msgstr "グローバルコミュニティ"
-
-#: src/Module/Conversation/Community.php:101
-msgid "Posts from users of the whole federated network"
-msgstr "フェデレーションネットワーク全体のユーザーからの投稿"
-
-#: 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 "結果がありません。"
-
-#: 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:175
-msgid "No such group"
-msgstr "そのようなグループはありません"
+#: src/Module/Conversation/Network.php:218
+msgid "No such circle"
+msgstr ""
-#: src/Module/Conversation/Network.php:179
+#: src/Module/Conversation/Network.php:222
#, php-format
-msgid "Group: %s"
-msgstr "グループ: %s"
-
-#: 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"
+msgid "Circle: %s"
msgstr ""
-#: src/Module/Conversation/Network.php:276
-msgid "Sort by post creation date"
+#: src/Module/Conversation/Network.php:317
+msgid "Network feed not available."
msgstr ""
-#: src/Module/Conversation/Network.php:281
-#: src/Module/Settings/Profile/Index.php:235
-msgid "Personal"
-msgstr "パーソナル"
+#: src/Module/Conversation/Timeline.php:158
+msgid "Own Contacts"
+msgstr ""
-#: src/Module/Conversation/Network.php:284
-msgid "Posts that mention or involve you"
-msgstr "あなたに言及または関与している投稿"
+#: src/Module/Conversation/Timeline.php:162
+msgid "Include"
+msgstr ""
-#: src/Module/Conversation/Network.php:289 src/Object/Post.php:357
-msgid "Starred"
-msgstr "スター付き"
-
-#: src/Module/Conversation/Network.php:292
-msgid "Favourite Posts"
-msgstr "お気に入りの投稿"
+#: src/Module/Conversation/Timeline.php:163
+msgid "Hide"
+msgstr ""
#: src/Module/Credits.php:44
msgid "Credits"
@@ -6620,7 +6914,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:144
+#: src/Module/Settings/Profile/Index.php:177
msgid "You must be logged in to use this module"
msgstr "このモジュールを使用するにはログインする必要があります"
@@ -6749,138 +7043,58 @@ msgstr "友人を示唆しています"
msgid "Suggest a friend for %s"
msgstr "%s友達を提案する"
-#: src/Module/Friendica.php:64
+#: src/Module/Friendica.php:82
msgid "Installed addons/apps:"
msgstr "インストールされたアドオン/アプリ:"
-#: src/Module/Friendica.php:69
+#: src/Module/Friendica.php:87
msgid "No installed addons/apps"
msgstr "アドオン/アプリがインストールされていません"
-#: src/Module/Friendica.php:74
+#: src/Module/Friendica.php:92
#, php-format
msgid "Read about the Terms of Service of this node."
msgstr "このノードの利用規約について読んでください。"
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:99
msgid "On this server the following remote servers are blocked."
msgstr "このサーバーでは、次のリモートサーバーがブロックされています。"
-#: 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 "ブロックの理由"
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:104
msgid "Download this list in CSV format"
msgstr ""
-#: src/Module/Friendica.php:100
+#: 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:105
+#: 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:106
+#: src/Module/Friendica.php:124
msgid "Bug reports and issues: please visit"
msgstr "バグレポートと問題:こちらをご覧ください"
-#: src/Module/Friendica.php:106
+#: src/Module/Friendica.php:124
msgid "the bugtracker at github"
msgstr "githubのバグトラッカー"
-#: src/Module/Friendica.php:107
+#: 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: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 "プロフィールなし"
@@ -7171,30 +7385,26 @@ 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/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 "この項目のフィードは利用できません。"
@@ -7250,20 +7460,13 @@ msgstr "ファイルサイズ上限 %s を超えています。"
msgid "File upload failed."
msgstr "アップロードが失敗しました。"
-#: src/Module/Media/Photo/Upload.php:153 src/Module/Media/Photo/Upload.php:154
+#: 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:187 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/Media/Photo/Upload.php:205 src/Module/Profile/Photos.php:243
+#: 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 "画像アップロードに失敗しました。"
@@ -7296,41 +7499,41 @@ msgstr ""
msgid "List of pending user deletions"
msgstr ""
-#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:491
+#: 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:498
+#: 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:505
-msgid "Public Forum"
-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:512
+#: 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 Forum"
-msgstr "プライベートフォーラム"
+msgid "Private Group"
+msgstr ""
-#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:463
+#: 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:470
+#: 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:477
+#: 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:484
-msgid "Community Forum"
-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"
@@ -7385,6 +7588,7 @@ msgid "Block New Remote Contact"
msgstr "新しいリモートコンタクトをブロック"
#: src/Module/Moderation/Blocklist/Contact.php:122
+#: src/Module/Moderation/Reports.php:95
msgid "Photo"
msgstr "写真"
@@ -7456,6 +7660,8 @@ 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 ""
@@ -7734,6 +7940,236 @@ msgstr ""
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 "通常アカウント"
@@ -7743,8 +8179,8 @@ msgid "Automatic Follower Account"
msgstr "自動フォロワーアカウント"
#: src/Module/Moderation/Summary.php:55
-msgid "Public Forum Account"
-msgstr "公開フォーラムアカウント"
+msgid "Public Group Account"
+msgstr ""
#: src/Module/Moderation/Summary.php:56
msgid "Automatic Friend Account"
@@ -7755,8 +8191,8 @@ msgid "Blog Account"
msgstr "ブログアカウント"
#: src/Module/Moderation/Summary.php:58
-msgid "Private Forum Account"
-msgstr "プライベートフォーラムアカウント"
+msgid "Private Group Account"
+msgstr ""
#: src/Module/Moderation/Summary.php:78
msgid "Registered users"
@@ -8051,11 +8487,11 @@ msgstr "ホーム通知"
msgid "Show unread"
msgstr "未読を表示"
-#: src/Module/Notifications/Ping.php:245
+#: src/Module/Notifications/Ping.php:246
msgid "{0} requested registration"
msgstr "{0}は登録をリクエストしました"
-#: src/Module/Notifications/Ping.php:254
+#: src/Module/Notifications/Ping.php:255
#, php-format
msgid "{0} and %d others requested registration"
msgstr ""
@@ -8074,7 +8510,7 @@ msgstr "このアプリケーションによる、あなたの投稿・コンタ
msgid "Unsupported or missing response type"
msgstr ""
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:77
+#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78
msgid "Incomplete request data"
msgstr ""
@@ -8085,11 +8521,11 @@ 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:104
+#: src/Module/OAuth/Token.php:108
msgid "Unsupported or missing grant type"
msgstr ""
@@ -8214,21 +8650,21 @@ msgstr ""
msgid "Attributed To: %s
"
msgstr ""
-#: src/Module/Photo.php:129
+#: src/Module/Photo.php:130
msgid "The Photo is not available."
msgstr ""
-#: src/Module/Photo.php:154
+#: src/Module/Photo.php:155
#, php-format
msgid "The Photo with id %s is not available."
msgstr "ID%sの写真は利用できません"
-#: src/Module/Photo.php:191
+#: src/Module/Photo.php:192
#, php-format
msgid "Invalid external resource with url %s."
msgstr ""
-#: src/Module/Photo.php:193
+#: src/Module/Photo.php:194
#, php-format
msgid "Invalid photo with id %s."
msgstr "ID %s の写真が無効です。"
@@ -8269,7 +8705,7 @@ msgstr "タグの削除"
msgid "Select a tag to remove: "
msgstr "削除するタグを選択:"
-#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:178
+#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180
#: src/Module/Settings/TwoFactor/Trusted.php:144
msgid "Remove"
msgstr "削除"
@@ -8280,24 +8716,31 @@ msgstr "コンタクトはありません。"
#: 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:1032
-#: src/Protocol/OStatus.php:1007
+#: 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:1036 src/Protocol/OStatus.php:1012
+#: 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:1039 src/Protocol/OStatus.php:1016
+#: 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 "画像のアップロードが完了しませんでした。もう一度お試しください"
@@ -8316,7 +8759,7 @@ msgstr "サーバーは現在、新しいファイルのアップロードを受
msgid "Image file is empty."
msgstr "画像ファイルが空です。"
-#: src/Module/Profile/Photos.php:376
+#: src/Module/Profile/Photos.php:356
msgid "View Album"
msgstr "アルバムを見る"
@@ -8331,7 +8774,7 @@ msgid ""
"class=\"btn btn-sm pull-right\">Cancel"
msgstr ""
-#: src/Module/Profile/Profile.php:167 src/Module/Settings/Account.php:575
+#: src/Module/Profile/Profile.php:167
msgid "Full Name:"
msgstr "フルネーム:"
@@ -8352,25 +8795,25 @@ msgid "Birthday:"
msgstr "お誕生日:"
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
msgid "Age: "
msgstr "年齢:"
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: 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:195
-#: src/Module/Settings/Profile/Index.php:246
+#: src/Module/Settings/Profile/Index.php:284
msgid "Description:"
msgstr "説明:"
#: src/Module/Profile/Profile.php:261
-msgid "Forums:"
-msgstr "フォーラム:"
+msgid "Groups:"
+msgstr ""
#: src/Module/Profile/Profile.php:273
msgid "View profile as:"
@@ -8540,7 +8983,7 @@ 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
+#: src/Module/Settings/Account.php:567
msgid "New Password:"
msgstr "新しいパスワード:"
@@ -8549,7 +8992,7 @@ 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:567
+#: src/Module/Settings/Account.php:568
msgid "Confirm:"
msgstr "確認:"
@@ -8576,11 +9019,11 @@ msgstr "このfriendicaインスタンスにプロフィールをインポート
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:156
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:156
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr "リクエストの確認のため、親アカウントのパスワードを入力してください。"
@@ -8767,24 +9210,24 @@ msgid "Update Password"
msgstr ""
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: src/Module/Settings/Account.php:569
msgid "Current Password:"
msgstr "現在のパスワード:"
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: 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:552
+#: 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:553
+#: src/Module/Settings/Account.php:554
msgid "Password length is limited to 72 characters."
msgstr ""
@@ -8908,99 +9351,99 @@ msgstr "無効なメール。"
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
+#: 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:363
+#: src/Module/Settings/Account.php:364
msgid "Contact CSV file upload error"
msgstr "アップロードエラー:コンタクトCSVファイル"
-#: src/Module/Settings/Account.php:382
+#: src/Module/Settings/Account.php:383
msgid "Importing Contacts done"
msgstr "コンタクトのインポートが完了しました"
-#: src/Module/Settings/Account.php:395
+#: src/Module/Settings/Account.php:396
msgid "Relocate message has been send to your contacts"
msgstr "再配置メッセージがコンタクトに送信されました"
-#: src/Module/Settings/Account.php:412
+#: src/Module/Settings/Account.php:413
msgid "Unable to find your profile. Please contact your admin."
msgstr "プロフィールが見つかりません。管理者に連絡してください。"
-#: src/Module/Settings/Account.php:454
+#: src/Module/Settings/Account.php:455
msgid "Personal Page Subtypes"
msgstr "個人ページのサブタイプ"
-#: src/Module/Settings/Account.php:455
-msgid "Community Forum Subtypes"
-msgstr "コミュニティフォーラムのサブタイプ"
+#: src/Module/Settings/Account.php:456
+msgid "Community Group Subtypes"
+msgstr ""
-#: src/Module/Settings/Account.php:465
+#: src/Module/Settings/Account.php:466
msgid "Account for a personal profile."
msgstr "個人プロフィールを説明します。"
-#: src/Module/Settings/Account.php:472
+#: src/Module/Settings/Account.php:473
msgid ""
"Account for an organisation that automatically approves contact requests as "
"\"Followers\"."
msgstr "コンタクトリクエストを「フォロワー」として自動的に承認します。組織に適したアカウントです。"
-#: src/Module/Settings/Account.php:479
+#: 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:486
+#: src/Module/Settings/Account.php:487
msgid "Account for community discussions."
msgstr "コミュニティディスカッションのアカウント。"
-#: src/Module/Settings/Account.php:493
+#: 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:500
+#: 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:507
+#: src/Module/Settings/Account.php:508
msgid "Automatically approves all contact requests."
msgstr "すべてのコンタクトリクエストを自動的に承認します。"
-#: src/Module/Settings/Account.php:514
+#: 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:519
-msgid "Private Forum [Experimental]"
-msgstr "プライベートフォーラム[実験的]"
+#: src/Module/Settings/Account.php:520
+msgid "Private Group [Experimental]"
+msgstr ""
-#: src/Module/Settings/Account.php:521
+#: src/Module/Settings/Account.php:522
msgid "Requires manual approval of contact requests."
msgstr "コンタクトリクエストの手動承認が必要です。"
-#: src/Module/Settings/Account.php:530
+#: src/Module/Settings/Account.php:531
msgid "OpenID:"
msgstr "OpenID:"
-#: src/Module/Settings/Account.php:530
+#: src/Module/Settings/Account.php:531
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(オプション)このOpenIDがこのアカウントにログインできるようにします。"
-#: src/Module/Settings/Account.php:538
+#: src/Module/Settings/Account.php:539
msgid "Publish your profile in your local site directory?"
msgstr "ローカルサイトディレクトリにプロフィールを公開しますか?"
-#: src/Module/Settings/Account.php:538
+#: src/Module/Settings/Account.php:539
#, php-format
msgid ""
"Your profile will be published in this node's local "
@@ -9008,89 +9451,94 @@ msgid ""
" system settings."
msgstr "プロフィールはこのノードのローカルディレクトリで公開されます。システム設定によっては、プロフィールの詳細が公開される場合があります。"
-#: src/Module/Settings/Account.php:544
+#: 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:557
+#: src/Module/Settings/Account.php:558
msgid "Account Settings"
msgstr "アカウント設定"
-#: src/Module/Settings/Account.php:558
+#: 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:565
+#: src/Module/Settings/Account.php:566
msgid "Password Settings"
msgstr "パスワード設定"
-#: 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: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 URLを削除"
-#: 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 "friendicaインターフェイスを表示し、メールを送信するために使用する言語を設定します"
-#: 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 "1日あたりの友達リクエスト上限:"
-#: 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 "
@@ -9098,43 +9546,43 @@ msgid ""
"indexed or not."
msgstr "他の人があなたを簡単に見つけてフォローできるようにしたい場合は、この設定を有効にしてください。あなたのプロフィールはリモートシステムで検索可能です。この設定は、Friendicaが検索エンジンにあなたのプロフィールをインデックス化するかどうかも決定します。"
-#: 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
+#: src/Module/Settings/Account.php:589
msgid "Hide your public content from anonymous viewers"
msgstr ""
-#: src/Module/Settings/Account.php:588
+#: 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:589
+#: 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 "
@@ -9142,233 +9590,241 @@ 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 "Friendicaネットワークユーザーは、コンタクトリストにない場合でもプライベートメッセージを送信する場合があります。"
-#: src/Module/Settings/Account.php:594
+#: 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: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:618
+#: src/Module/Settings/Account.php:620
msgid "Create a desktop notification when:"
msgstr ""
-#: src/Module/Settings/Account.php:619
+#: src/Module/Settings/Account.php:621
msgid "Someone tagged you"
msgstr ""
-#: src/Module/Settings/Account.php:620
+#: src/Module/Settings/Account.php:622
msgid "Someone directly commented on your post"
msgstr ""
-#: src/Module/Settings/Account.php:621
+#: src/Module/Settings/Account.php:623
msgid "Someone liked your content"
msgstr ""
-#: src/Module/Settings/Account.php:621 src/Module/Settings/Account.php:622
+#: 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:622
+#: src/Module/Settings/Account.php:624
msgid "Someone shared your content"
msgstr ""
-#: src/Module/Settings/Account.php:623
+#: src/Module/Settings/Account.php:625
msgid "Someone commented in your thread"
msgstr ""
-#: src/Module/Settings/Account.php:624
+#: src/Module/Settings/Account.php:626
msgid "Someone commented in a thread where you commented"
msgstr ""
-#: src/Module/Settings/Account.php:625
+#: src/Module/Settings/Account.php:627
msgid "Someone commented in a thread where you interacted"
msgstr ""
-#: src/Module/Settings/Account.php:627
+#: src/Module/Settings/Account.php:629
msgid "Activate desktop notifications"
msgstr "デスクトップ通知を有効にする"
-#: src/Module/Settings/Account.php:627
+#: src/Module/Settings/Account.php:629
msgid "Show desktop popup on new notifications"
msgstr "新しい通知にデスクトップポップアップを表示する"
-#: src/Module/Settings/Account.php:631
+#: src/Module/Settings/Account.php:633
msgid "Text-only notification emails"
msgstr "テキストのみの通知メール"
-#: src/Module/Settings/Account.php:633
+#: src/Module/Settings/Account.php:635
msgid "Send text only notification emails, without the html part"
msgstr "HTML部分なしで、テキストのみの通知メールを送信します"
-#: src/Module/Settings/Account.php:637
+#: src/Module/Settings/Account.php:639
msgid "Show detailled notifications"
msgstr "詳細な通知を表示"
-#: src/Module/Settings/Account.php:639
+#: 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:643
+#: src/Module/Settings/Account.php:645
msgid "Show notifications of ignored contacts"
msgstr "無視されたコンタクトの通知を表示"
-#: src/Module/Settings/Account.php:645
+#: 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:648
+#: src/Module/Settings/Account.php:650
msgid "Advanced Account/Page Type Settings"
msgstr "アカウント/ページタイプの詳細設定"
-#: src/Module/Settings/Account.php:649
+#: src/Module/Settings/Account.php:651
msgid "Change the behaviour of this account for special situations"
msgstr "特別な状況でこのアカウントの動作を変更する"
-#: src/Module/Settings/Account.php:652
+#: src/Module/Settings/Account.php:654
msgid "Import Contacts"
msgstr "コンタクトをインポートする"
-#: src/Module/Settings/Account.php:653
+#: 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:654
+#: src/Module/Settings/Account.php:656
msgid "Upload File"
msgstr "ファイルをアップロード"
-#: src/Module/Settings/Account.php:657
+#: src/Module/Settings/Account.php:659
msgid "Relocate"
msgstr "再配置"
-#: src/Module/Settings/Account.php:658
+#: 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:659
+#: src/Module/Settings/Account.php:661
msgid "Resend relocate message to contacts"
msgstr "再配置メッセージをコンタクトに再送信する"
@@ -9577,224 +10033,250 @@ msgstr "フォルダへ移動"
msgid "Move to folder:"
msgstr "フォルダへ移動:"
-#: src/Module/Settings/Delegation.php:52
+#: src/Module/Settings/Delegation.php:54
msgid "Delegation successfully granted."
msgstr "委任が正常に許可されました。"
-#: src/Module/Settings/Delegation.php:54
+#: src/Module/Settings/Delegation.php:56
msgid "Parent user not found, unavailable or password doesn't match."
msgstr "親ユーザーが見つからないか、利用できないか、パスワードが一致しません。"
-#: src/Module/Settings/Delegation.php:58
+#: src/Module/Settings/Delegation.php:60
msgid "Delegation successfully revoked."
msgstr "委任が正常に取り消されました。"
-#: src/Module/Settings/Delegation.php:80
-#: src/Module/Settings/Delegation.php:102
+#: 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:94
+#: src/Module/Settings/Delegation.php:96
msgid "Delegate user not found."
msgstr "移譲ユーザーが見つかりません。"
-#: src/Module/Settings/Delegation.php:142
+#: src/Module/Settings/Delegation.php:144
msgid "No parent user"
msgstr "親となるユーザが存在しません。"
-#: src/Module/Settings/Delegation.php:153
-#: src/Module/Settings/Delegation.php:164
+#: src/Module/Settings/Delegation.php:155
+#: src/Module/Settings/Delegation.php:166
msgid "Parent User"
msgstr "親ユーザ"
-#: src/Module/Settings/Delegation.php:161
+#: src/Module/Settings/Delegation.php:163
msgid "Additional Accounts"
msgstr "追加のアカウント"
-#: src/Module/Settings/Delegation.php:162
+#: 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:163
+#: src/Module/Settings/Delegation.php:165
msgid "Register an additional account"
msgstr "追加アカウントの登録"
-#: src/Module/Settings/Delegation.php:167
+#: 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:171
+#: src/Module/Settings/Delegation.php:173
msgid "Delegates"
msgstr "移譲"
-#: src/Module/Settings/Delegation.php:173
+#: 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:174
+#: src/Module/Settings/Delegation.php:176
msgid "Existing Page Delegates"
msgstr "既存のページの移譲"
-#: src/Module/Settings/Delegation.php:176
+#: src/Module/Settings/Delegation.php:178
msgid "Potential Delegates"
msgstr "移譲先の候補"
-#: src/Module/Settings/Delegation.php:179
+#: src/Module/Settings/Delegation.php:181
msgid "Add"
msgstr "追加"
-#: src/Module/Settings/Delegation.php:180
+#: src/Module/Settings/Delegation.php:182
msgid "No entries."
msgstr "エントリは有りません。"
-#: src/Module/Settings/Display.php:137
+#: src/Module/Settings/Display.php:146
msgid "The theme you chose isn't available."
msgstr "選択したテーマは使用できません。"
-#: src/Module/Settings/Display.php:177
+#: src/Module/Settings/Display.php:186
#, php-format
msgid "%s - (Unsupported)"
msgstr "%s (サポートされていません)"
-#: src/Module/Settings/Display.php:212
+#: src/Module/Settings/Display.php:221
msgid "No preview"
msgstr ""
-#: src/Module/Settings/Display.php:213
+#: src/Module/Settings/Display.php:222
msgid "No image"
msgstr ""
-#: src/Module/Settings/Display.php:214
+#: src/Module/Settings/Display.php:223
msgid "Small Image"
msgstr ""
-#: src/Module/Settings/Display.php:215
+#: src/Module/Settings/Display.php:224
msgid "Large Image"
msgstr ""
-#: src/Module/Settings/Display.php:246
+#: src/Module/Settings/Display.php:259
msgid "Display Settings"
msgstr "ディスプレイの設定"
-#: src/Module/Settings/Display.php:248
+#: src/Module/Settings/Display.php:261
msgid "General Theme Settings"
msgstr "一般的なテーマ設定"
-#: src/Module/Settings/Display.php:249
+#: src/Module/Settings/Display.php:262
msgid "Custom Theme Settings"
msgstr "カスタムテーマ設定"
-#: src/Module/Settings/Display.php:250
+#: src/Module/Settings/Display.php:263
msgid "Content Settings"
msgstr "コンテンツ設定"
-#: src/Module/Settings/Display.php:251 view/theme/duepuntozero/config.php:86
+#: 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:257
+#: src/Module/Settings/Display.php:265
+msgid "Timelines"
+msgstr ""
+
+#: src/Module/Settings/Display.php:272
msgid "Display Theme:"
msgstr "ディスプレイテーマ:"
-#: src/Module/Settings/Display.php:258
+#: src/Module/Settings/Display.php:273
msgid "Mobile Theme:"
msgstr "モバイルテーマ:"
-#: src/Module/Settings/Display.php:261
+#: src/Module/Settings/Display.php:276
msgid "Number of items to display per page:"
msgstr "ページごとに表示する項目の数:"
-#: src/Module/Settings/Display.php:261 src/Module/Settings/Display.php:262
+#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277
msgid "Maximum of 100 items"
msgstr "最大100項目"
-#: src/Module/Settings/Display.php:262
+#: 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:263
+#: src/Module/Settings/Display.php:278
msgid "Update browser every xx seconds"
msgstr "xx秒ごとにブラウザーを更新する"
-#: src/Module/Settings/Display.php:263
+#: src/Module/Settings/Display.php:278
msgid "Minimum of 10 seconds. Enter -1 to disable it."
msgstr "10秒以上。 -1を入力して無効にします。"
-#: src/Module/Settings/Display.php:264
+#: src/Module/Settings/Display.php:279
msgid "Display emoticons"
msgstr ""
-#: src/Module/Settings/Display.php:264
+#: src/Module/Settings/Display.php:279
msgid "When enabled, emoticons are replaced with matching symbols."
msgstr ""
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:280
msgid "Infinite scroll"
msgstr "無限スクロール"
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:280
msgid "Automatic fetch new items when reaching the page end."
msgstr "ページの最後に到達したとき、新規項目を自動取得する"
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:281
msgid "Enable Smart Threading"
msgstr ""
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:281
msgid "Enable the automatic suppression of extraneous thread indentation."
msgstr ""
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:282
msgid "Display the Dislike feature"
msgstr ""
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:282
msgid ""
"Display the Dislike button and dislike reactions on posts and comments."
msgstr ""
-#: src/Module/Settings/Display.php:268
+#: src/Module/Settings/Display.php:283
msgid "Display the resharer"
msgstr ""
-#: src/Module/Settings/Display.php:268
+#: 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:269
+#: src/Module/Settings/Display.php:284
msgid "Stay local"
msgstr ""
-#: src/Module/Settings/Display.php:269
+#: 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:270
+#: src/Module/Settings/Display.php:285
msgid "Link preview mode"
msgstr ""
-#: src/Module/Settings/Display.php:270
+#: 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:272
+#: 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:273
+#: 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 "追加機能"
@@ -9807,156 +10289,152 @@ msgstr "接続されたアプリ"
msgid "Remove authorization"
msgstr "承認を削除"
-#: src/Module/Settings/Profile/Index.php:84
-msgid "Profile Name is required."
-msgstr "プロフィール名が必要です。"
+#: src/Module/Settings/Profile/Index.php:116
+msgid "Display Name is required."
+msgstr ""
-#: src/Module/Settings/Profile/Index.php:134
+#: src/Module/Settings/Profile/Index.php:167
msgid "Profile couldn't be updated."
msgstr ""
-#: src/Module/Settings/Profile/Index.php:175
-#: src/Module/Settings/Profile/Index.php:195
+#: src/Module/Settings/Profile/Index.php:205
+#: src/Module/Settings/Profile/Index.php:226
msgid "Label:"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:176
-#: src/Module/Settings/Profile/Index.php:196
+#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:227
msgid "Value:"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:186
-#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:217
+#: src/Module/Settings/Profile/Index.php:238
msgid "Field Permissions"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:187
-#: src/Module/Settings/Profile/Index.php:207
+#: 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:193
+#: src/Module/Settings/Profile/Index.php:224
msgid "Add a new profile field"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:216
+#: 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:218
+#: 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:228
+#: src/Module/Settings/Profile/Index.php:255
msgid "Profile Actions"
msgstr "プロフィールアクション"
-#: src/Module/Settings/Profile/Index.php:229
+#: src/Module/Settings/Profile/Index.php:256
msgid "Edit Profile Details"
msgstr "プロフィールの詳細を編集"
-#: src/Module/Settings/Profile/Index.php:231
+#: src/Module/Settings/Profile/Index.php:258
msgid "Change Profile Photo"
msgstr "プロフィール写真の変更"
-#: src/Module/Settings/Profile/Index.php:236
+#: src/Module/Settings/Profile/Index.php:261
msgid "Profile picture"
msgstr "プロフィールの写真"
-#: src/Module/Settings/Profile/Index.php:237
+#: src/Module/Settings/Profile/Index.php:262
msgid "Location"
msgstr "位置情報"
-#: src/Module/Settings/Profile/Index.php:238 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 "その他"
-#: src/Module/Settings/Profile/Index.php:239
+#: src/Module/Settings/Profile/Index.php:264
msgid "Custom Profile Fields"
msgstr ""
-#: src/Module/Settings/Profile/Index.php:241 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:245
-msgid "Display name:"
-msgstr "表示名:"
-
-#: src/Module/Settings/Profile/Index.php:248
-msgid "Street Address:"
-msgstr "住所:"
-
-#: src/Module/Settings/Profile/Index.php:249
-msgid "Locality/City:"
-msgstr "地域/市:"
-
-#: src/Module/Settings/Profile/Index.php:250
-msgid "Region/State:"
-msgstr "地域/州:"
-
-#: src/Module/Settings/Profile/Index.php:251
-msgid "Postal/Zip Code:"
-msgstr "郵便番号:"
-
-#: src/Module/Settings/Profile/Index.php:252
-msgid "Country:"
-msgstr "国:"
-
-#: src/Module/Settings/Profile/Index.php:254
-msgid "XMPP (Jabber) address:"
-msgstr "XMPP(Jabber)アドレス:"
-
-#: 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 "ホームページのURL:"
-
-#: src/Module/Settings/Profile/Index.php:257
-msgid "Public Keywords:"
-msgstr "公開キーワード:"
-
-#: src/Module/Settings/Profile/Index.php:257
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(友人を候補を提案するために使用ます。また他の人が見ることができます。)"
-
-#: src/Module/Settings/Profile/Index.php:258
-msgid "Private Keywords:"
-msgstr "プライベートキーワード:"
-
-#: src/Module/Settings/Profile/Index.php:258
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(プロフィールの検索に使用され、他のユーザーには表示されません)"
-
-#: src/Module/Settings/Profile/Index.php:259
+#: src/Module/Settings/Profile/Index.php:266
#, php-format
msgid ""
"Custom fields appear on your profile page.
\n"
"\t\t\t\tYou can use BBCodes in the field values.
\n"
"\t\t\t\tReorder by dragging the field title.
\n"
"\t\t\t\tEmpty the label field to remove a custom field.
\n"
-"\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.
"
+"\t\t\t\tNon-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 "住所:"
+
+#: 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
@@ -10067,6 +10545,42 @@ msgstr "これにより、アカウントが完全に削除されます。 こ
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
@@ -10388,20 +10902,41 @@ msgid ""
" e.g. Mastodon."
msgstr "フォローしているアカウントのリストをCSVファイルとしてエクスポートします。 マストドンなどに対応します。"
+#: 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 "Not Found"
+msgid ""
+"This node has blocked the top-level author or the author of the shared post."
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"
-"
"
+"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
@@ -10413,7 +10948,7 @@ msgstr ""
msgid "Exception thrown in %s:%d"
msgstr ""
-#: src/Module/Tos.php:57 src/Module/Tos.php:106
+#: 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"
@@ -10426,14 +10961,14 @@ msgid ""
"settings, it is not necessary for communication."
msgstr "登録時、およびユーザーアカウントとコンタクト間の通信を提供するために、ユーザーは表示名(ペンネーム)、ユーザー名(ニックネーム)、および有効な電子メールアドレスを提供する必要があります。\n他のプロフィールの詳細が表示されていなくても、ページの訪問者はアカウントのプロフィールページで名前にアクセスできます。\n電子メールアドレスは、インタラクションに関するユーザー通知の送信にのみ使用されますが、表示されることはありません。\nノードのユーザーディレクトリまたはグローバルユーザーディレクトリでのアカウントのリストはオプションであり、ユーザー設定で制御できます。通信には必要ありません。"
-#: src/Module/Tos.php:58 src/Module/Tos.php:107
+#: 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:108
+#: 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"
@@ -10444,11 +10979,11 @@ msgid ""
"from the nodes of the communication partners."
msgstr ""
-#: src/Module/Tos.php:62 src/Module/Tos.php:105
+#: src/Module/Tos.php:63 src/Module/Tos.php:106
msgid "Privacy Statement"
msgstr "プライバシーに関する声明"
-#: src/Module/Tos.php:102
+#: src/Module/Tos.php:103
msgid "Rules"
msgstr ""
@@ -10456,6 +10991,10 @@ msgstr ""
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 "クローズドなサーバでのユーザーインポートは、管理者のみが実行できます。"
@@ -10504,21 +11043,21 @@ msgstr "エラー!ファイルにバージョンデータがありません!
msgid "User '%s' already exists on this server!"
msgstr "ユーザー '%s' はこのサーバーに既に存在します!"
-#: src/Module/User/Import.php:263
+#: src/Module/User/Import.php:267
msgid "User creation error"
msgstr "ユーザ作成エラー"
-#: src/Module/User/Import.php:312
+#: 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:361
+#: src/Module/User/Import.php:365
msgid "User profile creation error"
msgstr "ユーザープロフィール作成エラー"
-#: src/Module/User/Import.php:412
+#: src/Module/User/Import.php:416
msgid "Done. You can now login with your username and password"
msgstr "完了しました。これでであなたのユーザー名とパスワードでログインできます。 "
@@ -10652,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?"
@@ -11167,248 +11706,257 @@ msgstr "これらのメッセージを受信したくない場合は、この投
msgid "%s posted an update."
msgstr "%sが更新を投稿しました。"
-#: 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:181
msgid "This entry was edited"
msgstr "このエントリは編集されました"
-#: src/Object/Post.php:206
+#: 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 "編集"
-#: 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:265
+#: 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:275
+#: 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:310
+#: src/Object/Post.php:333
msgid "I will attend"
msgstr "参加します"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I will not attend"
msgstr "私は出席しません"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I might attend"
msgstr "私は出席するかもしれません"
-#: src/Object/Post.php:340
+#: src/Object/Post.php:363
msgid "Ignore thread"
msgstr "スレッドを無視"
-#: src/Object/Post.php:341
+#: src/Object/Post.php:364
msgid "Unignore thread"
msgstr "無視しないスレッド"
-#: src/Object/Post.php:342
+#: src/Object/Post.php:365
msgid "Toggle ignore status"
msgstr ""
-#: src/Object/Post.php:352
+#: src/Object/Post.php:375
msgid "Add star"
msgstr ""
-#: src/Object/Post.php:353
+#: src/Object/Post.php:376
msgid "Remove star"
msgstr ""
-#: src/Object/Post.php:354
+#: src/Object/Post.php:377
msgid "Toggle star status"
msgstr ""
-#: src/Object/Post.php:365
+#: src/Object/Post.php:388
msgid "Pin"
msgstr ""
-#: src/Object/Post.php:366
+#: src/Object/Post.php:389
msgid "Unpin"
msgstr ""
-#: src/Object/Post.php:367
+#: src/Object/Post.php:390
msgid "Toggle pin status"
msgstr ""
-#: src/Object/Post.php:370
+#: src/Object/Post.php:393
msgid "Pinned"
msgstr ""
-#: src/Object/Post.php:375
+#: src/Object/Post.php:398
msgid "Add tag"
msgstr ""
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote share this"
msgstr ""
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote Share"
msgstr ""
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare this"
msgstr ""
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare"
msgstr ""
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Cancel your Reshare"
msgstr ""
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Unshare"
msgstr ""
-#: src/Object/Post.php:443
+#: src/Object/Post.php:466
#, php-format
msgid "%s (Received %s)"
msgstr "%s (%s を受け取りました)"
-#: src/Object/Post.php:448
+#: src/Object/Post.php:472
msgid "Comment this item on your system"
msgstr ""
-#: src/Object/Post.php:448
+#: src/Object/Post.php:472
msgid "Remote comment"
msgstr ""
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via ..."
msgstr ""
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via external services"
msgstr ""
-#: src/Object/Post.php:498
+#: src/Object/Post.php:523
msgid "to"
msgstr "に"
-#: src/Object/Post.php:499
+#: src/Object/Post.php:524
msgid "via"
msgstr "投稿先:"
-#: src/Object/Post.php:500
+#: src/Object/Post.php:525
msgid "Wall-to-Wall"
msgstr "壁間"
-#: src/Object/Post.php:501
+#: src/Object/Post.php:526
msgid "via Wall-To-Wall:"
msgstr "Wall-to-Wall経由:"
-#: src/Object/Post.php:545
+#: src/Object/Post.php:573
#, php-format
msgid "Reply to %s"
msgstr "%sへの返信"
-#: src/Object/Post.php:548
+#: src/Object/Post.php:576
msgid "More"
msgstr "更に"
-#: src/Object/Post.php:566
+#: src/Object/Post.php:595
msgid "Notifier task is pending"
msgstr "通知タスクは保留中です"
-#: src/Object/Post.php:567
+#: src/Object/Post.php:596
msgid "Delivery to remote servers is pending"
msgstr "リモートサーバーへの配信は保留中です"
-#: src/Object/Post.php:568
+#: src/Object/Post.php:597
msgid "Delivery to remote servers is underway"
msgstr "リモートサーバーへの配信が進行中です"
-#: src/Object/Post.php:569
+#: src/Object/Post.php:598
msgid "Delivery to remote servers is mostly done"
msgstr "リモートサーバーへの配信はもうすぐ完了します"
-#: src/Object/Post.php:570
+#: src/Object/Post.php:599
msgid "Delivery to remote servers is done"
msgstr "リモートサーバーへの配信が完了しました"
-#: src/Object/Post.php:590
+#: src/Object/Post.php:619
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
msgstr[0] "%dコメント"
-#: src/Object/Post.php:591
+#: src/Object/Post.php:620
msgid "Show more"
msgstr "もっと見せる"
-#: src/Object/Post.php:592
+#: src/Object/Post.php:621
msgid "Show fewer"
msgstr "表示を減らす"
-#: src/Object/Post.php:628
+#: src/Object/Post.php:657
#, php-format
msgid "Reshared by: %s"
msgstr ""
-#: src/Object/Post.php:633
+#: src/Object/Post.php:662
#, php-format
msgid "Viewed by: %s"
msgstr ""
-#: src/Object/Post.php:638
+#: src/Object/Post.php:667
#, php-format
msgid "Liked by: %s"
msgstr ""
-#: src/Object/Post.php:643
+#: src/Object/Post.php:672
#, php-format
msgid "Disliked by: %s"
msgstr ""
-#: src/Object/Post.php:648
+#: src/Object/Post.php:677
#, php-format
msgid "Attended by: %s"
msgstr ""
-#: src/Object/Post.php:653
+#: src/Object/Post.php:682
#, php-format
msgid "Maybe attended by: %s"
msgstr ""
-#: src/Object/Post.php:658
+#: src/Object/Post.php:687
#, php-format
msgid "Not attended by: %s"
msgstr ""
-#: src/Object/Post.php:663
+#: src/Object/Post.php:692
#, php-format
msgid "Reacted with %s by: %s"
msgstr ""
@@ -11417,21 +11965,21 @@ msgstr ""
msgid "(no subject)"
msgstr ""
-#: src/Protocol/OStatus.php:1388
+#: src/Protocol/OStatus.php:1390
#, php-format
msgid "%s is now following %s."
msgstr "%sは現在 %s をフォローしています。"
-#: src/Protocol/OStatus.php:1389
+#: src/Protocol/OStatus.php:1391
msgid "following"
msgstr "フォローしている"
-#: src/Protocol/OStatus.php:1392
+#: src/Protocol/OStatus.php:1394
#, php-format
msgid "%s stopped following %s."
msgstr "%s は %s のフォローを解除しました"
-#: src/Protocol/OStatus.php:1393
+#: src/Protocol/OStatus.php:1395
msgid "stopped following"
msgstr "フォローを解除しました"
@@ -11789,7 +12337,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
@@ -11808,7 +12356,7 @@ msgstr ""
msgid "Community Pages"
msgstr ""
-#: view/theme/vier/config.php:139 view/theme/vier/theme.php:149
+#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148
msgid "Community Profiles"
msgstr ""
@@ -11816,7 +12364,7 @@ msgstr ""
msgid "Help or @NewHere ?"
msgstr ""
-#: view/theme/vier/config.php:141 view/theme/vier/theme.php:320
+#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319
msgid "Connect Services"
msgstr ""
@@ -11824,10 +12372,10 @@ msgstr ""
msgid "Find Friends"
msgstr ""
-#: view/theme/vier/config.php:143 view/theme/vier/theme.php:176
+#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175
msgid "Last users"
msgstr ""
-#: view/theme/vier/theme.php:235
+#: 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 60cb4a456c..265125df7f 100644
--- a/view/lang/ja/strings.php
+++ b/view/lang/ja/strings.php
@@ -275,37 +275,43 @@ $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['remove'] = '削除';
-$a->strings['Delete Selected Items'] = '選択した項目を削除';
-$a->strings['%s reshared this.'] = '%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['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'] = 'ステータス';
@@ -325,7 +331,6 @@ $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'] = 'ログイン';
@@ -409,7 +414,6 @@ $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'] = 'プロトコル';
@@ -543,6 +547,8 @@ $a->strings['Sep'] = '9月';
$a->strings['Oct'] = '10月';
$a->strings['Nov'] = '11月';
$a->strings['Dec'] = '12月';
+$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'] = '有効な既存のフォルダを入力してください';
@@ -570,9 +576,11 @@ $a->strings['%s: updating %s table.'] = '%s : %sテーブルを更新してい
$a->strings['Unauthorized'] = '認証されていません';
$a->strings['Internal Server Error'] = '内部サーバーエラー';
$a->strings['Legacy module file not found: %s'] = 'レガシーモジュールファイルが見つかりません: %s';
+$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がありません。';
@@ -607,16 +615,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['activity'] = 'アクティビティ';
$a->strings['post'] = '投稿';
$a->strings['Content warning: %s'] = 'コンテンツの警告: %s';
@@ -686,7 +684,6 @@ $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['
@@ -840,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.'] = 'アプリメニューにリストされているアドオンへの公開アクセスを許可しません。';
@@ -919,8 +915,6 @@ $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\'と等しくありません。設定を修正してください。';
@@ -979,7 +973,6 @@ $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'] = '二要素認証';
@@ -1008,6 +1001,13 @@ $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コンタクトを編集しました。',
];
@@ -1022,7 +1022,6 @@ $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'] = '更新';
@@ -1038,7 +1037,6 @@ $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 not found.'] = 'コンタクトが見つかりません。';
$a->strings['Contact update failed.'] = 'コンタクトの更新に失敗しました。';
$a->strings['Return to contact editor'] = 'コンタクトエディターに戻る';
$a->strings['Name'] = '名';
@@ -1046,7 +1044,6 @@ $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['Follower (%s)'] = [
0 => 'フォロワー( %s )',
];
@@ -1125,30 +1122,15 @@ $a->strings['Refetch contact data'] = 'コンタクトデータを再取得す
$a->strings['Toggle Blocked status'] = 'ブロック状態の切り替え';
$a->strings['Toggle Ignored status'] = '無視ステータスの切り替え';
$a->strings['Bad Request.'] = '要求の形式が正しくありません。';
-$a->strings['Contact is deleted.'] = 'コンタクトが削除されます。';
$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['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['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'] = [
@@ -1215,26 +1197,6 @@ $a->strings['Please visit Friendi.ca to learn m
$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['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:'] = 'ヘルプ:';
@@ -1297,7 +1259,6 @@ $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 requested item doesn\'t exist or has been deleted.'] = '要求された項目は存在しないか、削除されました。';
$a->strings['The feed for this item is unavailable.'] = 'この項目のフィードは利用できません。';
$a->strings['System down for maintenance'] = 'メンテナンスのためのシステムダウン';
$a->strings['A Decentralized Social Network'] = '分権化されたソーシャルネットワーク';
@@ -1308,17 +1269,13 @@ $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 exceeds size limit of %s'] = '画像サイズ上限 %s を超えています。';
$a->strings['Image upload failed.'] = '画像アップロードに失敗しました。';
$a->strings['Normal Account Page'] = '通常のアカウントページ';
$a->strings['Soapbox Page'] = 'Soapboxページ';
-$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 はコンタクトのブロックを解除しました',
@@ -1358,10 +1315,8 @@ $a->strings['Item not found'] = '項目が見つかりません';
$a->strings['Item Guid'] = '項目GUID';
$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['Registered users'] = '登録ユーザー';
$a->strings['Pending registrations'] = '保留中の登録';
$a->strings['%s user blocked'] = [
@@ -1454,6 +1409,7 @@ $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'] = 'サーバーは現在、新しいファイルのアップロードを受け入れられません。管理者に連絡してください';
@@ -1470,7 +1426,6 @@ $a->strings['%d year old'] = [
0 => '%d歳',
];
$a->strings['Description:'] = '説明:';
-$a->strings['Forums:'] = 'フォーラム:';
$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.'] = 'あなたのネットワークではリモート購読ができません。あなたのシステム上で直接購読してください。';
@@ -1558,7 +1513,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".'] = 'コンタクトのリクエストを「フォロワー」として自動的に承認します。ニュース再配信に適したアカウントです。';
@@ -1567,7 +1521,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がこのアカウントにログインできるようにします。';
@@ -1582,6 +1535,7 @@ $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:'] = 'あなたの言語:';
@@ -1704,7 +1658,6 @@ $a->strings['Beginning of week:'] = '週の始まり:';
$a->strings['Additional Features'] = '追加機能';
$a->strings['Connected Apps'] = '接続されたアプリ';
$a->strings['Remove authorization'] = '承認を削除';
-$a->strings['Profile Name is required.'] = 'プロフィール名が必要です。';
$a->strings['(click to open/close)'] = '(クリックして開く・閉じる)';
$a->strings['Profile Actions'] = 'プロフィールアクション';
$a->strings['Edit Profile Details'] = 'プロフィールの詳細を編集';
@@ -1713,7 +1666,6 @@ $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:'] = '地域/州:';
@@ -1829,6 +1781,7 @@ $a->strings['At the time of registration, and for providing communications betwe
ノードのユーザーディレクトリまたはグローバルユーザーディレクトリでのアカウントのリストはオプションであり、ユーザー設定で制御できます。通信には必要ありません。';
$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['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サーバーからアカウントをインポートできます。';
@@ -1868,8 +1821,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.'] = 'ディレクトリ ページでは、このネットワークまたは他のフェデレーションサイト内の他のユーザーを検索できます。プロフィールページで接続またはフォローリンクを探します。要求された場合、独自の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'] = 'ヘルプを得る';
diff --git a/view/lang/nl/messages.po b/view/lang/nl/messages.po
index b52302f211..6ecf03a3b2 100644
--- a/view/lang/nl/messages.po
+++ b/view/lang/nl/messages.po
@@ -20,7 +20,7 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-04-23 21:21+0000\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"
@@ -50,26 +50,26 @@ msgstr "Item kan niet worden opgehaald."
msgid "Empty post discarded."
msgstr "Lege post weggegooid."
-#: mod/item.php:411 src/Module/Admin/Themes/Details.php:39
+#: 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:435 mod/message.php:68 mod/message.php:114 mod/notes.php:45
-#: mod/photos.php:152 mod/photos.php:669 src/Model/Event.php:522
+#: 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:52
+#: 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/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/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
@@ -79,9 +79,9 @@ msgstr "Item niet gevonden."
#: 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:69
-#: src/Module/Settings/Display.php:69 src/Module/Settings/Display.php:151
+#: 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
@@ -227,90 +227,90 @@ msgstr "\n\t\t\tJe login details zijn de volgende:\n\n\t\t\tSite Locatie:\t%1$s\
msgid "Your password has been changed at %s"
msgstr "Je wachtwoord is veranderd op %s"
-#: mod/message.php:46 mod/message.php:129 src/Content/Nav.php:319
+#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321
msgid "New Message"
msgstr "Nieuw Bericht"
-#: 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 "Geen ontvanger geselecteerd."
-#: mod/message.php:88
+#: mod/message.php:87
msgid "Unable to locate contact information."
msgstr "Ik kan geen contact informatie vinden."
-#: 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 "Bericht kon niet verzonden worden."
-#: 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 "Fout bij het verzamelen van berichten."
-#: 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 "Verwerpen"
-#: mod/message.php:136 src/Content/Nav.php:316 view/theme/frio/theme.php:241
+#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Messages"
msgstr "Privéberichten"
-#: mod/message.php:149
+#: mod/message.php:148
msgid "Conversation not found."
msgstr "Gesprek niet gevonden."
-#: mod/message.php:154
+#: mod/message.php:153
msgid "Message was not deleted."
msgstr "Bericht was niet gewist."
-#: mod/message.php:169
+#: mod/message.php:168
msgid "Conversation was not removed."
msgstr "Conversatie was niet verwijderd."
-#: mod/message.php:182 mod/message.php:287 src/Module/Profile/UnkMail.php:145
+#: 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:191 src/Module/Profile/UnkMail.php:151
+#: mod/message.php:190 src/Module/Profile/UnkMail.php:151
msgid "Send Private Message"
msgstr "Verstuur privébericht"
-#: mod/message.php:192 mod/message.php:347
+#: mod/message.php:191 mod/message.php:346
msgid "To:"
msgstr "Aan:"
-#: mod/message.php:193 mod/message.php:348
+#: mod/message.php:192 mod/message.php:347
msgid "Subject:"
msgstr "Onderwerp:"
-#: mod/message.php:197 mod/message.php:351 src/Module/Invite.php:171
+#: mod/message.php:196 mod/message.php:350 src/Module/Invite.php:171
msgid "Your message:"
msgstr "Jouw bericht:"
-#: mod/message.php:200 mod/message.php:355 src/Content/Conversation.php:360
+#: 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:201 mod/message.php:356 src/Module/Post/Edit.php:135
+#: 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:202 mod/message.php:358 mod/photos.php:1291
-#: src/Content/Conversation.php:389 src/Content/Conversation.php:733
-#: src/Module/Item/Compose.php:204 src/Module/Post/Edit.php:145
-#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:550
+#: 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:203 mod/message.php:357 mod/photos.php:702
-#: mod/photos.php:819 mod/photos.php:1097 mod/photos.php:1138
-#: mod/photos.php:1194 mod/photos.php:1268
+#: 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:339
+#: 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
@@ -318,59 +318,64 @@ msgstr "Even geduld"
#: 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:230 src/Object/Post.php:1063
+#: 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:224
+#: mod/message.php:223
msgid "No messages."
msgstr "Geen berichten."
-#: mod/message.php:280
+#: mod/message.php:279
msgid "Message not available."
msgstr "Bericht niet beschikbaar."
-#: mod/message.php:324
+#: mod/message.php:323
msgid "Delete message"
msgstr "Verwijder bericht"
-#: mod/message.php:326 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:341 mod/message.php:454
+#: mod/message.php:340 mod/message.php:453
msgid "Delete conversation"
msgstr "Verwijder gesprek"
-#: mod/message.php:343
+#: 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:346
+#: mod/message.php:345
msgid "Send Reply"
msgstr "Verstuur Antwoord"
-#: mod/message.php:428
+#: mod/message.php:427
#, php-format
msgid "Unknown sender - %s"
msgstr "Onbekende afzender - %s"
-#: mod/message.php:430
+#: mod/message.php:429
#, php-format
msgid "You and %s"
msgstr "Jij en %s"
-#: mod/message.php:432
+#: mod/message.php:431
#, php-format
msgid "%s and You"
msgstr "%s en jij"
-#: mod/message.php:460
+#: mod/message.php:459
#, php-format
msgid "%d message"
msgid_plural "%d messages"
@@ -385,14 +390,14 @@ msgstr "Persoonlijke Nota's"
msgid "Personal notes are visible only by yourself."
msgstr ""
-#: mod/notes.php:57 src/Content/Text/HTML.php:857
+#: 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:577
-#: src/Model/Event.php:514 src/Model/Profile.php:234
+#: 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
@@ -404,22 +409,22 @@ msgid "User not found."
msgstr "Gebruiker niet gevonden."
#: mod/photos.php:106 src/Module/BaseProfile.php:68
-#: src/Module/Profile/Photos.php:399
+#: src/Module/Profile/Photos.php:379
msgid "Photo Albums"
msgstr "Fotoalbums"
-#: mod/photos.php:107 src/Module/Profile/Photos.php:400
-#: src/Module/Profile/Photos.php:420
+#: 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:867 src/Module/Profile/Photos.php:402
-#: src/Module/Profile/Photos.php:422
+#: 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:74
-#: src/Module/Profile/Photos.php:383
+#: mod/photos.php:121 src/Module/BaseSettings.php:72
+#: src/Module/Profile/Photos.php:363
msgid "everybody"
msgstr "iedereen"
@@ -431,72 +436,72 @@ msgstr "Contactinformatie niet beschikbaar"
msgid "Album not found."
msgstr "Album niet gevonden"
-#: mod/photos.php:242
+#: mod/photos.php:244
msgid "Album successfully deleted"
msgstr "Album succesvol gedeeld"
-#: mod/photos.php:244
+#: mod/photos.php:246
msgid "Album was empty."
msgstr "Het album was leeg"
-#: mod/photos.php:276
+#: mod/photos.php:277
msgid "Failed to delete the photo."
msgstr "Foto verwijderen mislukt."
-#: mod/photos.php:544
+#: mod/photos.php:545
msgid "a photo"
msgstr "een foto"
-#: mod/photos.php:544
+#: mod/photos.php:545
#, 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:581 src/Module/Conversation/Community.php:188
-#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:315
+#: 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"
-#: mod/photos.php:586
+#: mod/photos.php:587
msgid "No photos selected"
msgstr "Geen foto's geselecteerd"
-#: mod/photos.php:718
+#: mod/photos.php:721
#, php-format
msgid "The maximum accepted image size is %s"
msgstr ""
-#: mod/photos.php:725
+#: mod/photos.php:728
msgid "Upload Photos"
msgstr "Upload foto's"
-#: mod/photos.php:729 mod/photos.php:815
+#: mod/photos.php:732 mod/photos.php:820
msgid "New album name: "
msgstr "Nieuwe albumnaam: "
-#: mod/photos.php:730
+#: mod/photos.php:733
msgid "or select existing album:"
msgstr "Of selecteer bestaand album:"
-#: mod/photos.php:731
+#: 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:733 mod/photos.php:1093 src/Content/Conversation.php:391
-#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:182
+#: 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:796
+#: 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:797 mod/photos.php:820
+#: mod/photos.php:802 mod/photos.php:825
msgid "Delete Album"
msgstr "Verwijder album"
-#: mod/photos.php:798 mod/photos.php:899 src/Content/Conversation.php:407
+#: 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
@@ -506,254 +511,271 @@ msgstr "Verwijder album"
msgid "Cancel"
msgstr "Annuleren"
-#: mod/photos.php:824
+#: mod/photos.php:829
msgid "Edit Album"
msgstr "Album wijzigen"
-#: mod/photos.php:825
+#: mod/photos.php:830
msgid "Drop Album"
msgstr "Album verwijderen"
-#: mod/photos.php:829
+#: mod/photos.php:834
msgid "Show Newest First"
msgstr "Toon niewste eerst"
-#: mod/photos.php:831
+#: mod/photos.php:836
msgid "Show Oldest First"
msgstr "Toon oudste eerst"
-#: mod/photos.php:852 src/Module/Profile/Photos.php:370
+#: mod/photos.php:857 src/Module/Profile/Photos.php:350
msgid "View Photo"
msgstr "Bekijk foto"
-#: mod/photos.php:885
+#: 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:887
+#: mod/photos.php:891
msgid "Photo not available"
msgstr "Foto is niet beschikbaar"
-#: mod/photos.php:897
+#: mod/photos.php:901
msgid "Do you really want to delete this photo?"
msgstr "Wil je echt deze foto verwijderen?"
-#: mod/photos.php:898 mod/photos.php:1098
+#: mod/photos.php:902 mod/photos.php:1102
msgid "Delete Photo"
msgstr "Verwijder foto"
-#: mod/photos.php:996
+#: mod/photos.php:1000
msgid "View photo"
msgstr "Bekijk foto"
-#: mod/photos.php:998
+#: mod/photos.php:1002
msgid "Edit photo"
msgstr "Bewerk foto"
-#: mod/photos.php:999
+#: mod/photos.php:1003
msgid "Delete photo"
msgstr "Foto verwijderen"
-#: mod/photos.php:1000
+#: mod/photos.php:1004
msgid "Use as profile photo"
msgstr "Gebruik als profielfoto"
-#: mod/photos.php:1007
+#: mod/photos.php:1011
msgid "Private Photo"
msgstr "Privé foto"
-#: mod/photos.php:1013
+#: mod/photos.php:1017
msgid "View Full Size"
msgstr "Bekijk in volledig formaat"
-#: mod/photos.php:1066
+#: mod/photos.php:1070
msgid "Tags: "
msgstr "Labels: "
-#: mod/photos.php:1069
+#: mod/photos.php:1073
msgid "[Select tags to remove]"
msgstr "[Selecteer tags om te verwijderen]"
-#: mod/photos.php:1084
+#: mod/photos.php:1088
msgid "New album name"
msgstr "Nieuwe albumnaam"
-#: mod/photos.php:1085
+#: mod/photos.php:1089
msgid "Caption"
msgstr "Onderschrift"
-#: mod/photos.php:1086
+#: mod/photos.php:1090
msgid "Add a Tag"
msgstr "Een label toevoegen"
-#: mod/photos.php:1086
+#: mod/photos.php:1090
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl, #Ardennen, #camping "
-#: mod/photos.php:1087
+#: mod/photos.php:1091
msgid "Do not rotate"
msgstr "Niet roteren"
-#: mod/photos.php:1088
+#: mod/photos.php:1092
msgid "Rotate CW (right)"
msgstr "Roteren met de klok mee (rechts)"
-#: mod/photos.php:1089
+#: mod/photos.php:1093
msgid "Rotate CCW (left)"
msgstr "Roteren tegen de klok in (links)"
-#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1265
-#: src/Module/Contact.php:588 src/Module/Item/Compose.php:188
-#: src/Object/Post.php:1060
+#: 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:1137 mod/photos.php:1193 mod/photos.php:1267
-#: src/Object/Post.php:544 src/Object/Post.php:1062
+#: 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:1139 mod/photos.php:1195 mod/photos.php:1269
-#: src/Content/Conversation.php:404 src/Module/Calendar/Event/Form.php:248
-#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:165
-#: src/Object/Post.php:1074
+#: 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:1140 src/Content/Conversation.php:359
-#: src/Module/Post/Edit.php:130 src/Object/Post.php:1064
+#: 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:1226 src/Content/Conversation.php:649
-#: src/Object/Post.php:257
+#: mod/photos.php:1236 src/Content/Conversation.php:1464
+#: src/Object/Post.php:260
msgid "Select"
msgstr "Kies"
-#: mod/photos.php:1227 src/Content/Conversation.php:650
+#: 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:1288 src/Object/Post.php:385
+#: mod/photos.php:1298 src/Object/Post.php:408
msgid "Like"
msgstr ""
-#: mod/photos.php:1289 src/Object/Post.php:385
+#: mod/photos.php:1299 src/Object/Post.php:408
msgid "I like this (toggle)"
msgstr "Vind ik leuk"
-#: mod/photos.php:1290 src/Object/Post.php:386
+#: mod/photos.php:1300 src/Object/Post.php:409
msgid "Dislike"
msgstr ""
-#: mod/photos.php:1292 src/Object/Post.php:386
+#: mod/photos.php:1302 src/Object/Post.php:409
msgid "I don't like this (toggle)"
msgstr "Vind ik niet leuk"
-#: mod/photos.php:1314
+#: mod/photos.php:1324
msgid "Map"
msgstr "Kaart"
-#: src/App.php:470
+#: src/App.php:473
msgid "No system theme config value set."
msgstr "Geen systeem thema configuratie ingesteld."
-#: src/App.php:574
+#: src/App.php:580
msgid "Apologies but the website is unavailable at the moment."
msgstr ""
-#: src/App/Page.php:247
+#: src/App/Page.php:248
msgid "Delete this item?"
msgstr "Dit item verwijderen?"
-#: src/App/Page.php:248
+#: 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:249
+#: 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 "Like not successful"
+msgid "Collapse this author's posts?"
msgstr ""
#: src/App/Page.php:252
-msgid "Dislike not successful"
+msgid "Ignore this author's server?"
msgstr ""
-#: src/App/Page.php:253
-msgid "Sharing not successful"
-msgstr ""
-
-#: src/App/Page.php:254
-msgid "Attendance unsuccessful"
+#: 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 "Backend error"
+msgid "Like not successful"
msgstr ""
#: src/App/Page.php:256
-msgid "Network error"
+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 "Drop files here to upload"
+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:261
+#: 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:262
+#: src/App/Page.php:266
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
msgstr ""
-#: src/App/Page.php:263
+#: src/App/Page.php:267
msgid "You can't upload files of this type."
msgstr ""
-#: src/App/Page.php:264
+#: src/App/Page.php:268
msgid "Server responded with {{statusCode}} code."
msgstr ""
-#: src/App/Page.php:265
+#: src/App/Page.php:269
msgid "Cancel upload"
msgstr ""
-#: src/App/Page.php:266
+#: src/App/Page.php:270
msgid "Upload canceled."
msgstr ""
-#: src/App/Page.php:267
+#: src/App/Page.php:271
msgid "Are you sure you want to cancel this upload?"
msgstr ""
-#: src/App/Page.php:268
+#: src/App/Page.php:272
msgid "Remove file"
msgstr ""
-#: src/App/Page.php:269
+#: src/App/Page.php:273
msgid "You can't upload any more files."
msgstr ""
-#: src/App/Page.php:347
+#: src/App/Page.php:351
msgid "toggle mobile"
msgstr "mobiel thema omwisselen"
@@ -770,33 +792,33 @@ msgstr "Pagina niet gevonden"
msgid "You must be logged in to use addons. "
msgstr "Je moet ingelogd zijn om deze addons te kunnen gebruiken. "
-#: src/BaseModule.php:400
+#: 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 "De beveiligingstoken van het formulier was foutief. Dit gebeurde waarschijnlijk omdat het formulier te lang (> 3 uur) is blijven open staan voor het werd verstuurd."
-#: src/BaseModule.php:427
+#: src/BaseModule.php:428
msgid "All contacts"
msgstr "Alle contacten"
-#: src/BaseModule.php:432 src/Content/Widget.php:239 src/Core/ACL.php:195
-#: src/Module/Contact.php:407 src/Module/PermissionTooltip.php:127
-#: src/Module/PermissionTooltip.php:149
+#: 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/BaseModule.php:437 src/Content/Widget.php:240
-#: src/Module/Contact.php:408
+#: src/BaseModule.php:438 src/Content/Widget.php:240
+#: src/Module/Contact.php:418
msgid "Following"
msgstr "Volgend"
-#: src/BaseModule.php:442 src/Content/Widget.php:241
-#: src/Module/Contact.php:409
+#: src/BaseModule.php:443 src/Content/Widget.php:241
+#: src/Module/Contact.php:421
msgid "Mutual friends"
msgstr "Gemeenschappelijke vrienden"
-#: src/BaseModule.php:450
+#: src/BaseModule.php:451
msgid "Common"
msgstr "Algemeen"
@@ -946,7 +968,7 @@ msgstr "Alle uitgestelde bericht update acties zijn uitgevoerd"
msgid "Enter user nickname: "
msgstr "Geef een bijnaam in:"
-#: src/Console/User.php:182 src/Model/User.php:663
+#: 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
@@ -1121,367 +1143,500 @@ msgstr "pnut"
msgid "Tumblr"
msgstr ""
-#: src/Content/ContactSelector.php:179
+#: src/Content/ContactSelector.php:144
+msgid "Bluesky"
+msgstr ""
+
+#: src/Content/ContactSelector.php:180
#, php-format
msgid "%s (via %s)"
msgstr ""
-#: src/Content/Conversation.php:218
+#: src/Content/Conversation.php:226
msgid "and"
msgstr "en"
-#: src/Content/Conversation.php:221
+#: src/Content/Conversation.php:229
#, php-format
msgid "and %d other people"
msgstr "en %d anderen"
-#: src/Content/Conversation.php:227
+#: 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:229
+#: 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:231
+#: src/Content/Conversation.php:239
#, php-format
msgid "%2$s attends."
msgid_plural "%2$s attend."
msgstr[0] ""
msgstr[1] ""
-#: src/Content/Conversation.php:233
+#: 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:235
+#: 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:237
+#: 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:266
+#: src/Content/Conversation.php:274
#, php-format
msgid " likes this"
msgid_plural " like this"
msgstr[0] ""
msgstr[1] ""
-#: src/Content/Conversation.php:269
+#: 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:272
+#: src/Content/Conversation.php:280
#, php-format
msgid " attends"
msgid_plural " attend"
msgstr[0] ""
msgstr[1] ""
-#: src/Content/Conversation.php:275
+#: src/Content/Conversation.php:283
#, php-format
msgid " doesn't attend"
msgid_plural " don't attend"
msgstr[0] ""
msgstr[1] ""
-#: src/Content/Conversation.php:278
+#: src/Content/Conversation.php:286
#, php-format
msgid " attends maybe"
msgid_plural " attend maybe"
msgstr[0] ""
msgstr[1] ""
-#: src/Content/Conversation.php:281
+#: src/Content/Conversation.php:289
#, php-format
msgid " reshared this"
msgid_plural " reshared this"
msgstr[0] ""
msgstr[1] ""
-#: src/Content/Conversation.php:328
+#: src/Content/Conversation.php:336
msgid "Visible to everybody"
msgstr "Zichtbaar voor iedereen"
-#: src/Content/Conversation.php:329 src/Module/Item/Compose.php:198
-#: src/Object/Post.php:1073
+#: 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:330
+#: src/Content/Conversation.php:338
msgid "Tag term:"
msgstr "Label:"
-#: src/Content/Conversation.php:331 src/Module/Filer/SaveTag.php:73
+#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73
msgid "Save to Folder:"
msgstr "Bewaren in map:"
-#: src/Content/Conversation.php:332
+#: src/Content/Conversation.php:340
msgid "Where are you right now?"
msgstr "Waar ben je nu?"
-#: src/Content/Conversation.php:333
+#: src/Content/Conversation.php:341
msgid "Delete item(s)?"
msgstr "Item(s) verwijderen?"
-#: src/Content/Conversation.php:345 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:355
+#: src/Content/Conversation.php:363
msgid "New Post"
msgstr "Nieuw bericht"
-#: src/Content/Conversation.php:358
+#: src/Content/Conversation.php:366
msgid "Share"
msgstr "Delen"
-#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:132
+#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132
msgid "upload photo"
msgstr "Foto uploaden"
-#: src/Content/Conversation.php:362 src/Module/Post/Edit.php:133
+#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133
msgid "Attach file"
msgstr "Bestand bijvoegen"
-#: src/Content/Conversation.php:363 src/Module/Post/Edit.php:134
+#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134
msgid "attach file"
msgstr "bestand bijvoegen"
-#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190
-#: src/Module/Post/Edit.php:171 src/Object/Post.php:1065
+#: 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:365 src/Module/Item/Compose.php:191
-#: src/Module/Post/Edit.php:172 src/Object/Post.php:1066
+#: 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:366 src/Module/Item/Compose.php:192
-#: src/Module/Post/Edit.php:173 src/Object/Post.php:1067
+#: 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:367 src/Module/Item/Compose.php:193
-#: src/Module/Post/Edit.php:174 src/Object/Post.php:1068
+#: 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:368 src/Module/Item/Compose.php:194
-#: src/Module/Post/Edit.php:175 src/Object/Post.php:1069
+#: 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:369 src/Module/Item/Compose.php:195
-#: src/Object/Post.php:1070
+#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197
+#: src/Object/Post.php:1104
msgid "Image"
msgstr "Afbeelding"
-#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:196
-#: src/Module/Post/Edit.php:176 src/Object/Post.php:1071
+#: 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:371 src/Module/Item/Compose.php:197
-#: src/Module/Post/Edit.php:177 src/Object/Post.php:1072
+#: 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:372
+#: src/Content/Conversation.php:382
msgid "Video"
msgstr ""
-#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:200
+#: 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:374 src/Module/Post/Edit.php:142
+#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142
msgid "set location"
msgstr "Stel uw locatie in"
-#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:143
+#: 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:376 src/Module/Post/Edit.php:144
+#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144
msgid "clear location"
msgstr "Verwijder locatie uit uw webbrowser"
-#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:205
+#: 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:380 src/Module/Item/Compose.php:206
+#: 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:385 src/Module/Item/Compose.php:222
+#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224
msgid "Scheduled at"
msgstr ""
-#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:146
+#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146
msgid "Permission settings"
msgstr "Instellingen van rechten"
-#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:155
+#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155
msgid "Public post"
msgstr "Openbare post"
-#: src/Content/Conversation.php:414 src/Content/Widget/VCard.php:113
-#: src/Model/Profile.php:469 src/Module/Admin/Logs/View.php:92
-#: src/Module/Post/Edit.php:180
+#: 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:415 src/Module/Post/Edit.php:181
+#: 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:417 src/Module/Post/Edit.php:184
+#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185
msgid "Open Compose page"
msgstr "Open de opstelpagina"
-#: src/Content/Conversation.php:677 src/Object/Post.php:244
-msgid "Pinned item"
-msgstr ""
-
-#: src/Content/Conversation.php:693 src/Object/Post.php:496
-#: src/Object/Post.php:497
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Bekijk het profiel van %s @ %s"
-
-#: src/Content/Conversation.php:706 src/Object/Post.php:484
-msgid "Categories:"
-msgstr "Categorieën:"
-
-#: src/Content/Conversation.php:707 src/Object/Post.php:485
-msgid "Filed under:"
-msgstr "Bewaard onder:"
-
-#: src/Content/Conversation.php:715 src/Object/Post.php:510
-#, php-format
-msgid "%s from %s"
-msgstr "%s van %s"
-
-#: src/Content/Conversation.php:731
-msgid "View in context"
-msgstr "In context bekijken"
-
-#: src/Content/Conversation.php:796
+#: src/Content/Conversation.php:595
msgid "remove"
msgstr "verwijder"
-#: src/Content/Conversation.php:800
+#: src/Content/Conversation.php:599
msgid "Delete Selected Items"
msgstr "Geselecteerde items verwijderen"
-#: src/Content/Conversation.php:865 src/Content/Conversation.php:868
-#: src/Content/Conversation.php:871 src/Content/Conversation.php:874
-#: src/Content/Conversation.php:877
+#: 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:880
+#: src/Content/Conversation.php:769
#, php-format
msgid "You are following %s."
msgstr ""
-#: src/Content/Conversation.php:883
+#: 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:896
+#: src/Content/Conversation.php:796
#, php-format
msgid "%s reshared this."
msgstr "%s heeft dit gedeeld"
-#: src/Content/Conversation.php:898
+#: src/Content/Conversation.php:798
msgid "Reshared"
msgstr ""
-#: src/Content/Conversation.php:898
+#: src/Content/Conversation.php:798
#, php-format
msgid "Reshared by %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:901
+#: src/Content/Conversation.php:801
#, php-format
msgid "%s is participating in this thread."
msgstr ""
-#: src/Content/Conversation.php:904
+#: src/Content/Conversation.php:804
msgid "Stored for general reasons"
msgstr ""
-#: src/Content/Conversation.php:907
+#: src/Content/Conversation.php:807
msgid "Global post"
msgstr ""
-#: src/Content/Conversation.php:910
+#: src/Content/Conversation.php:810
msgid "Sent via an relay server"
msgstr ""
-#: src/Content/Conversation.php:910
+#: src/Content/Conversation.php:810
#, php-format
msgid "Sent via the relay server %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:913
+#: src/Content/Conversation.php:813
msgid "Fetched"
msgstr ""
-#: src/Content/Conversation.php:913
+#: src/Content/Conversation.php:813
#, php-format
msgid "Fetched because of %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:916
+#: src/Content/Conversation.php:816
msgid "Stored because of a child post to complete this thread."
msgstr ""
-#: src/Content/Conversation.php:919
+#: src/Content/Conversation.php:819
msgid "Local delivery"
msgstr ""
-#: src/Content/Conversation.php:922
+#: src/Content/Conversation.php:822
msgid "Stored because of your activity (like, comment, star, ...)"
msgstr ""
-#: src/Content/Conversation.php:925
+#: src/Content/Conversation.php:825
msgid "Distributed"
msgstr ""
-#: src/Content/Conversation.php:928
+#: 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"
@@ -1511,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"
@@ -1557,12 +1712,12 @@ msgid "Advanced Profile Settings"
msgstr "Geavanceerde Profiel Instellingen"
#: src/Content/Feature.php:119
-msgid "List Forums"
-msgstr "Lijst Fora op"
+msgid "List Groups"
+msgstr ""
#: src/Content/Feature.php:119
-msgid "Show visitors public community forums at the Advanced Profile Page"
-msgstr "Toon bezoekers de publieke groepsfora in de Geavanceerde Profiel Pagina"
+msgid "Show visitors public groups at the Advanced Profile Page"
+msgstr ""
#: src/Content/Feature.php:120
msgid "Tag Cloud"
@@ -1594,385 +1749,395 @@ msgid ""
"Contact birthday events are private to you."
msgstr ""
-#: src/Content/ForumManager.php:151 src/Content/Nav.php:276
-#: src/Content/Text/HTML.php:878 src/Content/Widget.php:528
-msgid "Forums"
-msgstr "Forums"
+#: 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/ForumManager.php:153
-msgid "External link to forum"
-msgstr "Externe link naar het forum"
+#: src/Content/GroupManager.php:154
+msgid "External link to group"
+msgstr ""
-#: src/Content/ForumManager.php:156 src/Content/Widget.php:507
+#: src/Content/GroupManager.php:158 src/Content/Widget.php:512
msgid "show less"
msgstr ""
-#: src/Content/ForumManager.php:157 src/Content/Widget.php:409
-#: src/Content/Widget.php:508
+#: src/Content/GroupManager.php:159 src/Content/Widget.php:410
+#: src/Content/Widget.php:513
msgid "show more"
msgstr "toon meer"
-#: src/Content/Item.php:326 src/Model/Item.php:2922
+#: 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:329 src/Content/Item.php:339
+#: src/Content/Item.php:334 src/Content/Item.php:344
msgid "status"
msgstr "status"
-#: src/Content/Item.php:335 src/Model/Item.php:2924
+#: 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:349 src/Module/Post/Tag/Add.php:141
+#: 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:419 view/theme/frio/theme.php:262
+#: src/Content/Item.php:428 view/theme/frio/theme.php:262
msgid "Follow Thread"
msgstr "Gesprek volgen"
-#: src/Content/Item.php:420 src/Model/Contact.php:1204
+#: src/Content/Item.php:429 src/Model/Contact.php:1227
msgid "View Status"
msgstr "Bekijk status"
-#: src/Content/Item.php:421 src/Content/Item.php:441
-#: src/Model/Contact.php:1148 src/Model/Contact.php:1196
-#: src/Model/Contact.php:1205 src/Module/Directory.php:157
-#: src/Module/Settings/Profile/Index.php:233
+#: 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:422 src/Model/Contact.php:1206
+#: src/Content/Item.php:431 src/Model/Contact.php:1229
msgid "View Photos"
msgstr "Bekijk foto's"
-#: src/Content/Item.php:423 src/Model/Contact.php:1197
-#: src/Model/Contact.php:1207
+#: src/Content/Item.php:432 src/Model/Contact.php:1220
+#: src/Model/Contact.php:1230
msgid "Network Posts"
msgstr "Netwerkberichten"
-#: src/Content/Item.php:424 src/Model/Contact.php:1198
-#: src/Model/Contact.php:1208
+#: 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:425 src/Model/Contact.php:1209
+#: src/Content/Item.php:434 src/Model/Contact.php:1232
msgid "Send PM"
msgstr "Stuur een privébericht"
-#: src/Content/Item.php:426 src/Module/Contact.php:439
-#: src/Module/Contact/Profile.php:477
+#: 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:427 src/Module/Contact.php:440
-#: src/Module/Contact/Profile.php:485
+#: 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:428 src/Module/Contact.php:441
-#: src/Module/Contact/Profile.php:493
+#: src/Content/Item.php:437 src/Module/Contact.php:470
+#: src/Module/Contact/Profile.php:527
msgid "Collapse"
msgstr ""
-#: src/Content/Item.php:432 src/Object/Post.php:465
+#: 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/Content/Widget.php:80
-#: src/Model/Contact.php:1199 src/Model/Contact.php:1210
-#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:196
+#: 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:863
+#: src/Content/Item.php:882
msgid "Unable to fetch user."
msgstr ""
-#: src/Content/Nav.php:120
+#: src/Content/Nav.php:121
msgid "Nothing new here"
msgstr "Niets nieuw hier"
-#: src/Content/Nav.php:124 src/Module/Special/HTTPException.php:77
+#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77
msgid "Go back"
msgstr "Ga terug"
-#: src/Content/Nav.php:125
+#: src/Content/Nav.php:126
msgid "Clear notifications"
msgstr "Notificaties verwijderen"
-#: src/Content/Nav.php:126 src/Content/Text/HTML.php:865
-msgid "@name, !forum, #tags, content"
-msgstr "@naam, !forum, #labels, inhoud"
+#: src/Content/Nav.php:127 src/Content/Text/HTML.php:867
+msgid "@name, !group, #tags, content"
+msgstr ""
-#: src/Content/Nav.php:220 src/Module/Security/Login.php:157
+#: src/Content/Nav.php:222 src/Module/Security/Login.php:157
msgid "Logout"
msgstr "Uitloggen"
-#: src/Content/Nav.php:220
+#: src/Content/Nav.php:222
msgid "End this session"
msgstr "Deze sessie beëindigen"
-#: src/Content/Nav.php:222 src/Module/Bookmarklet.php:44
+#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44
#: src/Module/Security/Login.php:158
msgid "Login"
msgstr "Login"
-#: src/Content/Nav.php:222
+#: src/Content/Nav.php:224
msgid "Sign in"
msgstr "Inloggen"
-#: src/Content/Nav.php:227 src/Module/BaseProfile.php:57
-#: src/Module/Contact.php:483
+#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57
+#: src/Module/Contact.php:512
msgid "Conversations"
msgstr ""
-#: src/Content/Nav.php:227
+#: src/Content/Nav.php:229
msgid "Conversations you started"
msgstr ""
-#: src/Content/Nav.php:228 src/Module/BaseProfile.php:49
-#: src/Module/BaseSettings.php:100 src/Module/Contact.php:475
-#: src/Module/Contact/Profile.php:392 src/Module/Profile/Profile.php:268
+#: 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:228 view/theme/frio/theme.php:230
+#: src/Content/Nav.php:230 view/theme/frio/theme.php:230
msgid "Your profile page"
msgstr "Jouw profiel pagina"
-#: src/Content/Nav.php:229 src/Module/BaseProfile.php:65
+#: 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:229 view/theme/frio/theme.php:234
+#: src/Content/Nav.php:231 view/theme/frio/theme.php:234
msgid "Your photos"
msgstr "Jouw foto's"
-#: src/Content/Nav.php:230 src/Module/BaseProfile.php:73
-#: src/Module/BaseProfile.php:76 src/Module/Contact.php:499
+#: 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:230 view/theme/frio/theme.php:235
+#: src/Content/Nav.php:232 view/theme/frio/theme.php:235
msgid "Your postings with media"
msgstr ""
-#: src/Content/Nav.php:231 src/Content/Nav.php:291
+#: 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:252 view/theme/frio/theme.php:236
+#: 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:231 view/theme/frio/theme.php:236
+#: src/Content/Nav.php:233 view/theme/frio/theme.php:236
msgid "Your calendar"
msgstr ""
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Personal notes"
msgstr "Persoonlijke nota's"
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Your personal notes"
msgstr "Je persoonlijke nota's"
-#: src/Content/Nav.php:249 src/Content/Nav.php:306
+#: src/Content/Nav.php:251 src/Content/Nav.php:308
msgid "Home"
msgstr "Tijdlijn"
-#: src/Content/Nav.php:249 src/Module/Settings/OAuth.php:73
+#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73
msgid "Home Page"
msgstr "Jouw tijdlijn"
-#: src/Content/Nav.php:253 src/Module/Register.php:168
+#: src/Content/Nav.php:255 src/Module/Register.php:168
#: src/Module/Security/Login.php:124
msgid "Register"
msgstr "Registreer"
-#: src/Content/Nav.php:253
+#: src/Content/Nav.php:255
msgid "Create an account"
msgstr "Maak een accoount"
-#: src/Content/Nav.php:259 src/Module/Help.php:67
+#: 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:241
+#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240
msgid "Help"
msgstr "Help"
-#: src/Content/Nav.php:259
+#: src/Content/Nav.php:261
msgid "Help and documentation"
msgstr "Hulp en documentatie"
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:265
msgid "Apps"
msgstr "Apps"
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:265
msgid "Addon applications, utilities, games"
msgstr "Extra toepassingen, hulpmiddelen of spelletjes"
-#: src/Content/Nav.php:267 src/Content/Text/HTML.php:863
+#: 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:267
+#: src/Content/Nav.php:269
msgid "Search site content"
msgstr "Doorzoek de inhoud van de website"
-#: src/Content/Nav.php:270 src/Content/Text/HTML.php:872
+#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874
msgid "Full Text"
msgstr "Volledige tekst"
-#: src/Content/Nav.php:271 src/Content/Text/HTML.php:873
+#: 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:272 src/Content/Nav.php:327
-#: src/Content/Text/HTML.php:874 src/Module/BaseProfile.php:127
-#: src/Module/BaseProfile.php:130 src/Module/Contact.php:410
-#: src/Module/Contact.php:506 view/theme/frio/theme.php:243
+#: 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:287
+#: src/Content/Nav.php:289
msgid "Community"
msgstr "Website"
-#: src/Content/Nav.php:287
+#: src/Content/Nav.php:289
msgid "Conversations on this and other servers"
msgstr "Gesprekken op deze en andere servers"
-#: src/Content/Nav.php:294
+#: src/Content/Nav.php:296
msgid "Directory"
msgstr "Gids"
-#: src/Content/Nav.php:294
+#: src/Content/Nav.php:296
msgid "People directory"
msgstr "Personengids"
-#: src/Content/Nav.php:296 src/Module/BaseAdmin.php:85
+#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85
#: src/Module/BaseModeration.php:108
msgid "Information"
msgstr "Informatie"
-#: src/Content/Nav.php:296
+#: src/Content/Nav.php:298
msgid "Information about this friendica instance"
msgstr "informatie over deze friendica server"
-#: src/Content/Nav.php:299 src/Module/Admin/Tos.php:78
+#: 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:100
+#: src/Module/Tos.php:101
msgid "Terms of Service"
msgstr "Gebruiksvoorwaarden"
-#: src/Content/Nav.php:299
+#: src/Content/Nav.php:301
msgid "Terms of Service of this Friendica instance"
msgstr "Gebruiksvoorwaarden op deze Friendica server"
-#: src/Content/Nav.php:304 view/theme/frio/theme.php:239
+#: src/Content/Nav.php:306 view/theme/frio/theme.php:239
msgid "Network"
msgstr "Netwerk"
-#: src/Content/Nav.php:304 view/theme/frio/theme.php:239
+#: 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:306 view/theme/frio/theme.php:229
+#: 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:310
+#: src/Content/Nav.php:312
msgid "Introductions"
msgstr "Verzoeken"
-#: src/Content/Nav.php:310
+#: src/Content/Nav.php:312
msgid "Friend Requests"
msgstr "Vriendschapsverzoeken"
-#: src/Content/Nav.php:311 src/Module/BaseNotifications.php:149
+#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149
#: src/Module/Notifications/Introductions.php:75
msgid "Notifications"
msgstr "Notificaties"
-#: src/Content/Nav.php:312
+#: src/Content/Nav.php:314
msgid "See all notifications"
msgstr "Toon alle notificaties"
-#: src/Content/Nav.php:313 src/Module/Settings/Connectors.php:244
+#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244
msgid "Mark as seen"
msgstr "Als 'gelezen' markeren"
-#: src/Content/Nav.php:313
+#: src/Content/Nav.php:315
msgid "Mark all system notifications as seen"
msgstr ""
-#: src/Content/Nav.php:316 view/theme/frio/theme.php:241
+#: src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Private mail"
msgstr "Privéberichten"
-#: src/Content/Nav.php:317
+#: src/Content/Nav.php:319
msgid "Inbox"
msgstr "Inbox"
-#: src/Content/Nav.php:318
+#: src/Content/Nav.php:320
msgid "Outbox"
msgstr "Verzonden berichten"
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Accounts"
msgstr "Gebruikers"
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Manage other pages"
msgstr "Andere pagina's beheren"
-#: 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/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:325 view/theme/frio/theme.php:242
+#: src/Content/Nav.php:327 view/theme/frio/theme.php:242
msgid "Account settings"
msgstr "Account instellingen"
-#: src/Content/Nav.php:327 view/theme/frio/theme.php:243
+#: 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:332 src/Module/BaseAdmin.php:119
+#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119
msgid "Admin"
msgstr "Beheer"
-#: src/Content/Nav.php:332
+#: src/Content/Nav.php:334
msgid "Site setup and configuration"
msgstr "Website opzetten en configureren"
-#: src/Content/Nav.php:333 src/Module/BaseModeration.php:127
+#: 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/Summary.php:76
+#: 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
@@ -1980,23 +2145,23 @@ msgstr "Website opzetten en configureren"
msgid "Moderation"
msgstr ""
-#: src/Content/Nav.php:333
+#: src/Content/Nav.php:335
msgid "Content and user moderation"
msgstr ""
-#: src/Content/Nav.php:336
+#: src/Content/Nav.php:338
msgid "Navigation"
msgstr "Navigatie"
-#: src/Content/Nav.php:336
+#: src/Content/Nav.php:338
msgid "Site map"
msgstr "Sitemap"
-#: src/Content/OEmbed.php:317
+#: src/Content/OEmbed.php:316
msgid "Embedding disabled"
msgstr "Inbedden uitgeschakeld"
-#: src/Content/OEmbed.php:441
+#: src/Content/OEmbed.php:440
msgid "Embedded content"
msgstr "Ingebedde inhoud"
@@ -2016,51 +2181,51 @@ msgstr "volgende"
msgid "last"
msgstr "laatste"
-#: src/Content/Text/BBCode.php:713 src/Content/Text/BBCode.php:1599
-#: src/Content/Text/BBCode.php:1600
+#: 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:931
+#: src/Content/Text/BBCode.php:914
#, php-format
msgid "%2$s %3$s"
msgstr ""
-#: src/Content/Text/BBCode.php:956 src/Model/Item.php:3607
-#: src/Model/Item.php:3613 src/Model/Item.php:3614
+#: 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:1506 src/Content/Text/HTML.php:902
+#: 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:1539
+#: src/Content/Text/BBCode.php:1576
msgid "$1 wrote:"
msgstr "$1 schreef:"
-#: src/Content/Text/BBCode.php:1604 src/Content/Text/BBCode.php:1605
+#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642
msgid "Encrypted content"
msgstr "Versleutelde inhoud"
-#: src/Content/Text/BBCode.php:1869
+#: src/Content/Text/BBCode.php:1901
msgid "Invalid source protocol"
msgstr "Ongeldig bron protocol"
-#: src/Content/Text/BBCode.php:1888
+#: src/Content/Text/BBCode.php:1920
msgid "Invalid link protocol"
msgstr "Ongeldig verbinding protocol"
-#: src/Content/Text/HTML.php:780
+#: src/Content/Text/HTML.php:782
msgid "Loading more entries..."
msgstr "Meer berichten aan het laden..."
-#: src/Content/Text/HTML.php:781
+#: src/Content/Text/HTML.php:783
msgid "The end"
msgstr "Het einde"
-#: src/Content/Text/HTML.php:857 src/Content/Widget/VCard.php:109
-#: src/Model/Profile.php:463 src/Module/Contact/Profile.php:437
+#: 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"
@@ -2087,118 +2252,130 @@ msgid_plural "%d invitations available"
msgstr[0] "%d uitnodiging beschikbaar"
msgstr[1] "%d uitnodigingen beschikbaar"
-#: src/Content/Widget.php:78 view/theme/vier/theme.php:194
+#: src/Content/Widget.php:78 view/theme/vier/theme.php:193
msgid "Find People"
msgstr "Zoek mensen"
-#: src/Content/Widget.php:79 view/theme/vier/theme.php:195
+#: 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:197
+#: 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:432
-#: src/Module/Directory.php:96 view/theme/vier/theme.php:198
+#: 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:199
+#: view/theme/vier/theme.php:198
msgid "Friend Suggestions"
msgstr "Vriendschapsvoorstellen"
-#: src/Content/Widget.php:84 view/theme/vier/theme.php:200
+#: 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:201
+#: 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:202
+#: 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:203
+#: view/theme/vier/theme.php:202
msgid "Global Directory"
msgstr "Globale gids"
-#: src/Content/Widget.php:89 view/theme/vier/theme.php:205
+#: src/Content/Widget.php:89 view/theme/vier/theme.php:204
msgid "Local Directory"
msgstr "Lokale gids"
-#: src/Content/Widget.php:215 src/Model/Group.php:587
-#: src/Module/Contact.php:394 src/Module/Welcome.php:76
-msgid "Groups"
-msgstr "Groepen"
+#: 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:246
+#: src/Content/Widget.php:242 src/Module/Contact.php:424
+msgid "No relationship"
+msgstr ""
+
+#: src/Content/Widget.php:247
msgid "Relationships"
msgstr "Relaties"
-#: src/Content/Widget.php:248 src/Module/Contact.php:338
-#: 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 Contacten"
-#: src/Content/Widget.php:287
+#: src/Content/Widget.php:288
msgid "Protocols"
msgstr "Protocollen"
-#: src/Content/Widget.php:289
+#: src/Content/Widget.php:290
msgid "All Protocols"
msgstr "Alle protocollen"
-#: src/Content/Widget.php:317
+#: src/Content/Widget.php:318
msgid "Saved Folders"
msgstr "Bewaarde Mappen"
-#: src/Content/Widget.php:319 src/Content/Widget.php:350
+#: src/Content/Widget.php:320 src/Content/Widget.php:351
msgid "Everything"
msgstr "Alles"
-#: src/Content/Widget.php:348
+#: src/Content/Widget.php:349
msgid "Categories"
msgstr "Categorieën"
-#: src/Content/Widget.php:405
+#: 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:501
+#: src/Content/Widget.php:506
msgid "Archives"
msgstr "Archieven"
-#: src/Content/Widget.php:525
+#: src/Content/Widget.php:514
+msgid "On this date"
+msgstr ""
+
+#: src/Content/Widget.php:534
msgid "Persons"
msgstr ""
-#: src/Content/Widget.php:526
+#: src/Content/Widget.php:535
msgid "Organisations"
msgstr ""
-#: src/Content/Widget.php:527 src/Model/Contact.php:1656
+#: src/Content/Widget.php:536 src/Model/Contact.php:1698
msgid "News"
msgstr "Nieuws"
-#: src/Content/Widget.php:531 src/Module/Settings/Account.php:453
+#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454
msgid "Account Types"
msgstr "Account Types"
-#: src/Content/Widget.php:532 src/Module/Moderation/BaseUsers.php:69
+#: 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"
@@ -2245,32 +2422,32 @@ msgstr[1] "Populaire Tags (laatste %d uur)"
msgid "More Trending Tags"
msgstr "Meer Populaire Tags"
-#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:378
-#: src/Module/Contact/Profile.php:381 src/Module/Profile/Profile.php:199
+#: 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:379
-#: src/Module/Contact/Profile.php:383 src/Module/Profile/Profile.php:203
+#: 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: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/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:107 src/Model/Profile.php:476
+#: 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:111 src/Model/Contact.php:1200
-#: src/Model/Contact.php:1211 src/Model/Profile.php:465
-#: src/Module/Contact/Profile.php:429
+#: 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"
@@ -2311,8 +2488,8 @@ msgstr "Deze inhoud wordt alleen getoond aan de mensen in het eerste vak, met ui
#: src/Core/ACL.php:324
msgid ""
-"Start typing the name of a contact or a group to show a filtered list. You "
-"can also mention the special groups \"Followers\" and \"Mutuals\"."
+"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
@@ -2654,161 +2831,172 @@ msgstr "Database al in gebruik."
msgid "Could not connect to database."
msgstr "Kon geen toegang krijgen tot de database."
-#: src/Core/L10n.php:408 src/Model/Event.php:432
-#: src/Module/Settings/Display.php:222
+#: src/Core/L10n.php:476 src/Model/Event.php:430
+#: src/Module/Settings/Display.php:235
msgid "Monday"
msgstr "Maandag"
-#: src/Core/L10n.php:408 src/Model/Event.php:433
-#: src/Module/Settings/Display.php:223
+#: src/Core/L10n.php:476 src/Model/Event.php:431
+#: src/Module/Settings/Display.php:236
msgid "Tuesday"
msgstr "Dinsdag"
-#: src/Core/L10n.php:408 src/Model/Event.php:434
-#: src/Module/Settings/Display.php:224
+#: src/Core/L10n.php:476 src/Model/Event.php:432
+#: src/Module/Settings/Display.php:237
msgid "Wednesday"
msgstr "Woensdag"
-#: src/Core/L10n.php:408 src/Model/Event.php:435
-#: src/Module/Settings/Display.php:225
+#: src/Core/L10n.php:476 src/Model/Event.php:433
+#: src/Module/Settings/Display.php:238
msgid "Thursday"
msgstr "Donderdag"
-#: src/Core/L10n.php:408 src/Model/Event.php:436
-#: src/Module/Settings/Display.php:226
+#: src/Core/L10n.php:476 src/Model/Event.php:434
+#: src/Module/Settings/Display.php:239
msgid "Friday"
msgstr "Vrijdag"
-#: src/Core/L10n.php:408 src/Model/Event.php:437
-#: src/Module/Settings/Display.php:227
+#: src/Core/L10n.php:476 src/Model/Event.php:435
+#: src/Module/Settings/Display.php:240
msgid "Saturday"
msgstr "Zaterdag"
-#: src/Core/L10n.php:408 src/Model/Event.php:431
-#: src/Module/Settings/Display.php:221
+#: src/Core/L10n.php:476 src/Model/Event.php:429
+#: src/Module/Settings/Display.php:234
msgid "Sunday"
msgstr "Zondag"
-#: src/Core/L10n.php:412 src/Model/Event.php:452
+#: src/Core/L10n.php:480 src/Model/Event.php:450
msgid "January"
msgstr "Januari"
-#: src/Core/L10n.php:412 src/Model/Event.php:453
+#: src/Core/L10n.php:480 src/Model/Event.php:451
msgid "February"
msgstr "Februari"
-#: src/Core/L10n.php:412 src/Model/Event.php:454
+#: src/Core/L10n.php:480 src/Model/Event.php:452
msgid "March"
msgstr "Maart"
-#: src/Core/L10n.php:412 src/Model/Event.php:455
+#: src/Core/L10n.php:480 src/Model/Event.php:453
msgid "April"
msgstr "April"
-#: src/Core/L10n.php:412 src/Core/L10n.php:431 src/Model/Event.php:443
+#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441
msgid "May"
msgstr "Mei"
-#: src/Core/L10n.php:412 src/Model/Event.php:456
+#: src/Core/L10n.php:480 src/Model/Event.php:454
msgid "June"
msgstr "Juni"
-#: src/Core/L10n.php:412 src/Model/Event.php:457
+#: src/Core/L10n.php:480 src/Model/Event.php:455
msgid "July"
msgstr "Juli"
-#: src/Core/L10n.php:412 src/Model/Event.php:458
+#: src/Core/L10n.php:480 src/Model/Event.php:456
msgid "August"
msgstr "Augustus"
-#: src/Core/L10n.php:412 src/Model/Event.php:459
+#: src/Core/L10n.php:480 src/Model/Event.php:457
msgid "September"
msgstr "September"
-#: src/Core/L10n.php:412 src/Model/Event.php:460
+#: src/Core/L10n.php:480 src/Model/Event.php:458
msgid "October"
msgstr "Oktober"
-#: src/Core/L10n.php:412 src/Model/Event.php:461
+#: src/Core/L10n.php:480 src/Model/Event.php:459
msgid "November"
msgstr "November"
-#: src/Core/L10n.php:412 src/Model/Event.php:462
+#: src/Core/L10n.php:480 src/Model/Event.php:460
msgid "December"
msgstr "December"
-#: src/Core/L10n.php:427 src/Model/Event.php:424
+#: src/Core/L10n.php:495 src/Model/Event.php:422
msgid "Mon"
msgstr "Maa"
-#: src/Core/L10n.php:427 src/Model/Event.php:425
+#: src/Core/L10n.php:495 src/Model/Event.php:423
msgid "Tue"
msgstr "Din"
-#: src/Core/L10n.php:427 src/Model/Event.php:426
+#: src/Core/L10n.php:495 src/Model/Event.php:424
msgid "Wed"
msgstr "Woe"
-#: src/Core/L10n.php:427 src/Model/Event.php:427
+#: src/Core/L10n.php:495 src/Model/Event.php:425
msgid "Thu"
msgstr "Don"
-#: src/Core/L10n.php:427 src/Model/Event.php:428
+#: src/Core/L10n.php:495 src/Model/Event.php:426
msgid "Fri"
msgstr "Vrij"
-#: src/Core/L10n.php:427 src/Model/Event.php:429
+#: src/Core/L10n.php:495 src/Model/Event.php:427
msgid "Sat"
msgstr "Zat"
-#: src/Core/L10n.php:427 src/Model/Event.php:423
+#: src/Core/L10n.php:495 src/Model/Event.php:421
msgid "Sun"
msgstr "Zon"
-#: src/Core/L10n.php:431 src/Model/Event.php:439
+#: src/Core/L10n.php:499 src/Model/Event.php:437
msgid "Jan"
msgstr "Jan"
-#: src/Core/L10n.php:431 src/Model/Event.php:440
+#: src/Core/L10n.php:499 src/Model/Event.php:438
msgid "Feb"
msgstr "Feb"
-#: src/Core/L10n.php:431 src/Model/Event.php:441
+#: src/Core/L10n.php:499 src/Model/Event.php:439
msgid "Mar"
msgstr "Maa"
-#: src/Core/L10n.php:431 src/Model/Event.php:442
+#: src/Core/L10n.php:499 src/Model/Event.php:440
msgid "Apr"
msgstr "Apr"
-#: src/Core/L10n.php:431 src/Model/Event.php:444
+#: src/Core/L10n.php:499 src/Model/Event.php:442
msgid "Jun"
msgstr "Jun"
-#: src/Core/L10n.php:431 src/Model/Event.php:445
+#: src/Core/L10n.php:499 src/Model/Event.php:443
msgid "Jul"
msgstr "Jul"
-#: src/Core/L10n.php:431 src/Model/Event.php:446
+#: src/Core/L10n.php:499 src/Model/Event.php:444
msgid "Aug"
msgstr "Aug"
-#: src/Core/L10n.php:431
+#: src/Core/L10n.php:499
msgid "Sep"
msgstr "Sep"
-#: src/Core/L10n.php:431 src/Model/Event.php:448
+#: src/Core/L10n.php:499 src/Model/Event.php:446
msgid "Oct"
msgstr "Okt"
-#: src/Core/L10n.php:431 src/Model/Event.php:449
+#: src/Core/L10n.php:499 src/Model/Event.php:447
msgid "Nov"
msgstr "Nov"
-#: src/Core/L10n.php:431 src/Model/Event.php:450
+#: 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
@@ -2853,22 +3041,22 @@ msgid ""
" to version 2021.01 and wait until the postupdate finished version 1383."
msgstr ""
-#: src/Core/Update.php:197
+#: src/Core/Update.php:183
#, php-format
msgid "%s: executing pre update %d"
msgstr ""
-#: src/Core/Update.php:239
+#: src/Core/Update.php:225
#, php-format
msgid "%s: executing post update %d"
msgstr ""
-#: src/Core/Update.php:313
+#: 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:353
+#: src/Core/Update.php:339
#, php-format
msgid ""
"\n"
@@ -2878,16 +3066,16 @@ msgid ""
"\t\t\t\tfriendica developer if you can not help me on your own. My database might be invalid."
msgstr "\n\t\t\t\tDe Friendica ontwikkelaars hebben recent update %svrijgegeven,\n \t\t\t\tmaar wanneer ik deze probeerde te installeren ging het verschrikkelijk fout.\n \t\t\t\tDit moet snel opgelost worden en ik kan het niet alleen. Contacteer alstublieft\n \t\t\t\teen Friendica ontwikkelaar als je mij zelf niet kan helpen. Mijn database kan ongeldig zijn."
-#: src/Core/Update.php:359
+#: src/Core/Update.php:345
#, php-format
msgid "The error message is\\n[pre]%s[/pre]"
msgstr ""
-#: src/Core/Update.php:363 src/Core/Update.php:391
+#: src/Core/Update.php:349 src/Core/Update.php:377
msgid "[Friendica Notify] Database update"
msgstr ""
-#: src/Core/Update.php:385
+#: src/Core/Update.php:371
#, php-format
msgid ""
"\n"
@@ -2899,28 +3087,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"
@@ -2928,20 +3116,20 @@ msgid ""
"%s\n"
msgstr "\nFout %d is opgetreden tijdens database update:\n%s\n"
-#: src/Database/DBStructure.php:153
+#: src/Database/DBStructure.php:164
msgid "Errors encountered performing database changes: "
msgstr "Fouten opgetreden tijdens database aanpassingen:"
-#: src/Database/DBStructure.php:221
+#: src/Database/DBStructure.php:232
msgid "Another database update is currently running."
msgstr ""
-#: src/Database/DBStructure.php:225
+#: src/Database/DBStructure.php:236
#, php-format
msgid "%s: Database update"
msgstr "%s: Database update"
-#: src/Database/DBStructure.php:482
+#: src/Database/DBStructure.php:493
#, php-format
msgid "%s: updating %s table."
msgstr "%s: tabel %s aan het updaten."
@@ -2972,82 +3160,122 @@ msgstr ""
msgid "Legacy module file not found: %s"
msgstr "Legacy module bestand niet gevonden: %s"
-#: src/Model/Contact.php:1217 src/Module/Moderation/Users/Pending.php:102
+#: 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 "Iedereen"
+
+#: src/Model/Circle.php:562
+msgid "edit"
+msgstr "verander"
+
+#: 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:1652
+#: src/Model/Contact.php:1694
msgid "Organisation"
msgstr "Organisatie"
-#: src/Model/Contact.php:1660
-msgid "Forum"
-msgstr "Forum"
+#: src/Model/Contact.php:1702
+msgid "Group"
+msgstr ""
-#: src/Model/Contact.php:2947
+#: src/Model/Contact.php:3005
msgid "Disallowed profile URL."
msgstr "Niet toegelaten profiel adres."
-#: src/Model/Contact.php:2952 src/Module/Friendica.php:83
+#: src/Model/Contact.php:3010 src/Module/Friendica.php:101
msgid "Blocked domain"
msgstr "Domein geblokeerd"
-#: src/Model/Contact.php:2957
+#: src/Model/Contact.php:3015
msgid "Connect URL missing."
msgstr "Connectie URL ontbreekt."
-#: src/Model/Contact.php:2966
+#: 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:2984
+#: src/Model/Contact.php:3042
#, php-format
msgid "Expected network %s does not match actual network %s"
msgstr ""
-#: src/Model/Contact.php:3001
+#: 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:3003
+#: 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:3006
+#: 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:3009
+#: 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:3012
+#: 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:3013
+#: 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:3019
+#: 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:3024
+#: 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:3089
+#: src/Model/Contact.php:3148
msgid "Unable to retrieve contact information."
msgstr "Het was niet mogelijk informatie over dit contact op te halen."
@@ -3055,54 +3283,54 @@ msgstr "Het was niet mogelijk informatie over dit contact op te halen."
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
+#: 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:78 src/Model/Event.php:98 src/Model/Event.php:472
-#: src/Model/Event.php:944
+#: 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:421
+#: src/Model/Event.php:419
msgid "all-day"
msgstr "de hele dag"
-#: src/Model/Event.php:447
+#: src/Model/Event.php:445
msgid "Sept"
msgstr "Sep"
-#: src/Model/Event.php:464 src/Module/Calendar/Show.php:128
+#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128
#: src/Util/Temporal.php:343
msgid "today"
msgstr "vandaag"
-#: src/Model/Event.php:465 src/Module/Calendar/Show.php:129
-#: src/Module/Settings/Display.php:232 src/Util/Temporal.php:353
+#: 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:466 src/Module/Calendar/Show.php:130
-#: src/Module/Settings/Display.php:233 src/Util/Temporal.php:354
+#: 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:467 src/Module/Calendar/Show.php:131
-#: src/Module/Settings/Display.php:234 src/Util/Temporal.php:355
+#: 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:469
+#: src/Model/Event.php:467
msgid "No events to display"
msgstr "Geen gebeurtenissen te tonen"
-#: src/Model/Event.php:518 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69
+#: 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:559 src/Module/Calendar/Event/Show.php:67
+#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67
msgid "Event not found."
msgstr ""
@@ -3134,143 +3362,99 @@ msgstr "D g:i A"
msgid "g:i A"
msgstr "g:i A"
-#: src/Model/Event.php:959 src/Model/Event.php:961
+#: src/Model/Event.php:964 src/Model/Event.php:966
msgid "Show map"
msgstr "Toon kaart"
-#: src/Model/Event.php:960
+#: src/Model/Event.php:965
msgid "Hide map"
msgstr "Verberg kaart"
-#: src/Model/Event.php:1053
+#: src/Model/Event.php:1058
#, php-format
msgid "%s's birthday"
msgstr "%s's verjaardag"
-#: src/Model/Event.php:1054
+#: src/Model/Event.php:1059
#, php-format
msgid "Happy Birthday %s"
msgstr "Gefeliciteerd %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 "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/Group.php:503
-msgid "Default privacy group for new contacts"
-msgstr "Standaard privacy groep voor nieuwe contacten"
-
-#: src/Model/Group.php:535
-msgid "Everybody"
-msgstr "Iedereen"
-
-#: src/Model/Group.php:554
-msgid "edit"
-msgstr "verander"
-
-#: src/Model/Group.php:586
-msgid "add"
-msgstr "toevoegen"
-
-#: src/Model/Group.php:591
-msgid "Edit group"
-msgstr "Verander groep"
-
-#: src/Model/Group.php:592 src/Module/Group.php:192
-msgid "Contacts not in any group"
-msgstr "Contacten bestaan in geen enkele groep"
-
-#: src/Model/Group.php:594
-msgid "Create a new group"
-msgstr "Maak nieuwe groep"
-
-#: src/Model/Group.php:595 src/Module/Group.php:177 src/Module/Group.php:200
-#: src/Module/Group.php:275
-msgid "Group Name: "
-msgstr "Groepsnaam:"
-
-#: src/Model/Group.php:596
-msgid "Edit groups"
-msgstr "Bewerk groepen"
-
-#: src/Model/Item.php:2023
+#: src/Model/Item.php:2062
#, php-format
msgid "Detected languages in this post:\\n%s"
msgstr ""
-#: src/Model/Item.php:2926
+#: src/Model/Item.php:3007
msgid "activity"
msgstr "activiteit"
-#: src/Model/Item.php:2928
+#: src/Model/Item.php:3009
msgid "comment"
msgstr ""
-#: src/Model/Item.php:2931 src/Module/Post/Tag/Add.php:123
+#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123
msgid "post"
msgstr "bericht"
-#: src/Model/Item.php:3093
+#: src/Model/Item.php:3182
#, php-format
msgid "%s is blocked"
msgstr ""
-#: src/Model/Item.php:3095
+#: src/Model/Item.php:3184
#, php-format
msgid "%s is ignored"
msgstr ""
-#: src/Model/Item.php:3097
+#: src/Model/Item.php:3186
#, php-format
msgid "Content from %s is collapsed"
msgstr ""
-#: src/Model/Item.php:3101
+#: src/Model/Item.php:3190
#, php-format
msgid "Content warning: %s"
msgstr "Waarschuwing inhoud: %s"
-#: src/Model/Item.php:3519
+#: src/Model/Item.php:3652
msgid "bytes"
msgstr "bytes"
-#: src/Model/Item.php:3550
+#: 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:3552
+#: 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:3557
+#: 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:3559
+#: src/Model/Item.php:3692
#, php-format
msgid "%d voter."
msgid_plural "%d voters."
msgstr[0] ""
msgstr[1] ""
-#: src/Model/Item.php:3561
+#: src/Model/Item.php:3694
#, php-format
msgid "Poll end: %s"
msgstr ""
-#: src/Model/Item.php:3595 src/Model/Item.php:3596
+#: src/Model/Item.php:3728 src/Model/Item.php:3729
msgid "View on separate page"
msgstr "Bekijk op aparte pagina"
@@ -3278,294 +3462,295 @@ msgstr "Bekijk op aparte pagina"
msgid "[no subject]"
msgstr "[geen onderwerp]"
-#: src/Model/Photo.php:1189 src/Module/Media/Photo/Upload.php:197
+#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170
msgid "Wall Photos"
msgstr "Tijdlijn foto's"
-#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:283
+#: 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:363
+#: src/Model/Profile.php:361
msgid "Change profile photo"
msgstr "Profiel foto wijzigen"
-#: src/Model/Profile.php:376 src/Module/Directory.php:152
+#: src/Model/Profile.php:374 src/Module/Directory.php:152
#: src/Module/Profile/Profile.php:209
msgid "Homepage:"
msgstr "Website:"
-#: src/Model/Profile.php:377 src/Module/Contact/Profile.php:385
+#: 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:467
+#: src/Model/Profile.php:465
msgid "Atom feed"
msgstr "Atom feed"
-#: src/Model/Profile.php:474
+#: src/Model/Profile.php:472
msgid "This website has been verified to belong to the same person."
msgstr ""
-#: src/Model/Profile.php:511
+#: src/Model/Profile.php:509
msgid "F d"
msgstr "d F"
-#: src/Model/Profile.php:575 src/Model/Profile.php:664
+#: src/Model/Profile.php:573 src/Model/Profile.php:662
msgid "[today]"
msgstr "[vandaag]"
-#: src/Model/Profile.php:584
+#: src/Model/Profile.php:582
msgid "Birthday Reminders"
msgstr "Verjaardagsherinneringen"
-#: src/Model/Profile.php:585
+#: src/Model/Profile.php:583
msgid "Birthdays this week:"
msgstr "Verjaardagen deze week:"
-#: src/Model/Profile.php:613
+#: src/Model/Profile.php:611
msgid "g A l F d"
msgstr "G l j F"
-#: src/Model/Profile.php:651
+#: src/Model/Profile.php:649
msgid "[No description]"
msgstr "[Geen omschrijving]"
-#: src/Model/Profile.php:677
+#: src/Model/Profile.php:675
msgid "Event Reminders"
msgstr "Gebeurtenisherinneringen"
-#: src/Model/Profile.php:678
+#: src/Model/Profile.php:676
msgid "Upcoming events the next 7 days:"
msgstr "Evenementen de komende 7 dagen:"
-#: src/Model/Profile.php:875
+#: src/Model/Profile.php:873
#, php-format
msgid "OpenWebAuth: %1$s welcomes %2$s"
msgstr "OpenWebAuth: %1$s verwelkomt %2$s"
-#: src/Model/Profile.php:1015
+#: src/Model/Profile.php:1013
msgid "Hometown:"
msgstr "Woonplaats:"
-#: src/Model/Profile.php:1016
+#: src/Model/Profile.php:1014
msgid "Marital Status:"
msgstr ""
-#: src/Model/Profile.php:1017
+#: src/Model/Profile.php:1015
msgid "With:"
msgstr "Met:"
-#: src/Model/Profile.php:1018
+#: src/Model/Profile.php:1016
msgid "Since:"
msgstr "Sinds:"
-#: src/Model/Profile.php:1019
+#: src/Model/Profile.php:1017
msgid "Sexual Preference:"
msgstr "Seksuele Voorkeur:"
-#: src/Model/Profile.php:1020
+#: src/Model/Profile.php:1018
msgid "Political Views:"
msgstr "Politieke standpunten:"
-#: src/Model/Profile.php:1021
+#: src/Model/Profile.php:1019
msgid "Religious Views:"
msgstr "Geloof:"
-#: src/Model/Profile.php:1022
+#: src/Model/Profile.php:1020
msgid "Likes:"
msgstr "Houdt van:"
-#: src/Model/Profile.php:1023
+#: src/Model/Profile.php:1021
msgid "Dislikes:"
msgstr "Houdt niet van:"
-#: src/Model/Profile.php:1024
+#: src/Model/Profile.php:1022
msgid "Title/Description:"
msgstr "Titel/Beschrijving:"
-#: src/Model/Profile.php:1025 src/Module/Admin/Summary.php:221
+#: 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:1026
+#: src/Model/Profile.php:1024
msgid "Musical interests"
msgstr "Muzikale interesses"
-#: src/Model/Profile.php:1027
+#: src/Model/Profile.php:1025
msgid "Books, literature"
msgstr "Boeken, literatuur"
-#: src/Model/Profile.php:1028
+#: src/Model/Profile.php:1026
msgid "Television"
msgstr "Televisie"
-#: src/Model/Profile.php:1029
+#: src/Model/Profile.php:1027
msgid "Film/dance/culture/entertainment"
msgstr "Film/dans/cultuur/ontspanning"
-#: src/Model/Profile.php:1030
+#: src/Model/Profile.php:1028
msgid "Hobbies/Interests"
msgstr "Hobby's/Interesses"
-#: src/Model/Profile.php:1031
+#: src/Model/Profile.php:1029
msgid "Love/romance"
msgstr "Liefde/romance"
-#: src/Model/Profile.php:1032
+#: src/Model/Profile.php:1030
msgid "Work/employment"
msgstr "Werk"
-#: src/Model/Profile.php:1033
+#: src/Model/Profile.php:1031
msgid "School/education"
msgstr "School/opleiding"
-#: src/Model/Profile.php:1034
+#: src/Model/Profile.php:1032
msgid "Contact information and Social Networks"
msgstr "Contactinformatie en sociale netwerken"
-#: src/Model/User.php:214 src/Model/User.php:1120
+#: 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:572 src/Model/User.php:605
+#: src/Model/User.php:620 src/Model/User.php:653
msgid "Login failed"
msgstr "Login mislukt"
-#: src/Model/User.php:637
+#: src/Model/User.php:685
msgid "Not enough information to authenticate"
msgstr "Niet genoeg informatie om te authentificeren"
-#: src/Model/User.php:754
+#: src/Model/User.php:806
msgid "Password can't be empty"
msgstr "Wachtwoord mag niet leeg zijn"
-#: src/Model/User.php:796
+#: src/Model/User.php:848
msgid "Empty passwords are not allowed."
msgstr "Lege wachtwoorden zijn niet toegestaan"
-#: src/Model/User.php:800
+#: 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:804
+#: src/Model/User.php:856
msgid "The password length is limited to 72 characters."
msgstr ""
-#: src/Model/User.php:808
+#: src/Model/User.php:860
msgid "The password can't contain white spaces nor accentuated letters"
msgstr ""
-#: src/Model/User.php:1003
+#: src/Model/User.php:1069
msgid "Passwords do not match. Password unchanged."
msgstr "Wachtwoorden komen niet overeen. Wachtwoord niet gewijzigd."
-#: src/Model/User.php:1010
+#: src/Model/User.php:1076
msgid "An invitation is required."
msgstr "Een uitnodiging is vereist."
-#: src/Model/User.php:1014
+#: src/Model/User.php:1080
msgid "Invitation could not be verified."
msgstr "Uitnodiging kon niet geverifieerd worden."
-#: src/Model/User.php:1022
+#: src/Model/User.php:1088
msgid "Invalid OpenID url"
msgstr "Ongeldige OpenID url"
-#: src/Model/User.php:1035 src/Security/Authentication.php:241
+#: 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:1035 src/Security/Authentication.php:241
+#: src/Model/User.php:1101 src/Security/Authentication.php:241
msgid "The error message was:"
msgstr "De foutboodschap was:"
-#: src/Model/User.php:1041
+#: src/Model/User.php:1107
msgid "Please enter the required information."
msgstr "Vul de vereiste informatie in."
-#: src/Model/User.php:1055
+#: 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:1062
+#: 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:1066
+#: 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:1074
+#: 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:1079
+#: 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:1083
+#: src/Model/User.php:1149
msgid "Not a valid email address."
msgstr "Geen geldig e-mailadres."
-#: src/Model/User.php:1086
+#: 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:1090 src/Model/User.php:1096
+#: 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:1102
+#: 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:1110 src/Model/User.php:1167
+#: 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:1154 src/Model/User.php:1158
+#: 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:1181
+#: 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:1188
+#: 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:1193
+#: src/Model/User.php:1259
msgid "Friends"
msgstr "Vrienden"
-#: src/Model/User.php:1197
+#: 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:1236
+#: src/Model/User.php:1307
msgid "Profile Photos"
msgstr "Profielfoto's"
-#: src/Model/User.php:1431
+#: src/Model/User.php:1487
#, php-format
msgid ""
"\n"
@@ -3573,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:1434
+#: src/Model/User.php:1490
#, php-format
msgid ""
"\n"
@@ -3605,12 +3790,12 @@ msgid ""
"\t\tThank you and welcome to %4$s."
msgstr ""
-#: src/Model/User.php:1467 src/Model/User.php:1574
+#: 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:1487
+#: src/Model/User.php:1543
#, php-format
msgid ""
"\n"
@@ -3625,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:1506
+#: src/Model/User.php:1562
#, php-format
msgid "Registration at %s"
msgstr "Registratie bij %s"
-#: src/Model/User.php:1530
+#: src/Model/User.php:1586
#, php-format
msgid ""
"\n"
@@ -3639,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:1538
+#: src/Model/User.php:1594
#, php-format
msgid ""
"\n"
@@ -3696,10 +3881,10 @@ msgid "Enable"
msgstr "Inschakelen"
#: src/Module/Admin/Addons/Details.php:111
-#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:209
+#: 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:220
+#: 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
@@ -3709,7 +3894,7 @@ msgstr "Beheer"
#: src/Module/Admin/Addons/Details.php:112
#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92
-#: src/Module/BaseSettings.php:134
+#: src/Module/BaseSettings.php:132
msgid "Addons"
msgstr "Addons"
@@ -3740,10 +3925,10 @@ 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:560 src/Module/Settings/Addons.php:78
+#: 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:169 src/Module/Settings/Display.php:247
+#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260
#: src/Module/Settings/Features.php:76
msgid "Save Settings"
msgstr "Instellingen opslaan"
@@ -3828,75 +4013,77 @@ msgstr "Fixeer feature %s "
msgid "Manage Additional Features"
msgstr "Beheer Bijkomende Features"
-#: src/Module/Admin/Federation.php:75
+#: 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:149 src/Module/Admin/Federation.php:398
+#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403
msgid "unknown"
msgstr "onbekend"
-#: src/Module/Admin/Federation.php:182
+#: 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:183
+#: 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:184
+#: 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:185
+#: 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:186
+#: 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:189
+#: 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:194
+#: 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:204
+#: 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 "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:210 src/Module/BaseAdmin.php:87
+#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87
msgid "Federation Statistics"
msgstr "Federatie Statistieken"
-#: src/Module/Admin/Federation.php:214
+#: src/Module/Admin/Federation.php:219
#, php-format
msgid ""
"Currently this node is aware of %2$s node (%3$s active users last month, "
@@ -4089,7 +4276,8 @@ msgstr ""
msgid "Job Parameters"
msgstr "Taak parameters"
-#: src/Module/Admin/Queue.php:78 src/Module/Settings/OAuth.php:74
+#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95
+#: src/Module/Settings/OAuth.php:74
msgid "Created"
msgstr "Aangemaakt"
@@ -4102,11 +4290,11 @@ msgstr "Prioriteit"
msgid "%s is no valid input for maximum image size"
msgstr ""
-#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:169
+#: 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:179
+#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188
#, php-format
msgid "%s - (Experimental)"
msgstr "%s - (Experimenteel)"
@@ -4196,7 +4384,7 @@ msgid "Policies"
msgstr "Beleid"
#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252
-#: src/Module/Contact.php:516 src/Module/Profile/Profile.php:276
+#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276
msgid "Advanced"
msgstr "Geavanceerd"
@@ -4526,8 +4714,8 @@ 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 "
-"group rather than public."
-msgstr "Stel de standaardrechten van berichten voor nieuwe leden op de standaard privacygroep in, in plaats van openbaar."
+"circle rather than public."
+msgstr ""
#: src/Module/Admin/Site.php:456
msgid "Don't include post content in email notifications"
@@ -4941,13 +5129,13 @@ 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 group when calculating network count"
+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 groups the query can be very "
-"expensive."
+"On systems with users that heavily use contact circles the query can be very"
+" expensive."
msgstr ""
#: src/Module/Admin/Site.php:509
@@ -4991,7 +5179,7 @@ msgid ""
"received."
msgstr ""
-#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:286
+#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309
#: src/Module/Settings/TwoFactor/Index.php:125
msgid "Disabled"
msgstr "Uitgeschakeld"
@@ -5186,51 +5374,40 @@ msgid ""
"href=\"%s\">the installation page for help."
msgstr "%s is niet bereikbaar. Dit is een belangrijk communicatieprobleem waardoor server-naar-server communicatie niet mogelijk is. Lees de the installatie pagina voor hulp."
-#: src/Module/Admin/Summary.php: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
+#: 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:180
+#: 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:188
+#: 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:199
+#: src/Module/Admin/Summary.php:175
msgid "Message queues"
msgstr "Bericht-wachtrijen"
-#: src/Module/Admin/Summary.php:205
+#: src/Module/Admin/Summary.php:181
msgid "Server Settings"
msgstr "Server instellingen."
-#: src/Module/Admin/Summary.php:223
+#: src/Module/Admin/Summary.php:199
msgid "Version"
msgstr "Versie"
-#: src/Module/Admin/Summary.php:227
+#: src/Module/Admin/Summary.php:203
msgid "Active addons"
msgstr "Actieve addons"
@@ -5383,11 +5560,11 @@ msgstr "Item niet gevonden"
msgid "Please login to continue."
msgstr "Log in om verder te gaan."
-#: src/Module/BaseAdmin.php:63 src/Module/BaseModeration.php:86
+#: src/Module/BaseAdmin.php:63
msgid "You don't have access to administration pages."
msgstr ""
-#: src/Module/BaseAdmin.php:67 src/Module/BaseModeration.php:90
+#: src/Module/BaseAdmin.php:67
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
@@ -5397,11 +5574,11 @@ msgstr ""
msgid "Overview"
msgstr "Overzicht"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:111
+#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
msgid "Configuration"
msgstr "Configuratie"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:112
+#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
msgid "Additional features"
msgstr "Extra functies"
@@ -5421,7 +5598,7 @@ msgstr "Inspecteer uitgestelde workers"
msgid "Inspect worker Queue"
msgstr "Taakwachtrij inspecteren"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:119
+#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
msgid "Diagnostics"
msgstr "Diagnostiek"
@@ -5449,7 +5626,7 @@ msgstr ""
msgid "Addon Features"
msgstr "Addon Features"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:128
+#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
msgid "User registrations waiting for confirmation"
msgstr "Gebruikersregistraties wachten op bevestiging"
@@ -5481,32 +5658,46 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: src/Module/BaseModeration.php:112 src/Module/Moderation/Users/Index.php:148
+#: 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/BaseModeration.php:114
+#: src/Module/BaseModeration.php:115
msgid "Tools"
msgstr "Hulpmiddelen"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:116
msgid "Contact Blocklist"
msgstr "Contact Blokkeerlijst"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:117
msgid "Server Blocklist"
msgstr "Server Blokkeerlijst"
-#: src/Module/BaseModeration.php:117 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
msgid "Delete Item"
msgstr "Verwijder Item"
-#: src/Module/BaseModeration.php:120 src/Module/Moderation/Item/Source.php:76
+#: 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:478
+#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507
msgid "Profile Details"
msgstr "Profieldetails"
@@ -5530,15 +5721,15 @@ msgstr ""
msgid "Tips for New Members"
msgstr "Tips voor nieuwe leden"
-#: src/Module/BaseSearch.php:69
+#: src/Module/BaseSearch.php:71
#, php-format
msgid "People Search - %s"
msgstr "Mensen Zoeken - %s"
-#: src/Module/BaseSearch.php:79
+#: src/Module/BaseSearch.php:75
#, php-format
-msgid "Forum Search - %s"
-msgstr "Forum doorzoeken - %s"
+msgid "Group Search - %s"
+msgstr ""
#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139
msgid "No matches"
@@ -5557,36 +5748,40 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: src/Module/BaseSettings.php:80
+#: src/Module/BaseSettings.php:78
msgid "Account"
msgstr "Account"
-#: src/Module/BaseSettings.php:87 src/Module/Security/TwoFactor/Verify.php:96
+#: 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:120
+#: src/Module/BaseSettings.php:118
msgid "Display"
msgstr "Weergave"
-#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:204
+#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204
msgid "Social Networks"
msgstr "Sociale netwerken"
-#: src/Module/BaseSettings.php:141 src/Module/Settings/Delegation.php:170
+#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172
msgid "Manage Accounts"
msgstr "Beheer Gebruikers"
-#: src/Module/BaseSettings.php:148
+#: src/Module/BaseSettings.php:146
msgid "Connected apps"
msgstr "Verbonden applicaties"
-#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:98
+#: 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:162
+#: src/Module/BaseSettings.php:167
msgid "Remove account"
msgstr "Account verwijderen"
@@ -5706,10 +5901,113 @@ msgstr "Beeld"
msgid "Create New Event"
msgstr "Maak een nieuwe gebeurtenis"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:235
+#: 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."
@@ -5717,159 +6015,146 @@ msgid_plural "%d contacts edited."
msgstr[0] "%d contact bewerkt."
msgstr[1] "%d contacten bewerkt."
-#: src/Module/Contact.php:341
+#: src/Module/Contact.php:348
msgid "Show all contacts"
msgstr "Toon alle contacten"
-#: src/Module/Contact.php:346 src/Module/Contact.php:414
+#: 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:349
+#: src/Module/Contact.php:356
msgid "Only show pending contacts"
msgstr "Toon alleen contacten in behandeling"
-#: src/Module/Contact.php:354 src/Module/Contact.php:415
+#: src/Module/Contact.php:361 src/Module/Contact.php:435
#: src/Module/Moderation/BaseUsers.php:93
msgid "Blocked"
msgstr "Geblokkeerd"
-#: src/Module/Contact.php:357
+#: src/Module/Contact.php:364
msgid "Only show blocked contacts"
msgstr "Toon alleen geblokkeerde contacten"
-#: src/Module/Contact.php:362 src/Module/Contact.php:417
-#: src/Object/Post.php:345
+#: 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:365
+#: src/Module/Contact.php:372
msgid "Only show ignored contacts"
msgstr "Toon alleen genegeerde contacten"
-#: src/Module/Contact.php:370 src/Module/Contact.php:418
+#: src/Module/Contact.php:377 src/Module/Contact.php:444
msgid "Collapsed"
msgstr ""
-#: src/Module/Contact.php:373
+#: src/Module/Contact.php:380
msgid "Only show collapsed contacts"
msgstr ""
-#: src/Module/Contact.php:378 src/Module/Contact.php:419
+#: src/Module/Contact.php:385 src/Module/Contact.php:447
msgid "Archived"
msgstr "Gearchiveerd"
-#: src/Module/Contact.php:381
+#: src/Module/Contact.php:388
msgid "Only show archived contacts"
msgstr "Toon alleen gearchiveerde contacten"
-#: src/Module/Contact.php:386 src/Module/Contact.php:416
+#: src/Module/Contact.php:393 src/Module/Contact.php:438
msgid "Hidden"
msgstr "Verborgen"
-#: src/Module/Contact.php:389
+#: src/Module/Contact.php:396
msgid "Only show hidden contacts"
msgstr "Toon alleen verborgen contacten"
-#: src/Module/Contact.php:397
-msgid "Organize your contact groups"
-msgstr "Organiseer je contact groepen"
+#: src/Module/Contact.php:404
+msgid "Organize your contact circles"
+msgstr ""
-#: src/Module/Contact.php:430
+#: src/Module/Contact.php:459
msgid "Search your contacts"
msgstr "Doorzoek je contacten"
-#: src/Module/Contact.php:431 src/Module/Search/Index.php:207
+#: 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:438
+#: src/Module/Contact.php:467
msgid "Update"
msgstr "Wijzigen"
-#: src/Module/Contact.php:439 src/Module/Contact/Profile.php:477
+#: 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:440 src/Module/Contact/Profile.php:485
+#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519
msgid "Unignore"
msgstr "Negeer niet meer"
-#: src/Module/Contact.php:441 src/Module/Contact/Profile.php:493
+#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527
msgid "Uncollapse"
msgstr ""
-#: src/Module/Contact.php:443
+#: src/Module/Contact.php:472
msgid "Batch Actions"
msgstr "Bulk Acties"
-#: src/Module/Contact.php:486
+#: src/Module/Contact.php:515
msgid "Conversations started by this contact"
msgstr "Gesprekken gestart door dit contact"
-#: src/Module/Contact.php:491
+#: src/Module/Contact.php:520
msgid "Posts and Comments"
msgstr "Berichten en reacties"
-#: src/Module/Contact.php:494
+#: src/Module/Contact.php:523
msgid "Individual Posts and Replies"
msgstr ""
-#: src/Module/Contact.php:502
+#: src/Module/Contact.php:531
msgid "Posts containing media objects"
msgstr ""
-#: src/Module/Contact.php:509
+#: src/Module/Contact.php:539
msgid "View all known contacts"
msgstr ""
-#: src/Module/Contact.php:519
+#: src/Module/Contact.php:550
msgid "Advanced Contact Settings"
msgstr "Geavanceerde instellingen voor contacten"
-#: src/Module/Contact.php:555
+#: src/Module/Contact.php:586
msgid "Mutual Friendship"
msgstr "Wederzijdse vriendschap"
-#: src/Module/Contact.php:559
+#: src/Module/Contact.php:590
msgid "is a fan of yours"
msgstr "Is een fan van jou"
-#: src/Module/Contact.php:563
+#: src/Module/Contact.php:594
msgid "you are a fan of"
msgstr "Jij bent een fan van"
-#: src/Module/Contact.php:581
+#: src/Module/Contact.php:612
msgid "Pending outgoing contact request"
msgstr "In afwachting van uitgaande contactaanvraag"
-#: src/Module/Contact.php:583
+#: src/Module/Contact.php:614
msgid "Pending incoming contact request"
msgstr "In afwachting van inkomende contactaanvraag"
-#: src/Module/Contact.php:596 src/Module/Contact/Profile.php:346
+#: 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: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
-#: src/Module/Group.php:97 src/Module/Group.php:106
-msgid "Contact not found."
-msgstr "Contact niet gevonden"
-
#: src/Module/Contact/Advanced.php:99
msgid "Contact update failed."
msgstr "Aanpassen van contact mislukt."
@@ -5880,6 +6165,7 @@ 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
@@ -5906,11 +6192,6 @@ msgstr "URL poll/feed"
msgid "New photo from this URL"
msgstr "Nieuwe foto van deze URL"
-#: src/Module/Contact/Contacts.php:66 src/Module/Conversation/Network.php:189
-#: src/Module/Group.php:101
-msgid "Invalid contact."
-msgstr "Ongeldig contact."
-
#: src/Module/Contact/Contacts.php:89
msgid "No known contacts."
msgstr ""
@@ -5967,7 +6248,7 @@ msgstr[0] "Contact (%s)"
msgstr[1] "Contacten (%s)"
#: 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/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
@@ -6005,15 +6286,16 @@ msgstr "Beantwoord het volgende:"
msgid "Your Identity Address:"
msgstr "Adres van je identiteit:"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:375
+#: 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:387
+#: 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:"
@@ -6039,8 +6321,8 @@ 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:82 src/Module/Media/Photo/Upload.php:87
-#: src/Module/Media/Photo/Upload.php:136
+#: 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."
@@ -6052,248 +6334,312 @@ msgstr "Geen overeenkomende zoekwoorden. Voeg zoekwoorden toe aan uw profiel."
msgid "Profile Match"
msgstr "Profielmatch"
-#: src/Module/Contact/Profile.php:128
+#: src/Module/Contact/Profile.php:140
msgid "Failed to update contact record."
msgstr "Ik kon de contactgegevens niet aanpassen."
-#: src/Module/Contact/Profile.php:178
+#: src/Module/Contact/Profile.php:190
msgid "Contact has been unblocked"
msgstr "Contact is gedeblokkeerd"
-#: src/Module/Contact/Profile.php:182
+#: src/Module/Contact/Profile.php:194
msgid "Contact has been blocked"
msgstr "Contact is geblokkeerd"
-#: src/Module/Contact/Profile.php:194
+#: src/Module/Contact/Profile.php:206
msgid "Contact has been unignored"
msgstr "Contact wordt niet meer genegeerd"
-#: src/Module/Contact/Profile.php:198
+#: src/Module/Contact/Profile.php:210
msgid "Contact has been ignored"
msgstr "Contact wordt genegeerd"
-#: src/Module/Contact/Profile.php:210
+#: src/Module/Contact/Profile.php:222
msgid "Contact has been uncollapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:214
+#: src/Module/Contact/Profile.php:226
msgid "Contact has been collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:242
+#: 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:243
+#: src/Module/Contact/Profile.php:255
#, php-format
msgid "You are sharing with %s"
msgstr "Je deelt met %s"
-#: src/Module/Contact/Profile.php:244
+#: src/Module/Contact/Profile.php:256
#, php-format
msgid "%s is sharing with you"
msgstr "%s deelt met jou"
-#: src/Module/Contact/Profile.php:260
+#: 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:262
+#: 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:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was not successful)"
msgstr "(Wijziging is niet geslaagd)"
-#: src/Module/Contact/Profile.php:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was successful)"
msgstr "(Wijziging is geslaagd)"
-#: src/Module/Contact/Profile.php:267 src/Module/Contact/Profile.php:448
+#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482
msgid "Suggest friends"
msgstr "Stel vrienden voor"
-#: src/Module/Contact/Profile.php:271
+#: src/Module/Contact/Profile.php:294
#, php-format
msgid "Network type: %s"
msgstr "Netwerk type: %s"
-#: src/Module/Contact/Profile.php:276
+#: src/Module/Contact/Profile.php:299
msgid "Communications lost with this contact!"
msgstr "Communicatie met dit contact is verbroken!"
-#: src/Module/Contact/Profile.php:282
+#: 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:284
+#: 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:287
+#: src/Module/Contact/Profile.php:310
msgid "Fetch information"
msgstr "Haal informatie op"
-#: src/Module/Contact/Profile.php:288
+#: src/Module/Contact/Profile.php:311
msgid "Fetch keywords"
msgstr "Haal sleutelwoorden op"
-#: src/Module/Contact/Profile.php:289
+#: src/Module/Contact/Profile.php:312
msgid "Fetch information and keywords"
msgstr "Haal informatie en sleutelwoorden op"
-#: src/Module/Contact/Profile.php:299 src/Module/Contact/Profile.php:304
-#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:315
+#: 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:300 src/Module/Contact/Profile.php:310
-#: src/Module/Contact/Profile.php:316
+#: 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:305 src/Module/Contact/Profile.php:311
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334
msgid "Native reshare"
msgstr ""
-#: src/Module/Contact/Profile.php:328
+#: src/Module/Contact/Profile.php:353
msgid "Contact Information / Notes"
msgstr "Contactinformatie / aantekeningen"
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:354
msgid "Contact Settings"
msgstr "Contact instellingen"
-#: src/Module/Contact/Profile.php:337
+#: src/Module/Contact/Profile.php:362
msgid "Contact"
msgstr "Contact"
-#: src/Module/Contact/Profile.php:341
+#: src/Module/Contact/Profile.php:366
msgid "Their personal note"
msgstr "Hun persoonlijke nota"
-#: src/Module/Contact/Profile.php:343
+#: src/Module/Contact/Profile.php:368
msgid "Edit contact notes"
msgstr "Wijzig aantekeningen over dit contact"
-#: src/Module/Contact/Profile.php:347
+#: src/Module/Contact/Profile.php:372
msgid "Block/Unblock contact"
msgstr "Blokkeer/deblokkeer contact"
-#: src/Module/Contact/Profile.php:348
+#: src/Module/Contact/Profile.php:373
+#: src/Module/Moderation/Report/Create.php:293
msgid "Ignore contact"
msgstr "Negeer contact"
-#: src/Module/Contact/Profile.php:349
+#: src/Module/Contact/Profile.php:374
msgid "View conversations"
msgstr "Toon gesprekken"
-#: src/Module/Contact/Profile.php:354
+#: src/Module/Contact/Profile.php:379
msgid "Last update:"
msgstr "Laatste wijziging:"
-#: src/Module/Contact/Profile.php:356
+#: src/Module/Contact/Profile.php:381
msgid "Update public posts"
msgstr "Openbare posts aanpassen"
-#: src/Module/Contact/Profile.php:358 src/Module/Contact/Profile.php:458
+#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492
msgid "Update now"
msgstr "Wijzig nu"
-#: src/Module/Contact/Profile.php:360
+#: src/Module/Contact/Profile.php:385
msgid "Awaiting connection acknowledge"
msgstr "Wait op bevestiging van de connectie"
-#: src/Module/Contact/Profile.php:361
+#: src/Module/Contact/Profile.php:386
msgid "Currently blocked"
msgstr "Op dit moment geblokkeerd"
-#: src/Module/Contact/Profile.php:362
+#: src/Module/Contact/Profile.php:387
msgid "Currently ignored"
msgstr "Op dit moment genegeerd"
-#: src/Module/Contact/Profile.php:363
+#: src/Module/Contact/Profile.php:388
msgid "Currently collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:364
+#: src/Module/Contact/Profile.php:389
msgid "Currently archived"
msgstr "Op dit moment gearchiveerd"
-#: src/Module/Contact/Profile.php:367
+#: 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:367
+#: 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:368
+#: src/Module/Contact/Profile.php:395
msgid "Notification for new posts"
msgstr "Meldingen voor nieuwe berichten"
-#: src/Module/Contact/Profile.php:368
+#: 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:370
+#: src/Module/Contact/Profile.php:397
msgid "Keyword Deny List"
msgstr ""
-#: src/Module/Contact/Profile.php:370
+#: 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:388
+#: src/Module/Contact/Profile.php:415
#: src/Module/Settings/TwoFactor/Index.php:139
msgid "Actions"
msgstr "Acties"
-#: src/Module/Contact/Profile.php:390
+#: 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:396
+#: src/Module/Contact/Profile.php:423
msgid "Mirror postings from this contact"
msgstr "Berichten van dit contact spiegelen"
-#: src/Module/Contact/Profile.php:398
+#: 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:468
+#: 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:479
+#: src/Module/Contact/Profile.php:513
msgid "Toggle Blocked status"
msgstr "Schakel geblokkeerde status"
-#: src/Module/Contact/Profile.php:487
+#: src/Module/Contact/Profile.php:521
msgid "Toggle Ignored status"
msgstr "Schakel negeerstatus"
-#: src/Module/Contact/Profile.php:495
+#: src/Module/Contact/Profile.php:529
msgid "Toggle Collapsed status"
msgstr ""
-#: src/Module/Contact/Profile.php:502 src/Module/Contact/Revoke.php:106
+#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106
msgid "Revoke Follow"
msgstr ""
-#: src/Module/Contact/Profile.php:504
+#: src/Module/Contact/Profile.php:538
msgid "Revoke the follow from this contact"
msgstr ""
@@ -6305,10 +6651,6 @@ msgstr "Verkeerde aanvraag."
msgid "Unknown contact."
msgstr ""
-#: src/Module/Contact/Revoke.php:73 src/Module/Group.php:110
-msgid "Contact is deleted."
-msgstr "Contact is verwijderd."
-
#: src/Module/Contact/Revoke.php:77
msgid "Contact is being deleted."
msgstr ""
@@ -6356,102 +6698,54 @@ msgstr ""
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr ""
-#: src/Module/Conversation/Community.php:74
+#: 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:87
-msgid "Local Community"
-msgstr "Lokale Groep"
-
-#: src/Module/Conversation/Community.php:90
-msgid "Posts from local users on this server"
-msgstr "Berichten van lokale gebruikers op deze server"
-
-#: src/Module/Conversation/Community.php:98
-msgid "Global Community"
-msgstr "Globale gemeenschap"
-
-#: src/Module/Conversation/Community.php:101
-msgid "Posts from users of the whole federated network"
-msgstr "Berichten van gebruikers van het hele gefedereerde netwerk"
-
-#: 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 "Geen resultaten."
-
-#: src/Module/Conversation/Community.php:212
+#: src/Module/Conversation/Community.php:179
msgid "Community option not available."
msgstr "Groepsoptie niet beschikbaar"
-#: src/Module/Conversation/Community.php:228
+#: src/Module/Conversation/Community.php:195
msgid "Not available."
msgstr "Niet beschikbaar"
-#: src/Module/Conversation/Network.php:175
-msgid "No such group"
-msgstr "Zo'n groep bestaat niet"
+#: src/Module/Conversation/Network.php:218
+msgid "No such circle"
+msgstr ""
-#: src/Module/Conversation/Network.php:179
+#: src/Module/Conversation/Network.php:222
#, php-format
-msgid "Group: %s"
-msgstr "Groep: %s"
-
-#: src/Module/Conversation/Network.php:257
-msgid "Latest Activity"
-msgstr "Laatste activiteit"
-
-#: src/Module/Conversation/Network.php:260
-msgid "Sort by latest activity"
-msgstr "Sorteer naar laatste activiteit"
-
-#: src/Module/Conversation/Network.php:265
-msgid "Latest Posts"
-msgstr "Laatste Berichten"
-
-#: src/Module/Conversation/Network.php:268
-msgid "Sort by post received date"
-msgstr "Sorteren naar ontvangstdatum bericht"
-
-#: src/Module/Conversation/Network.php:273
-msgid "Latest Creation"
+msgid "Circle: %s"
msgstr ""
-#: src/Module/Conversation/Network.php:276
-msgid "Sort by post creation date"
+#: src/Module/Conversation/Network.php:317
+msgid "Network feed not available."
msgstr ""
-#: src/Module/Conversation/Network.php:281
-#: src/Module/Settings/Profile/Index.php:235
-msgid "Personal"
-msgstr "Persoonlijk"
+#: src/Module/Conversation/Timeline.php:158
+msgid "Own Contacts"
+msgstr ""
-#: src/Module/Conversation/Network.php:284
-msgid "Posts that mention or involve you"
-msgstr "Alleen berichten die jou vermelden of op jou betrekking hebben"
+#: src/Module/Conversation/Timeline.php:162
+msgid "Include"
+msgstr ""
-#: src/Module/Conversation/Network.php:289 src/Object/Post.php:357
-msgid "Starred"
-msgstr "Met ster"
-
-#: src/Module/Conversation/Network.php:292
-msgid "Favourite Posts"
-msgstr "Favoriete berichten"
+#: src/Module/Conversation/Timeline.php:163
+msgid "Hide"
+msgstr ""
#: src/Module/Credits.php:44
msgid "Credits"
@@ -6669,7 +6963,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:144
+#: 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"
@@ -6798,138 +7092,58 @@ msgstr "Stel vrienden voor"
msgid "Suggest a friend for %s"
msgstr "Stel een vriend voor aan %s"
-#: src/Module/Friendica.php:64
+#: src/Module/Friendica.php:82
msgid "Installed addons/apps:"
msgstr "Geïnstalleerde addons/applicaties:"
-#: src/Module/Friendica.php:69
+#: src/Module/Friendica.php:87
msgid "No installed addons/apps"
msgstr "Geen geïnstalleerde addons/applicaties"
-#: src/Module/Friendica.php:74
+#: 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:81
+#: 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: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 "Reden van de blokkering"
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:104
msgid "Download this list in CSV format"
msgstr ""
-#: src/Module/Friendica.php:100
+#: 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:105
+#: 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:106
+#: src/Module/Friendica.php:124
msgid "Bug reports and issues: please visit"
msgstr "Bug rapporten en problemen: bezoek"
-#: src/Module/Friendica.php:106
+#: src/Module/Friendica.php:124
msgid "the bugtracker at github"
msgstr "de github bugtracker"
-#: src/Module/Friendica.php:107
+#: 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/Group.php:56
-msgid "Could not create group."
-msgstr "Kon de groep niet aanmaken."
-
-#: src/Module/Group.php:67 src/Module/Group.php:213 src/Module/Group.php:237
-msgid "Group not found."
-msgstr "Groep niet gevonden."
-
-#: src/Module/Group.php:73
-msgid "Group name was not changed."
-msgstr ""
-
-#: src/Module/Group.php:91
-msgid "Unknown group."
-msgstr "Onbekende groep."
-
-#: src/Module/Group.php:116
-msgid "Unable to add the contact to the group."
-msgstr "Kan het contact niet aan de groep toevoegen."
-
-#: src/Module/Group.php:119
-msgid "Contact successfully added to group."
-msgstr "Contact succesvol aan de groep toegevoegd."
-
-#: src/Module/Group.php:123
-msgid "Unable to remove the contact from the group."
-msgstr "Kan het contact niet uit de groep verwijderen."
-
-#: src/Module/Group.php:126
-msgid "Contact successfully removed from group."
-msgstr "Contact succesvol verwijderd uit groep."
-
-#: src/Module/Group.php:130
-msgid "Bad request."
-msgstr "Verkeerde aanvraag."
-
-#: src/Module/Group.php:169
-msgid "Save Group"
-msgstr "Bewaar groep"
-
-#: src/Module/Group.php:170
-msgid "Filter"
-msgstr "filter"
-
-#: src/Module/Group.php:176
-msgid "Create a group of contacts/friends."
-msgstr "Maak een groep contacten/vrienden aan."
-
-#: src/Module/Group.php:218
-msgid "Unable to remove group."
-msgstr "Niet in staat om groep te verwijderen."
-
-#: src/Module/Group.php:269
-msgid "Delete Group"
-msgstr "Verwijder Groep"
-
-#: src/Module/Group.php:279
-msgid "Edit Group Name"
-msgstr "Bewerk Groep Naam"
-
-#: src/Module/Group.php:289
-msgid "Members"
-msgstr "Leden"
-
-#: src/Module/Group.php:292
-msgid "Group is empty"
-msgstr "De groep is leeg"
-
-#: src/Module/Group.php:305
-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/HCard.php:45
msgid "No profile"
msgstr "Geen profiel"
@@ -7221,30 +7435,26 @@ msgstr "Nieuw bericht opstellen"
msgid "Visibility"
msgstr "Zichtbaarheid"
-#: src/Module/Item/Compose.php:201
+#: src/Module/Item/Compose.php:203
msgid "Clear the location"
msgstr "Wis de locatie"
-#: src/Module/Item/Compose.php:202
+#: 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:203
+#: 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/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/Display.php:136 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/Item/Feed.php:86
msgid "The feed for this item is unavailable."
msgstr "De tijdlijn voor dit item is niet beschikbaar"
@@ -7300,20 +7510,13 @@ msgstr "Bestand is groter dan de limiet ( %s )"
msgid "File upload failed."
msgstr "Uploaden van bestand mislukt."
-#: src/Module/Media/Photo/Upload.php:153 src/Module/Media/Photo/Upload.php:154
+#: 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:187 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/Media/Photo/Upload.php:205 src/Module/Profile/Photos.php:243
+#: 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."
@@ -7346,41 +7549,41 @@ msgstr ""
msgid "List of pending user deletions"
msgstr ""
-#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:491
+#: 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:498
+#: 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:505
-msgid "Public Forum"
-msgstr "Publiek Forum"
+#: 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:512
+#: 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 Forum"
-msgstr "Privé Forum"
+msgid "Private Group"
+msgstr ""
-#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:463
+#: 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:470
+#: 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:477
+#: 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:484
-msgid "Community Forum"
-msgstr "Groepsforum"
+#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485
+msgid "Community Group"
+msgstr ""
#: src/Module/Moderation/BaseUsers.php:130
msgid "Relay"
@@ -7436,6 +7639,7 @@ 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"
@@ -7509,6 +7713,8 @@ 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 ""
@@ -7791,6 +7997,237 @@ msgstr ""
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"
@@ -7800,8 +8237,8 @@ msgid "Automatic Follower Account"
msgstr "Automatische Volger Account"
#: src/Module/Moderation/Summary.php:55
-msgid "Public Forum Account"
-msgstr "Publiek Forum account"
+msgid "Public Group Account"
+msgstr ""
#: src/Module/Moderation/Summary.php:56
msgid "Automatic Friend Account"
@@ -7812,8 +8249,8 @@ msgid "Blog Account"
msgstr "Blog Account"
#: src/Module/Moderation/Summary.php:58
-msgid "Private Forum Account"
-msgstr "Privé Forum Account"
+msgid "Private Group Account"
+msgstr ""
#: src/Module/Moderation/Summary.php:78
msgid "Registered users"
@@ -8113,11 +8550,11 @@ msgstr "Tijdlijn-notificaties"
msgid "Show unread"
msgstr "Toon ongelezen"
-#: src/Module/Notifications/Ping.php:245
+#: src/Module/Notifications/Ping.php:246
msgid "{0} requested registration"
msgstr "{0} vroeg om zich te registreren"
-#: src/Module/Notifications/Ping.php:254
+#: src/Module/Notifications/Ping.php:255
#, php-format
msgid "{0} and %d others requested registration"
msgstr ""
@@ -8136,7 +8573,7 @@ msgstr "Wil je deze toepassing toestemming geven om jouw berichten en contacten
msgid "Unsupported or missing response type"
msgstr ""
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:77
+#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78
msgid "Incomplete request data"
msgstr ""
@@ -8147,11 +8584,11 @@ 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:104
+#: src/Module/OAuth/Token.php:108
msgid "Unsupported or missing grant type"
msgstr ""
@@ -8276,21 +8713,21 @@ msgstr ""
msgid "Attributed To: %s
"
msgstr ""
-#: src/Module/Photo.php:129
+#: src/Module/Photo.php:130
msgid "The Photo is not available."
msgstr ""
-#: src/Module/Photo.php:154
+#: 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:191
+#: src/Module/Photo.php:192
#, php-format
msgid "Invalid external resource with url %s."
msgstr ""
-#: src/Module/Photo.php:193
+#: src/Module/Photo.php:194
#, php-format
msgid "Invalid photo with id %s."
msgstr "Ongeldige foto met ID %s"
@@ -8331,7 +8768,7 @@ msgstr "Verwijder label van item"
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:178
+#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180
#: src/Module/Settings/TwoFactor/Trusted.php:144
msgid "Remove"
msgstr "Verwijderen"
@@ -8342,24 +8779,31 @@ msgstr "Geen contacten."
#: 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:1032
-#: src/Protocol/OStatus.php:1007
+#: 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:1036 src/Protocol/OStatus.php:1012
+#: 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:1039 src/Protocol/OStatus.php:1016
+#: 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"
@@ -8378,7 +8822,7 @@ msgstr "De server kan op dit moment geen nieuw bestand opladen, contacteer alsje
msgid "Image file is empty."
msgstr "Afbeeldingsbestand is leeg."
-#: src/Module/Profile/Photos.php:376
+#: src/Module/Profile/Photos.php:356
msgid "View Album"
msgstr "Album bekijken"
@@ -8393,7 +8837,7 @@ msgid ""
"class=\"btn btn-sm pull-right\">Cancel"
msgstr ""
-#: src/Module/Profile/Profile.php:167 src/Module/Settings/Account.php:575
+#: src/Module/Profile/Profile.php:167
msgid "Full Name:"
msgstr "Volledige Naam:"
@@ -8414,12 +8858,12 @@ msgid "Birthday:"
msgstr "Verjaardag:"
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: 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:253 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -8427,13 +8871,13 @@ msgstr[0] "%d jaar oud"
msgstr[1] "%d jaar oud"
#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:246
+#: src/Module/Settings/Profile/Index.php:284
msgid "Description:"
msgstr "Beschrijving:"
#: src/Module/Profile/Profile.php:261
-msgid "Forums:"
-msgstr "Fora:"
+msgid "Groups:"
+msgstr ""
#: src/Module/Profile/Profile.php:273
msgid "View profile as:"
@@ -8603,7 +9047,7 @@ 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:566
+#: src/Module/Settings/Account.php:567
msgid "New Password:"
msgstr "Nieuw Wachtwoord:"
@@ -8612,7 +9056,7 @@ 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:567
+#: src/Module/Settings/Account.php:568
msgid "Confirm:"
msgstr "Bevestig:"
@@ -8639,11 +9083,11 @@ msgstr "Importeer je profiel op deze friendica server"
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:154
+#: 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:154
+#: 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."
@@ -8830,24 +9274,24 @@ msgid "Update Password"
msgstr ""
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: src/Module/Settings/Account.php:569
msgid "Current Password:"
msgstr "Huidig wachtwoord:"
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: 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:552
+#: 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:553
+#: src/Module/Settings/Account.php:554
msgid "Password length is limited to 72 characters."
msgstr ""
@@ -8971,99 +9415,99 @@ msgstr "Ongeldig email adres."
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:198
-#: src/Module/Settings/Account.php:218 src/Module/Settings/Account.php:302
-#: src/Module/Settings/Account.php:351
+#: 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:363
+#: src/Module/Settings/Account.php:364
msgid "Contact CSV file upload error"
msgstr ""
-#: src/Module/Settings/Account.php:382
+#: src/Module/Settings/Account.php:383
msgid "Importing Contacts done"
msgstr "Importeren Contacten voltooid"
-#: src/Module/Settings/Account.php:395
+#: 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:412
+#: 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:454
+#: src/Module/Settings/Account.php:455
msgid "Personal Page Subtypes"
msgstr "Persoonlijke Pagina Subtypes"
-#: src/Module/Settings/Account.php:455
-msgid "Community Forum Subtypes"
-msgstr "Groepsforum Subtypes"
+#: src/Module/Settings/Account.php:456
+msgid "Community Group Subtypes"
+msgstr ""
-#: src/Module/Settings/Account.php:465
+#: src/Module/Settings/Account.php:466
msgid "Account for a personal profile."
msgstr "Account voor een persoonlijk profiel"
-#: src/Module/Settings/Account.php:472
+#: 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:479
+#: 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:486
+#: src/Module/Settings/Account.php:487
msgid "Account for community discussions."
msgstr "Account voor groepsdiscussies."
-#: src/Module/Settings/Account.php:493
+#: 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:500
+#: 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:507
+#: src/Module/Settings/Account.php:508
msgid "Automatically approves all contact requests."
msgstr "Aanvaardt automatisch all contact aanvragen."
-#: src/Module/Settings/Account.php:514
+#: 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:519
-msgid "Private Forum [Experimental]"
-msgstr "Privé-forum [experimenteel]"
+#: src/Module/Settings/Account.php:520
+msgid "Private Group [Experimental]"
+msgstr ""
-#: src/Module/Settings/Account.php:521
+#: 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:530
+#: src/Module/Settings/Account.php:531
msgid "OpenID:"
msgstr "OpenID:"
-#: src/Module/Settings/Account.php:530
+#: 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:538
+#: 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:538
+#: src/Module/Settings/Account.php:539
#, php-format
msgid ""
"Your profile will be published in this node's local "
@@ -9071,89 +9515,94 @@ msgid ""
" system settings."
msgstr "Je profiel zal gepubliceerd worden de lokale gids van deze node. Je profiel details kunnen publiek zichtbaar zijn afhankelijk van de systeem instellingen."
-#: src/Module/Settings/Account.php:544
+#: 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:557
+#: src/Module/Settings/Account.php:558
msgid "Account Settings"
msgstr "Account Instellingen"
-#: src/Module/Settings/Account.php:558
+#: 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:565
+#: src/Module/Settings/Account.php:566
msgid "Password Settings"
msgstr "Wachtwoord Instellingen"
-#: src/Module/Settings/Account.php:567
+#: 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:569
+#: src/Module/Settings/Account.php:570
msgid "Password:"
msgstr "Wachtwoord:"
-#: 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 "Je huidige wachtwoord om de verandering in het email adres te bevestigen"
-#: src/Module/Settings/Account.php:572
+#: src/Module/Settings/Account.php:573
msgid "Delete OpenID URL"
msgstr "Verwijder OpenID URL"
-#: src/Module/Settings/Account.php:574
+#: 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:577
+#: src/Module/Settings/Account.php:578
msgid "Your Timezone:"
msgstr "Je Tijdzone:"
-#: src/Module/Settings/Account.php:578
+#: src/Module/Settings/Account.php:579
msgid "Your Language:"
msgstr "Je taal:"
-#: 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 "Configureer de taal van die we gebruiken als friendica interface en om je emails te sturen"
-#: src/Module/Settings/Account.php:579
+#: src/Module/Settings/Account.php:580
msgid "Default Post Location:"
msgstr "Standaard locatie:"
-#: src/Module/Settings/Account.php:580
+#: src/Module/Settings/Account.php:581
msgid "Use Browser Location:"
msgstr "Gebruik Webbrowser Locatie:"
-#: src/Module/Settings/Account.php:582
+#: src/Module/Settings/Account.php:583
msgid "Security and Privacy Settings"
msgstr "Instellingen voor Beveiliging en Privacy"
-#: src/Module/Settings/Account.php:584
+#: src/Module/Settings/Account.php:585
msgid "Maximum Friend Requests/Day:"
msgstr "Maximum aantal vriendschapsverzoeken per dag:"
-#: 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 "(om spam misbruik te voorkomen)"
-#: src/Module/Settings/Account.php:586
+#: 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: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 "
@@ -9161,43 +9610,43 @@ msgid ""
"indexed or not."
msgstr "Activeer deze instelling als u wilt dat anderen u gemakkelijk kunnen vinden en volgen. Uw profiel is doorzoekbaar op externe systemen. Deze instelling bepaalt ook of Friendica zoekmachines zal informeren dat uw profiel moet worden geïndexeerd of niet."
-#: src/Module/Settings/Account.php:587
+#: 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: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 "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:588
+#: src/Module/Settings/Account.php:589
msgid "Hide your public content from anonymous viewers"
msgstr ""
-#: src/Module/Settings/Account.php:588
+#: 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:589
+#: src/Module/Settings/Account.php:590
msgid "Make public posts unlisted"
msgstr "Maak openbare berichten verborgen"
-#: 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 "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:590
+#: src/Module/Settings/Account.php:591
msgid "Make all posted pictures accessible"
msgstr "Maak alle geplaatste foto's toegankelijk"
-#: 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 "
@@ -9205,233 +9654,241 @@ msgid ""
"public on your photo albums though."
msgstr "Deze optie maakt elke geplaatste foto toegankelijk via de directe link. Dit is een tijdelijke oplossing voor het probleem dat de meeste andere netwerken de rechten op afbeeldingen niet kunnen verwerken. Niet-openbare afbeeldingen zijn echter nog steeds niet zichtbaar voor het publiek in uw fotoalbums."
-#: src/Module/Settings/Account.php:591
+#: 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: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 "Je contacten kunnen berichten schrijven op je tijdslijn. Deze berichten zullen verspreid worden naar je contacten"
-#: src/Module/Settings/Account.php:592
+#: 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:592
+#: 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:593
+#: 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: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 "Friendica netwerk gebruikers kunnen je privé boodschappen sturen zelfs als ze niet in je contact lijst staan."
-#: src/Module/Settings/Account.php:594
+#: 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:600
+#: src/Module/Settings/Account.php:602
msgid "Expiration settings"
msgstr "Vervalinstellingen"
-#: src/Module/Settings/Account.php:601
+#: 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:601
+#: 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:602
+#: src/Module/Settings/Account.php:604
msgid "Expire posts"
msgstr "Verlopen berichten"
-#: src/Module/Settings/Account.php:602
+#: 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:603
+#: src/Module/Settings/Account.php:605
msgid "Expire personal notes"
msgstr "Verloop persoonlijke notities"
-#: 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 "Indien geactiveerd, verlopen de persoonlijke notities op uw profielpagina."
-#: src/Module/Settings/Account.php:604
+#: src/Module/Settings/Account.php:606
msgid "Expire starred posts"
msgstr "Berichten met ster laten vervallen"
-#: 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 "Berichten met een ster verhinderen dat ze verlopen. Dat gedrag wordt door deze instelling overschreven."
-#: src/Module/Settings/Account.php:605
+#: src/Module/Settings/Account.php:607
msgid "Only expire posts by others"
msgstr "Laat alleen berichten van anderen verlopen"
-#: 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 "Indien geactiveerd, vervallen je eigen berichten nooit. Dan zijn bovenstaande instellingen alleen geldig voor berichten die je hebt ontvangen."
-#: src/Module/Settings/Account.php:608
+#: src/Module/Settings/Account.php:610
msgid "Notification Settings"
msgstr "Notificatie Instellingen"
-#: src/Module/Settings/Account.php:609
+#: src/Module/Settings/Account.php:611
msgid "Send a notification email when:"
msgstr "Stuur een notificatie e-mail wanneer:"
-#: src/Module/Settings/Account.php:610
+#: src/Module/Settings/Account.php:612
msgid "You receive an introduction"
msgstr "Je ontvangt een vriendschaps- of connectieverzoek"
-#: src/Module/Settings/Account.php:611
+#: src/Module/Settings/Account.php:613
msgid "Your introductions are confirmed"
msgstr "Jouw vriendschaps- of connectieverzoeken zijn bevestigd"
-#: src/Module/Settings/Account.php:612
+#: 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:613
+#: src/Module/Settings/Account.php:615
msgid "Someone writes a followup comment"
msgstr "Iemand een reactie schrijft"
-#: src/Module/Settings/Account.php:614
+#: src/Module/Settings/Account.php:616
msgid "You receive a private message"
msgstr "Je een privé-bericht ontvangt"
-#: src/Module/Settings/Account.php:615
+#: 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:616
+#: 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:618
+#: src/Module/Settings/Account.php:620
msgid "Create a desktop notification when:"
msgstr ""
-#: src/Module/Settings/Account.php:619
+#: src/Module/Settings/Account.php:621
msgid "Someone tagged you"
msgstr ""
-#: src/Module/Settings/Account.php:620
+#: src/Module/Settings/Account.php:622
msgid "Someone directly commented on your post"
msgstr ""
-#: src/Module/Settings/Account.php:621
+#: src/Module/Settings/Account.php:623
msgid "Someone liked your content"
msgstr ""
-#: src/Module/Settings/Account.php:621 src/Module/Settings/Account.php:622
+#: 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:622
+#: src/Module/Settings/Account.php:624
msgid "Someone shared your content"
msgstr ""
-#: src/Module/Settings/Account.php:623
+#: src/Module/Settings/Account.php:625
msgid "Someone commented in your thread"
msgstr ""
-#: src/Module/Settings/Account.php:624
+#: src/Module/Settings/Account.php:626
msgid "Someone commented in a thread where you commented"
msgstr ""
-#: src/Module/Settings/Account.php:625
+#: src/Module/Settings/Account.php:627
msgid "Someone commented in a thread where you interacted"
msgstr ""
-#: src/Module/Settings/Account.php:627
+#: src/Module/Settings/Account.php:629
msgid "Activate desktop notifications"
msgstr "Activeer desktop notificaties"
-#: src/Module/Settings/Account.php:627
+#: 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:631
+#: src/Module/Settings/Account.php:633
msgid "Text-only notification emails"
msgstr "Alleen-tekst notificatie emails"
-#: src/Module/Settings/Account.php:633
+#: 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:637
+#: src/Module/Settings/Account.php:639
msgid "Show detailled notifications"
msgstr "Toon gedetailleerde notificaties"
-#: src/Module/Settings/Account.php:639
+#: 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:643
+#: src/Module/Settings/Account.php:645
msgid "Show notifications of ignored contacts"
msgstr ""
-#: src/Module/Settings/Account.php:645
+#: 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:648
+#: src/Module/Settings/Account.php:650
msgid "Advanced Account/Page Type Settings"
msgstr "Geavanceerde Account/Pagina Type Instellingen"
-#: src/Module/Settings/Account.php:649
+#: 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:652
+#: src/Module/Settings/Account.php:654
msgid "Import Contacts"
msgstr "Importeer contacten"
-#: src/Module/Settings/Account.php:653
+#: 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:654
+#: src/Module/Settings/Account.php:656
msgid "Upload File"
msgstr "Upload bestand"
-#: src/Module/Settings/Account.php:657
+#: src/Module/Settings/Account.php:659
msgid "Relocate"
msgstr "Verhuis"
-#: src/Module/Settings/Account.php:658
+#: 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:659
+#: src/Module/Settings/Account.php:661
msgid "Resend relocate message to contacts"
msgstr "Stuur verhuis boodschap naar contacten"
@@ -9640,224 +10097,250 @@ msgstr "Naar map verplaatsen"
msgid "Move to folder:"
msgstr "Verplaatsen naar map:"
-#: src/Module/Settings/Delegation.php:52
+#: src/Module/Settings/Delegation.php:54
msgid "Delegation successfully granted."
msgstr "Delegatie met succes verleend."
-#: src/Module/Settings/Delegation.php:54
+#: 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:58
+#: src/Module/Settings/Delegation.php:60
msgid "Delegation successfully revoked."
msgstr "Delegatie is ingetrokken."
-#: src/Module/Settings/Delegation.php:80
-#: src/Module/Settings/Delegation.php:102
+#: 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:94
+#: src/Module/Settings/Delegation.php:96
msgid "Delegate user not found."
msgstr "Gemachtigde gebruiker niet gevonden."
-#: src/Module/Settings/Delegation.php:142
+#: src/Module/Settings/Delegation.php:144
msgid "No parent user"
msgstr "Ouderlijke gebruiker ontbreekt"
-#: src/Module/Settings/Delegation.php:153
-#: src/Module/Settings/Delegation.php:164
+#: src/Module/Settings/Delegation.php:155
+#: src/Module/Settings/Delegation.php:166
msgid "Parent User"
msgstr "Ouderlijke gebruiker"
-#: src/Module/Settings/Delegation.php:161
+#: src/Module/Settings/Delegation.php:163
msgid "Additional Accounts"
msgstr "Toegevoegde gebruikers"
-#: src/Module/Settings/Delegation.php:162
+#: 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:163
+#: src/Module/Settings/Delegation.php:165
msgid "Register an additional account"
msgstr "Registreer een toegevoegde gebruiker"
-#: src/Module/Settings/Delegation.php:167
+#: 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:171
+#: src/Module/Settings/Delegation.php:173
msgid "Delegates"
msgstr "Gemachtigden"
-#: src/Module/Settings/Delegation.php:173
+#: 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:174
+#: src/Module/Settings/Delegation.php:176
msgid "Existing Page Delegates"
msgstr "Bestaande personen waaraan het paginabeheer is uitbesteed"
-#: src/Module/Settings/Delegation.php:176
+#: src/Module/Settings/Delegation.php:178
msgid "Potential Delegates"
msgstr "Mogelijke personen waaraan het paginabeheer kan worden uitbesteed "
-#: src/Module/Settings/Delegation.php:179
+#: src/Module/Settings/Delegation.php:181
msgid "Add"
msgstr "Toevoegen"
-#: src/Module/Settings/Delegation.php:180
+#: src/Module/Settings/Delegation.php:182
msgid "No entries."
msgstr "Geen gegevens."
-#: src/Module/Settings/Display.php:137
+#: 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:177
+#: src/Module/Settings/Display.php:186
#, php-format
msgid "%s - (Unsupported)"
msgstr "%s - (Niet ondersteund)"
-#: src/Module/Settings/Display.php:212
+#: src/Module/Settings/Display.php:221
msgid "No preview"
msgstr ""
-#: src/Module/Settings/Display.php:213
+#: src/Module/Settings/Display.php:222
msgid "No image"
msgstr ""
-#: src/Module/Settings/Display.php:214
+#: src/Module/Settings/Display.php:223
msgid "Small Image"
msgstr ""
-#: src/Module/Settings/Display.php:215
+#: src/Module/Settings/Display.php:224
msgid "Large Image"
msgstr ""
-#: src/Module/Settings/Display.php:246
+#: src/Module/Settings/Display.php:259
msgid "Display Settings"
msgstr "Scherminstellingen"
-#: src/Module/Settings/Display.php:248
+#: src/Module/Settings/Display.php:261
msgid "General Theme Settings"
msgstr "Algemene Thema Instellingen"
-#: src/Module/Settings/Display.php:249
+#: src/Module/Settings/Display.php:262
msgid "Custom Theme Settings"
msgstr "Speciale Thema Instellingen"
-#: src/Module/Settings/Display.php:250
+#: src/Module/Settings/Display.php:263
msgid "Content Settings"
msgstr "Content Instellingen"
-#: src/Module/Settings/Display.php:251 view/theme/duepuntozero/config.php:86
+#: 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:257
+#: 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:258
+#: src/Module/Settings/Display.php:273
msgid "Mobile Theme:"
msgstr "Mobiel thema:"
-#: src/Module/Settings/Display.php:261
+#: 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:261 src/Module/Settings/Display.php:262
+#: 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:262
+#: 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:263
+#: src/Module/Settings/Display.php:278
msgid "Update browser every xx seconds"
msgstr "Browser elke xx seconden verversen"
-#: src/Module/Settings/Display.php:263
+#: 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:264
+#: src/Module/Settings/Display.php:279
msgid "Display emoticons"
msgstr ""
-#: src/Module/Settings/Display.php:264
+#: src/Module/Settings/Display.php:279
msgid "When enabled, emoticons are replaced with matching symbols."
msgstr ""
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:280
msgid "Infinite scroll"
msgstr "Oneindig scrollen"
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:280
msgid "Automatic fetch new items when reaching the page end."
msgstr ""
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:281
msgid "Enable Smart Threading"
msgstr ""
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:281
msgid "Enable the automatic suppression of extraneous thread indentation."
msgstr ""
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:282
msgid "Display the Dislike feature"
msgstr ""
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:282
msgid ""
"Display the Dislike button and dislike reactions on posts and comments."
msgstr ""
-#: src/Module/Settings/Display.php:268
+#: src/Module/Settings/Display.php:283
msgid "Display the resharer"
msgstr ""
-#: src/Module/Settings/Display.php:268
+#: 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:269
+#: src/Module/Settings/Display.php:284
msgid "Stay local"
msgstr ""
-#: src/Module/Settings/Display.php:269
+#: 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:270
+#: src/Module/Settings/Display.php:285
msgid "Link preview mode"
msgstr ""
-#: src/Module/Settings/Display.php:270
+#: 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:272
+#: 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:273
+#: 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"
@@ -9870,155 +10353,151 @@ msgstr "Verbonden applicaties"
msgid "Remove authorization"
msgstr "Verwijder authorisatie"
-#: src/Module/Settings/Profile/Index.php:84
-msgid "Profile Name is required."
-msgstr "Profielnaam is vereist."
+#: src/Module/Settings/Profile/Index.php:116
+msgid "Display Name is required."
+msgstr ""
-#: src/Module/Settings/Profile/Index.php:134
+#: 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:175
-#: src/Module/Settings/Profile/Index.php:195
+#: src/Module/Settings/Profile/Index.php:205
+#: src/Module/Settings/Profile/Index.php:226
msgid "Label:"
msgstr "Label:"
-#: src/Module/Settings/Profile/Index.php:176
-#: src/Module/Settings/Profile/Index.php:196
+#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:227
msgid "Value:"
msgstr "Waarde:"
-#: src/Module/Settings/Profile/Index.php:186
-#: src/Module/Settings/Profile/Index.php:206
+#: 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:187
-#: src/Module/Settings/Profile/Index.php:207
+#: 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:193
+#: src/Module/Settings/Profile/Index.php:224
msgid "Add a new profile field"
msgstr "Voeg nieuw profielveld toe"
-#: src/Module/Settings/Profile/Index.php:216
+#: 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:218
+#: 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:228
+#: src/Module/Settings/Profile/Index.php:255
msgid "Profile Actions"
msgstr "Profiel Acties"
-#: src/Module/Settings/Profile/Index.php:229
+#: src/Module/Settings/Profile/Index.php:256
msgid "Edit Profile Details"
msgstr "Profieldetails bewerken"
-#: src/Module/Settings/Profile/Index.php:231
+#: src/Module/Settings/Profile/Index.php:258
msgid "Change Profile Photo"
msgstr "Profielfoto wijzigen"
-#: src/Module/Settings/Profile/Index.php:236
+#: src/Module/Settings/Profile/Index.php:261
msgid "Profile picture"
msgstr "Profiel foto"
-#: src/Module/Settings/Profile/Index.php:237
+#: src/Module/Settings/Profile/Index.php:262
msgid "Location"
msgstr "Plaats"
-#: src/Module/Settings/Profile/Index.php:238 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 "Diversen"
-#: src/Module/Settings/Profile/Index.php:239
+#: src/Module/Settings/Profile/Index.php:264
msgid "Custom Profile Fields"
msgstr "Aangepaste profielvelden"
-#: src/Module/Settings/Profile/Index.php:241 src/Module/Welcome.php:58
+#: 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:245
-msgid "Display name:"
-msgstr "Weergave naam:"
-
-#: src/Module/Settings/Profile/Index.php:248
-msgid "Street Address:"
-msgstr "Postadres:"
-
-#: src/Module/Settings/Profile/Index.php:249
-msgid "Locality/City:"
-msgstr "Gemeente/Stad:"
-
-#: src/Module/Settings/Profile/Index.php:250
-msgid "Region/State:"
-msgstr "Regio/Staat:"
-
-#: src/Module/Settings/Profile/Index.php:251
-msgid "Postal/Zip Code:"
-msgstr "Postcode:"
-
-#: src/Module/Settings/Profile/Index.php:252
-msgid "Country:"
-msgstr "Land:"
-
-#: src/Module/Settings/Profile/Index.php:254
-msgid "XMPP (Jabber) address:"
-msgstr "XMPP (Jabber) adres:"
-
-#: 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 "Adres tijdlijn:"
-
-#: src/Module/Settings/Profile/Index.php:257
-msgid "Public Keywords:"
-msgstr "Publieke Sleutelwoorden:"
-
-#: src/Module/Settings/Profile/Index.php:257
-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:258
-msgid "Private Keywords:"
-msgstr "Privé Sleutelwoorden:"
-
-#: src/Module/Settings/Profile/Index.php:258
-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:259
+#: src/Module/Settings/Profile/Index.php:266
#, php-format
msgid ""
"Custom fields appear on your profile page.
\n"
"\t\t\t\tYou can use BBCodes in the field values.
\n"
"\t\t\t\tReorder by dragging the field title.
\n"
"\t\t\t\tEmpty the label field to remove a custom field.
\n"
-"\t\t\t\tNon-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\tJe kunt BBCodes in de veldwaarden gebruiken.
\n\t\t\t\tSorteer opnieuw door de veldtitel te slepen.
\n\t\t\t\tMaak het labelveld leeg om een aangepast veld te verwijderen.
\n\t\t\t\tNiet-openbare velden zijn alleen zichtbaar voor de geselecteerde Friendica-contacten of de Friendica-contacten in de geselecteerde groepen.
"
+"\t\t\t\tNon-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
@@ -10130,6 +10609,42 @@ msgstr "Dit zal je account volledig verwijderen. Dit kan niet hersteld worden al
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
@@ -10451,20 +10966,41 @@ msgid ""
" e.g. Mastodon."
msgstr "Exporteer de lijst met de gebruikers die u volgt als CSV-bestand. Compatibel met b.v. Mastodont."
+#: 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 "Not Found"
+msgid ""
+"This node has blocked the top-level author or the author of the shared post."
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"
-"
"
+"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
@@ -10476,7 +11012,7 @@ msgstr ""
msgid "Exception thrown in %s:%d"
msgstr ""
-#: src/Module/Tos.php:57 src/Module/Tos.php:106
+#: 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"
@@ -10489,14 +11025,14 @@ 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:58 src/Module/Tos.php:107
+#: 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:59 src/Module/Tos.php:108
+#: 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"
@@ -10507,11 +11043,11 @@ msgid ""
"from the nodes of the communication partners."
msgstr ""
-#: src/Module/Tos.php:62 src/Module/Tos.php:105
+#: src/Module/Tos.php:63 src/Module/Tos.php:106
msgid "Privacy Statement"
msgstr "Privacy Verklaring"
-#: src/Module/Tos.php:102
+#: src/Module/Tos.php:103
msgid "Rules"
msgstr ""
@@ -10519,6 +11055,10 @@ msgstr ""
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 "Het gevraagde item bestaat niet of is verwijderd"
+
#: 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"
@@ -10567,22 +11107,22 @@ msgstr "Fout! Geen versie data in het bestand! Is dit wel een Friendica account
msgid "User '%s' already exists on this server!"
msgstr "Gebruiker '%s' bestaat al op deze server!"
-#: src/Module/User/Import.php:263
+#: src/Module/User/Import.php:267
msgid "User creation error"
msgstr "Fout bij het aanmaken van de gebruiker"
-#: src/Module/User/Import.php:312
+#: src/Module/User/Import.php:316
#, 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/Module/User/Import.php:361
+#: src/Module/User/Import.php:365
msgid "User profile creation error"
msgstr "Fout bij het aanmaken van het gebruikersprofiel"
-#: src/Module/User/Import.php:412
+#: 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"
@@ -10716,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?"
@@ -11231,249 +11771,258 @@ msgstr "Contacteer de afzender door op dit bericht te antwoorden als je deze ber
msgid "%s posted an update."
msgstr "%s heeft een wijziging geplaatst."
-#: src/Object/Post.php:135
+#: src/Object/Post.php:138
msgid "Private Message"
msgstr "Privébericht"
-#: 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:181
msgid "This entry was edited"
msgstr "Deze entry werd bewerkt"
-#: src/Object/Post.php:206
+#: 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 "Bewerken"
-#: src/Object/Post.php:248
+#: src/Object/Post.php:261
msgid "Delete globally"
msgstr "Verwijder globaal"
-#: src/Object/Post.php:248
+#: src/Object/Post.php:261
msgid "Remove locally"
msgstr "Verwijder lokaal"
-#: src/Object/Post.php:265
+#: 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:275
+#: 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:310
+#: src/Object/Post.php:333
msgid "I will attend"
msgstr "Ik zal er zijn"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I will not attend"
msgstr "Ik zal er niet zijn"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I might attend"
msgstr "Ik ga misschien"
-#: src/Object/Post.php:340
+#: src/Object/Post.php:363
msgid "Ignore thread"
msgstr ""
-#: src/Object/Post.php:341
+#: src/Object/Post.php:364
msgid "Unignore thread"
msgstr ""
-#: src/Object/Post.php:342
+#: src/Object/Post.php:365
msgid "Toggle ignore status"
msgstr ""
-#: src/Object/Post.php:352
+#: src/Object/Post.php:375
msgid "Add star"
msgstr ""
-#: src/Object/Post.php:353
+#: src/Object/Post.php:376
msgid "Remove star"
msgstr ""
-#: src/Object/Post.php:354
+#: src/Object/Post.php:377
msgid "Toggle star status"
msgstr ""
-#: src/Object/Post.php:365
+#: src/Object/Post.php:388
msgid "Pin"
msgstr ""
-#: src/Object/Post.php:366
+#: src/Object/Post.php:389
msgid "Unpin"
msgstr ""
-#: src/Object/Post.php:367
+#: src/Object/Post.php:390
msgid "Toggle pin status"
msgstr ""
-#: src/Object/Post.php:370
+#: src/Object/Post.php:393
msgid "Pinned"
msgstr ""
-#: src/Object/Post.php:375
+#: src/Object/Post.php:398
msgid "Add tag"
msgstr ""
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote share this"
msgstr ""
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote Share"
msgstr ""
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare this"
msgstr ""
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare"
msgstr ""
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Cancel your Reshare"
msgstr ""
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Unshare"
msgstr ""
-#: src/Object/Post.php:443
+#: src/Object/Post.php:466
#, php-format
msgid "%s (Received %s)"
msgstr ""
-#: src/Object/Post.php:448
+#: src/Object/Post.php:472
msgid "Comment this item on your system"
msgstr ""
-#: src/Object/Post.php:448
+#: src/Object/Post.php:472
msgid "Remote comment"
msgstr ""
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via ..."
msgstr ""
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via external services"
msgstr ""
-#: src/Object/Post.php:498
+#: src/Object/Post.php:523
msgid "to"
msgstr "aan"
-#: src/Object/Post.php:499
+#: src/Object/Post.php:524
msgid "via"
msgstr "via"
-#: src/Object/Post.php:500
+#: src/Object/Post.php:525
msgid "Wall-to-Wall"
msgstr "wall-to-wall"
-#: src/Object/Post.php:501
+#: src/Object/Post.php:526
msgid "via Wall-To-Wall:"
msgstr "via wall-to-wall"
-#: src/Object/Post.php:545
+#: src/Object/Post.php:573
#, php-format
msgid "Reply to %s"
msgstr "Antwoord aan %s"
-#: src/Object/Post.php:548
+#: src/Object/Post.php:576
msgid "More"
msgstr "Meer"
-#: src/Object/Post.php:566
+#: src/Object/Post.php:595
msgid "Notifier task is pending"
msgstr "Meldingstaak is in behandeling"
-#: src/Object/Post.php:567
+#: src/Object/Post.php:596
msgid "Delivery to remote servers is pending"
msgstr "Levering aan externe servers is in behandeling"
-#: src/Object/Post.php:568
+#: src/Object/Post.php:597
msgid "Delivery to remote servers is underway"
msgstr ""
-#: src/Object/Post.php:569
+#: src/Object/Post.php:598
msgid "Delivery to remote servers is mostly done"
msgstr ""
-#: src/Object/Post.php:570
+#: src/Object/Post.php:599
msgid "Delivery to remote servers is done"
msgstr ""
-#: src/Object/Post.php:590
+#: 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:591
+#: src/Object/Post.php:620
msgid "Show more"
msgstr "Toon meer"
-#: src/Object/Post.php:592
+#: src/Object/Post.php:621
msgid "Show fewer"
msgstr "Toon minder"
-#: src/Object/Post.php:628
+#: src/Object/Post.php:657
#, php-format
msgid "Reshared by: %s"
msgstr ""
-#: src/Object/Post.php:633
+#: src/Object/Post.php:662
#, php-format
msgid "Viewed by: %s"
msgstr ""
-#: src/Object/Post.php:638
+#: src/Object/Post.php:667
#, php-format
msgid "Liked by: %s"
msgstr ""
-#: src/Object/Post.php:643
+#: src/Object/Post.php:672
#, php-format
msgid "Disliked by: %s"
msgstr ""
-#: src/Object/Post.php:648
+#: src/Object/Post.php:677
#, php-format
msgid "Attended by: %s"
msgstr ""
-#: src/Object/Post.php:653
+#: src/Object/Post.php:682
#, php-format
msgid "Maybe attended by: %s"
msgstr ""
-#: src/Object/Post.php:658
+#: src/Object/Post.php:687
#, php-format
msgid "Not attended by: %s"
msgstr ""
-#: src/Object/Post.php:663
+#: src/Object/Post.php:692
#, php-format
msgid "Reacted with %s by: %s"
msgstr ""
@@ -11482,21 +12031,21 @@ msgstr ""
msgid "(no subject)"
msgstr ""
-#: src/Protocol/OStatus.php:1388
+#: src/Protocol/OStatus.php:1390
#, php-format
msgid "%s is now following %s."
msgstr "%s volgt nu %s."
-#: src/Protocol/OStatus.php:1389
+#: src/Protocol/OStatus.php:1391
msgid "following"
msgstr "volgend"
-#: src/Protocol/OStatus.php:1392
+#: src/Protocol/OStatus.php:1394
#, php-format
msgid "%s stopped following %s."
msgstr "%s stopte %s te volgen."
-#: src/Protocol/OStatus.php:1393
+#: src/Protocol/OStatus.php:1395
msgid "stopped following"
msgstr "is gestopt met volgen"
@@ -11854,7 +12403,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
@@ -11873,7 +12422,7 @@ msgstr ""
msgid "Community Pages"
msgstr ""
-#: view/theme/vier/config.php:139 view/theme/vier/theme.php:149
+#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148
msgid "Community Profiles"
msgstr ""
@@ -11881,7 +12430,7 @@ msgstr ""
msgid "Help or @NewHere ?"
msgstr ""
-#: view/theme/vier/config.php:141 view/theme/vier/theme.php:320
+#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319
msgid "Connect Services"
msgstr ""
@@ -11889,10 +12438,10 @@ msgstr ""
msgid "Find Friends"
msgstr ""
-#: view/theme/vier/config.php:143 view/theme/vier/theme.php:176
+#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175
msgid "Last users"
msgstr ""
-#: view/theme/vier/theme.php:235
+#: 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 382ac0f955..7b8fbff656 100644
--- a/view/lang/nl/strings.php
+++ b/view/lang/nl/strings.php
@@ -279,36 +279,42 @@ $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['remove'] = 'verwijder';
-$a->strings['Delete Selected Items'] = 'Geselecteerde items verwijderen';
-$a->strings['%s reshared this.'] = '%s heeft dit gedeeld';
+$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['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['Forums'] = 'Forums';
-$a->strings['External link to forum'] = 'Externe link naar het forum';
$a->strings['show more'] = 'toon meer';
$a->strings['event'] = 'gebeurtenis';
$a->strings['status'] = 'status';
@@ -327,7 +333,6 @@ $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['@name, !forum, #tags, content'] = '@naam, !forum, #labels, inhoud';
$a->strings['Logout'] = 'Uitloggen';
$a->strings['End this session'] = 'Deze sessie beëindigen';
$a->strings['Login'] = 'Login';
@@ -413,7 +418,6 @@ $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['Groups'] = 'Groepen';
$a->strings['Everyone'] = 'Iedereen';
$a->strings['Relationships'] = 'Relaties';
$a->strings['All Contacts'] = 'Alle Contacten';
@@ -572,9 +576,11 @@ $a->strings['%s: Database update'] = '%s: Database update';
$a->strings['%s: updating %s table.'] = '%s: tabel %s aan het updaten.';
$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['Forum'] = 'Forum';
$a->strings['Disallowed profile URL.'] = 'Niet toegelaten profiel adres.';
$a->strings['Blocked domain'] = 'Domein geblokeerd';
$a->strings['Connect URL missing.'] = 'Connectie URL ontbreekt.';
@@ -609,16 +615,6 @@ $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';
@@ -692,7 +688,6 @@ $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,
@@ -852,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.';
@@ -976,7 +970,6 @@ $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['Forum Search - %s'] = 'Forum doorzoeken - %s';
$a->strings['No matches'] = 'Geen resultaten';
$a->strings['Account'] = 'Account';
$a->strings['Two-factor authentication'] = '2-factor authenticatie';
@@ -1005,6 +998,13 @@ $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.',
@@ -1020,7 +1020,6 @@ $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['Results for: %s'] = 'Resultaten voor: %s';
$a->strings['Update'] = 'Wijzigen';
@@ -1036,7 +1035,6 @@ $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 not found.'] = 'Contact niet gevonden';
$a->strings['Contact update failed.'] = 'Aanpassen van contact mislukt.';
$a->strings['Return to contact editor'] = 'Ga terug naar contactbewerker';
$a->strings['Name'] = 'Naam';
@@ -1044,7 +1042,6 @@ $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['Invalid contact.'] = 'Ongeldig contact.';
$a->strings['Follower (%s)'] = [
0 => 'Volger (%s)',
1 => 'Volgers (%s)',
@@ -1127,30 +1124,15 @@ $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['Contact is deleted.'] = 'Contact is verwijderd.';
$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['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['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['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['No such group'] = 'Zo\'n groep bestaat niet';
-$a->strings['Group: %s'] = 'Groep: %s';
-$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['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'] = [
@@ -1212,25 +1194,6 @@ $a->strings['Please visit Friendi.ca to learn m
$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['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['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['Method Not Allowed.'] = 'Methode niet toegestaan.';
$a->strings['Help:'] = 'Help:';
@@ -1292,7 +1255,6 @@ $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['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['System down for maintenance'] = 'Systeem onbeschikbaar wegens onderhoud';
$a->strings['A Decentralized Social Network'] = 'Een gedecentraliseerd sociaal netwerk';
@@ -1303,17 +1265,13 @@ $a->strings['Or - did you try to upload an empty file?'] = 'Of - probeerde je ee
$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 exceeds size limit of %s'] = 'Beeld is groter dan de limiet ( %s )';
$a->strings['Image upload failed.'] = 'Uploaden van afbeelding mislukt.';
$a->strings['Normal Account Page'] = 'Normale accountpagina';
$a->strings['Soapbox Page'] = 'Zeepkist-pagina';
-$a->strings['Public Forum'] = 'Publiek Forum';
$a->strings['Automatic Friend Page'] = 'Automatisch Vriendschapspagina';
-$a->strings['Private Forum'] = 'Privé Forum';
$a->strings['Personal Page'] = 'Persoonlijke pagina';
$a->strings['Organisation Page'] = 'Organisatie Pagina';
$a->strings['News Page'] = 'Nieuws pagina';
-$a->strings['Community Forum'] = 'Groepsforum';
$a->strings['%s contact unblocked'] = [
0 => '%s contact is niet langer geblokkeerd',
1 => '%s contacten zijn niet langer geblokkeerd',
@@ -1349,10 +1307,8 @@ $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['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['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';
@@ -1427,6 +1383,7 @@ $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';
@@ -1444,7 +1401,6 @@ $a->strings['%d year old'] = [
1 => '%d jaar oud',
];
$a->strings['Description:'] = 'Beschrijving:';
-$a->strings['Forums:'] = 'Fora:';
$a->strings['View profile as:'] = 'Bekijk profiel als:';
$a->strings['Profile unavailable.'] = 'Profiel onbeschikbaar';
$a->strings['Invalid locator'] = 'Ongeldige plaatsbepaler';
@@ -1535,7 +1491,6 @@ $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['Community Forum Subtypes'] = 'Groepsforum 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".';
@@ -1544,7 +1499,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".'] = '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['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.';
@@ -1559,6 +1513,7 @@ $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:';
@@ -1677,7 +1632,6 @@ $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 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:';
@@ -1692,7 +1646,6 @@ $a->strings['Location'] = 'Plaats';
$a->strings['Miscellaneous'] = 'Diversen';
$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:';
@@ -1704,15 +1657,6 @@ $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['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';
@@ -1820,6 +1764,7 @@ $a->strings['Export the list of the accounts you are following as CSV file. Comp
$a->strings['At the time of registration, and for providing communications between the user account and their contacts, the user has to provide a display name (pen name), an username (nickname) and a working email address. The names will be accessible on the profile page of the account by any visitor of the page, even if other profile details are not displayed. The email address will only be used to send the user notifications about interactions, but wont be visibly displayed. The listing of an account in the node\'s user directory or the global user directory is optional and can be controlled in the user settings, it is not necessary for communication.'] = 'Op het moment van de registratie, en om communicatie mogelijk te maken tussen de gebruikersaccount en zijn of haar contacten, moet de gebruiker een weergave naam opgeven, een gebruikersnaam (bijnaam) en een werkend email adres. De namen zullen toegankelijk zijn op de profiel pagina van het account voor elke bezoeker van de pagina, zelfs als andere profiel details niet getoond worden. Het email adres zal enkel gebruikt worden om de gebruiker notificaties te sturen over interacties, maar zal niet zichtbaar getoond worden. Het oplijsten van een account in de gids van de node van de gebruiker of in de globale gids is optioneel en kan beheerd worden in de gebruikersinstellingen, dit is niet nodig voor communicatie.';
$a->strings['This data is required for communication and is passed on to the nodes of the communication partners and is stored there. Users can enter additional private data that may be transmitted to the communication partners accounts.'] = 'Deze data is vereist voor communicatie en wordt doorgegeven aan de nodes van de communicatie partners en wordt daar opgeslagen. Gebruikers kunnen bijkomende privé data opgeven die mag doorgegeven worden aan de accounts van de communicatie partners.';
$a->strings['Privacy Statement'] = 'Privacy Verklaring';
+$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.';
@@ -1860,8 +1805,6 @@ $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';
diff --git a/view/lang/pl/messages.po b/view/lang/pl/messages.po
index fb90459f1d..8a2a01a7e4 100644
--- a/view/lang/pl/messages.po
+++ b/view/lang/pl/messages.po
@@ -59,7 +59,7 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-05-12 07:57+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://app.transifex.com/Friendica/friendica/language/pl/)\n"
@@ -89,26 +89,26 @@ msgstr "Nie można pobrać elementu."
msgid "Empty post discarded."
msgstr "Pusty wpis został odrzucony."
-#: mod/item.php:411 src/Module/Admin/Themes/Details.php:39
+#: 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 nie znaleziony."
-#: mod/item.php:435 mod/message.php:67 mod/message.php:113 mod/notes.php:45
-#: mod/photos.php:152 mod/photos.php:669 src/Model/Event.php:522
+#: 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:52
+#: 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/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/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
@@ -118,9 +118,9 @@ msgstr "Element nie znaleziony."
#: 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:69
-#: src/Module/Settings/Display.php:69 src/Module/Settings/Display.php:151
+#: 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
@@ -266,7 +266,7 @@ 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/message.php:46 mod/message.php:128 src/Content/Nav.php:319
+#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321
msgid "New Message"
msgstr "Nowa wiadomość"
@@ -292,7 +292,7 @@ msgstr "Błąd zbierania komunikatów."
msgid "Discard"
msgstr "Odrzuć"
-#: mod/message.php:135 src/Content/Nav.php:316 view/theme/frio/theme.php:241
+#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Messages"
msgstr "Wiadomości"
@@ -328,7 +328,7 @@ msgstr "Temat:"
msgid "Your message:"
msgstr "Twoja wiadomość:"
-#: mod/message.php:199 mod/message.php:354 src/Content/Conversation.php:360
+#: 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"
@@ -338,18 +338,18 @@ msgstr "Wyślij zdjęcie"
msgid "Insert web link"
msgstr "Wstaw link"
-#: mod/message.php:201 mod/message.php:357 mod/photos.php:1291
-#: 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:550
+#: 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:702
-#: mod/photos.php:819 mod/photos.php:1097 mod/photos.php:1138
-#: mod/photos.php:1194 mod/photos.php:1268
+#: 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:339
+#: 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
@@ -357,8 +357,13 @@ msgstr "Proszę czekać"
#: 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:230 src/Object/Post.php:1063
+#: 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"
@@ -426,14 +431,14 @@ msgstr "Notatki"
msgid "Personal notes are visible only by yourself."
msgstr "Notatki osobiste są widziane tylko przez Ciebie."
-#: mod/notes.php:57 src/Content/Text/HTML.php:857
+#: 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/photos.php:67 mod/photos.php:132 mod/photos.php:577
-#: src/Model/Event.php:514 src/Model/Profile.php:234
+#: 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
@@ -445,22 +450,22 @@ msgid "User not found."
msgstr "Użytkownik nie znaleziony."
#: mod/photos.php:106 src/Module/BaseProfile.php:68
-#: src/Module/Profile/Photos.php:381
+#: src/Module/Profile/Photos.php:379
msgid "Photo Albums"
msgstr "Albumy zdjęć"
-#: mod/photos.php:107 src/Module/Profile/Photos.php:382
-#: src/Module/Profile/Photos.php:402
+#: 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:109 mod/photos.php:867 src/Module/Profile/Photos.php:384
-#: src/Module/Profile/Photos.php:404
+#: 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:121 src/Module/BaseSettings.php:74
-#: src/Module/Profile/Photos.php:365
+#: mod/photos.php:121 src/Module/BaseSettings.php:72
+#: src/Module/Profile/Photos.php:363
msgid "everybody"
msgstr "wszyscy"
@@ -472,72 +477,72 @@ msgstr "Informacje o kontakcie są niedostępne"
msgid "Album not found."
msgstr "Nie znaleziono albumu."
-#: mod/photos.php:242
+#: mod/photos.php:244
msgid "Album successfully deleted"
msgstr "Album został pomyślnie usunięty"
-#: mod/photos.php:244
+#: mod/photos.php:246
msgid "Album was empty."
msgstr "Album był pusty."
-#: mod/photos.php:276
+#: mod/photos.php:277
msgid "Failed to delete the photo."
msgstr "Błąd usunięcia zdjęcia."
-#: mod/photos.php:544
+#: mod/photos.php:545
msgid "a photo"
msgstr "zdjęcie"
-#: mod/photos.php:544
+#: 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:581 src/Module/Conversation/Community.php:188
-#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:297
+#: 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:586
+#: mod/photos.php:587
msgid "No photos selected"
msgstr "Nie zaznaczono zdjęć"
-#: mod/photos.php:718
+#: mod/photos.php:721
#, php-format
msgid "The maximum accepted image size is %s"
msgstr ""
-#: mod/photos.php:725
+#: mod/photos.php:728
msgid "Upload Photos"
msgstr "Prześlij zdjęcia"
-#: mod/photos.php:729 mod/photos.php:815
+#: mod/photos.php:732 mod/photos.php:820
msgid "New album name: "
msgstr "Nazwa nowego albumu: "
-#: mod/photos.php:730
+#: mod/photos.php:733
msgid "or select existing album:"
msgstr "lub wybierz istniejący album:"
-#: mod/photos.php:731
+#: 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:733 mod/photos.php:1093 src/Content/Conversation.php:392
+#: 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:796
+#: 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:797 mod/photos.php:820
+#: mod/photos.php:802 mod/photos.php:825
msgid "Delete Album"
msgstr "Usuń album"
-#: mod/photos.php:798 mod/photos.php:899 src/Content/Conversation.php:408
+#: 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
@@ -547,156 +552,158 @@ msgstr "Usuń album"
msgid "Cancel"
msgstr "Anuluj"
-#: mod/photos.php:824
+#: mod/photos.php:829
msgid "Edit Album"
msgstr "Edytuj album"
-#: mod/photos.php:825
+#: mod/photos.php:830
msgid "Drop Album"
msgstr "Upuść Album"
-#: mod/photos.php:829
+#: mod/photos.php:834
msgid "Show Newest First"
msgstr "Pokaż najpierw najnowsze"
-#: mod/photos.php:831
+#: mod/photos.php:836
msgid "Show Oldest First"
msgstr "Pokaż najpierw najstarsze"
-#: mod/photos.php:852 src/Module/Profile/Photos.php:352
+#: mod/photos.php:857 src/Module/Profile/Photos.php:350
msgid "View Photo"
msgstr "Zobacz zdjęcie"
-#: mod/photos.php:885
+#: 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:887
+#: mod/photos.php:891
msgid "Photo not available"
msgstr "Zdjęcie niedostępne"
-#: mod/photos.php:897
+#: 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:898 mod/photos.php:1098
+#: mod/photos.php:902 mod/photos.php:1102
msgid "Delete Photo"
msgstr "Usuń zdjęcie"
-#: mod/photos.php:996
+#: mod/photos.php:1000
msgid "View photo"
msgstr "Zobacz zdjęcie"
-#: mod/photos.php:998
+#: mod/photos.php:1002
msgid "Edit photo"
msgstr "Edytuj zdjęcie"
-#: mod/photos.php:999
+#: mod/photos.php:1003
msgid "Delete photo"
msgstr "Usuń zdjęcie"
-#: mod/photos.php:1000
+#: mod/photos.php:1004
msgid "Use as profile photo"
msgstr "Ustaw jako zdjęcie profilowe"
-#: mod/photos.php:1007
+#: mod/photos.php:1011
msgid "Private Photo"
msgstr "Prywatne zdjęcie"
-#: mod/photos.php:1013
+#: mod/photos.php:1017
msgid "View Full Size"
msgstr "Zobacz w pełnym rozmiarze"
-#: mod/photos.php:1066
+#: mod/photos.php:1070
msgid "Tags: "
msgstr "Znaczniki: "
-#: mod/photos.php:1069
+#: mod/photos.php:1073
msgid "[Select tags to remove]"
msgstr "[Wybierz znaczniki do usunięcia]"
-#: mod/photos.php:1084
+#: mod/photos.php:1088
msgid "New album name"
msgstr "Nazwa nowego albumu"
-#: mod/photos.php:1085
+#: mod/photos.php:1089
msgid "Caption"
msgstr "Zawartość"
-#: mod/photos.php:1086
+#: mod/photos.php:1090
msgid "Add a Tag"
msgstr "Dodaj znacznik"
-#: mod/photos.php:1086
+#: 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:1087
+#: mod/photos.php:1091
msgid "Do not rotate"
msgstr "Nie obracaj"
-#: mod/photos.php:1088
+#: mod/photos.php:1092
msgid "Rotate CW (right)"
msgstr "Obróć zgodnie z kierunkiem wskazówek zegara (w prawo)"
-#: mod/photos.php:1089
+#: mod/photos.php:1093
msgid "Rotate CCW (left)"
msgstr "Obróć w przeciwnym kierunku do ruchu wskazówek zegara (w lewo)"
-#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1265
-#: src/Module/Contact.php:588 src/Module/Item/Compose.php:188
-#: src/Object/Post.php:1060
+#: 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:1137 mod/photos.php:1193 mod/photos.php:1267
-#: src/Object/Post.php:544 src/Object/Post.php:1062
+#: 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:1139 mod/photos.php:1195 mod/photos.php:1269
-#: 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:1075
+#: 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:1140 src/Content/Conversation.php:359
-#: src/Module/Post/Edit.php:130 src/Object/Post.php:1064
+#: 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:1226 src/Content/Conversation.php:650
-#: src/Object/Post.php:257
+#: mod/photos.php:1236 src/Content/Conversation.php:1464
+#: src/Object/Post.php:260
msgid "Select"
msgstr "Wybierz"
-#: mod/photos.php:1227 src/Content/Conversation.php:651
+#: 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:1288 src/Object/Post.php:385
+#: mod/photos.php:1298 src/Object/Post.php:408
msgid "Like"
msgstr "Lubię"
-#: mod/photos.php:1289 src/Object/Post.php:385
+#: mod/photos.php:1299 src/Object/Post.php:408
msgid "I like this (toggle)"
msgstr "Lubię to (zmień)"
-#: mod/photos.php:1290 src/Object/Post.php:386
+#: mod/photos.php:1300 src/Object/Post.php:409
msgid "Dislike"
msgstr "Nie lubię"
-#: mod/photos.php:1292 src/Object/Post.php:386
+#: mod/photos.php:1302 src/Object/Post.php:409
msgid "I don't like this (toggle)"
msgstr "Nie lubię tego (zmień)"
-#: mod/photos.php:1314
+#: mod/photos.php:1324
msgid "Map"
msgstr "Mapa"
@@ -704,97 +711,112 @@ msgstr "Mapa"
msgid "No system theme config value set."
msgstr "Nie ustawiono wartości konfiguracyjnej zestawu tematycznego."
-#: src/App.php:577
+#: 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:247
+#: src/App/Page.php:248
msgid "Delete this item?"
msgstr "Usunąć ten element?"
-#: src/App/Page.php:248
+#: 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:249
+#: 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 "Like not successful"
+msgid "Collapse this author's posts?"
msgstr ""
#: src/App/Page.php:252
-msgid "Dislike not successful"
+msgid "Ignore this author's server?"
msgstr ""
-#: src/App/Page.php:253
-msgid "Sharing not successful"
-msgstr ""
-
-#: src/App/Page.php:254
-msgid "Attendance unsuccessful"
+#: 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 "Backend error"
+msgid "Like not successful"
msgstr ""
#: src/App/Page.php:256
-msgid "Network error"
+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 "Drop files here to upload"
+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:261
+#: 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:262
+#: src/App/Page.php:266
msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
msgstr ""
-#: src/App/Page.php:263
+#: src/App/Page.php:267
msgid "You can't upload files of this type."
msgstr ""
-#: src/App/Page.php:264
+#: src/App/Page.php:268
msgid "Server responded with {{statusCode}} code."
msgstr ""
-#: src/App/Page.php:265
+#: src/App/Page.php:269
msgid "Cancel upload"
msgstr ""
-#: src/App/Page.php:266
+#: src/App/Page.php:270
msgid "Upload canceled."
msgstr ""
-#: src/App/Page.php:267
+#: src/App/Page.php:271
msgid "Are you sure you want to cancel this upload?"
msgstr ""
-#: src/App/Page.php:268
+#: src/App/Page.php:272
msgid "Remove file"
msgstr ""
-#: src/App/Page.php:269
+#: src/App/Page.php:273
msgid "You can't upload any more files."
msgstr ""
-#: src/App/Page.php:347
+#: src/App/Page.php:351
msgid "toggle mobile"
msgstr "przełącz na mobilny"
@@ -811,33 +833,33 @@ msgstr "Strona nie znaleziona."
msgid "You must be logged in to use addons. "
msgstr "Musisz być zalogowany(-a), aby korzystać z dodatków. "
-#: src/BaseModule.php:400
+#: 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:427
+#: src/BaseModule.php:428
msgid "All contacts"
msgstr "Wszystkie kontakty"
-#: src/BaseModule.php:432 src/Content/Widget.php:239 src/Core/ACL.php:195
-#: src/Module/Contact.php:407 src/Module/PermissionTooltip.php:127
-#: src/Module/PermissionTooltip.php:149
+#: 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:437 src/Content/Widget.php:240
-#: src/Module/Contact.php:408
+#: src/BaseModule.php:438 src/Content/Widget.php:240
+#: src/Module/Contact.php:418
msgid "Following"
msgstr "Kolejny"
-#: src/BaseModule.php:442 src/Content/Widget.php:241
-#: src/Module/Contact.php:409
+#: src/BaseModule.php:443 src/Content/Widget.php:241
+#: src/Module/Contact.php:421
msgid "Mutual friends"
msgstr "Wspólni znajomi"
-#: src/BaseModule.php:450
+#: src/BaseModule.php:451
msgid "Common"
msgstr "Wspólne"
@@ -987,7 +1009,7 @@ 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:663
+#: 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
@@ -1162,21 +1184,25 @@ msgstr "pnut"
msgid "Tumblr"
msgstr ""
-#: src/Content/ContactSelector.php:179
+#: 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:218
+#: src/Content/Conversation.php:226
msgid "and"
msgstr "i"
-#: src/Content/Conversation.php:221
+#: src/Content/Conversation.php:229
#, php-format
msgid "and %d other people"
msgstr "i %d inni ludzie"
-#: src/Content/Conversation.php:227
+#: src/Content/Conversation.php:235
#, php-format
msgid "%2$s likes this."
msgid_plural "%2$s like this."
@@ -1185,7 +1211,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Content/Conversation.php:229
+#: src/Content/Conversation.php:237
#, php-format
msgid "%2$s doesn't like this."
msgid_plural "%2$s don't like this."
@@ -1194,7 +1220,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Content/Conversation.php:231
+#: src/Content/Conversation.php:239
#, php-format
msgid "%2$s attends."
msgid_plural "%2$s attend."
@@ -1203,7 +1229,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Content/Conversation.php:233
+#: src/Content/Conversation.php:241
#, php-format
msgid "%2$s doesn't attend."
msgid_plural "%2$s don't attend."
@@ -1212,7 +1238,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Content/Conversation.php:235
+#: src/Content/Conversation.php:243
#, php-format
msgid "%2$s attends maybe."
msgid_plural "%2$s attend maybe."
@@ -1221,7 +1247,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Content/Conversation.php:237
+#: src/Content/Conversation.php:245
#, php-format
msgid "%2$s reshared this."
msgid_plural "%2$s reshared this."
@@ -1230,7 +1256,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Content/Conversation.php:266
+#: src/Content/Conversation.php:274
#, php-format
msgid " likes this"
msgid_plural " like this"
@@ -1239,7 +1265,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Content/Conversation.php:269
+#: src/Content/Conversation.php:277
#, php-format
msgid " doesn't like this"
msgid_plural " don't like this"
@@ -1248,7 +1274,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Content/Conversation.php:272
+#: src/Content/Conversation.php:280
#, php-format
msgid " attends"
msgid_plural " attend"
@@ -1257,7 +1283,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Content/Conversation.php:275
+#: src/Content/Conversation.php:283
#, php-format
msgid " doesn't attend"
msgid_plural " don't attend"
@@ -1266,7 +1292,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Content/Conversation.php:278
+#: src/Content/Conversation.php:286
#, php-format
msgid " attends maybe"
msgid_plural " attend maybe"
@@ -1275,7 +1301,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Content/Conversation.php:281
+#: src/Content/Conversation.php:289
#, php-format
msgid " reshared this"
msgid_plural " reshared this"
@@ -1284,274 +1310,398 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Content/Conversation.php:328
+#: src/Content/Conversation.php:336
msgid "Visible to everybody"
msgstr "Widoczne dla wszystkich"
-#: src/Content/Conversation.php:329 src/Module/Item/Compose.php:199
-#: src/Object/Post.php:1074
+#: 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:330
+#: src/Content/Conversation.php:338
msgid "Tag term:"
msgstr "Termin tagu:"
-#: src/Content/Conversation.php:331 src/Module/Filer/SaveTag.php:73
+#: src/Content/Conversation.php:339 src/Module/Filer/SaveTag.php:73
msgid "Save to Folder:"
msgstr "Zapisz w katalogu:"
-#: src/Content/Conversation.php:332
+#: src/Content/Conversation.php:340
msgid "Where are you right now?"
msgstr "Gdzie teraz jesteś?"
-#: src/Content/Conversation.php:333
+#: src/Content/Conversation.php:341
msgid "Delete item(s)?"
msgstr "Usunąć pozycję (pozycje)?"
-#: src/Content/Conversation.php:345 src/Module/Item/Compose.php:175
+#: src/Content/Conversation.php:353 src/Module/Item/Compose.php:175
msgid "Created at"
msgstr "Utworzono"
-#: src/Content/Conversation.php:355
+#: src/Content/Conversation.php:363
msgid "New Post"
msgstr "Nowy wpis"
-#: src/Content/Conversation.php:358
+#: src/Content/Conversation.php:366
msgid "Share"
msgstr "Podziel się"
-#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:132
+#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132
msgid "upload photo"
msgstr "wyślij zdjęcie"
-#: src/Content/Conversation.php:362 src/Module/Post/Edit.php:133
+#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133
msgid "Attach file"
msgstr "Załącz plik"
-#: src/Content/Conversation.php:363 src/Module/Post/Edit.php:134
+#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134
msgid "attach file"
msgstr "załącz plik"
-#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190
-#: src/Module/Post/Edit.php:171 src/Object/Post.php:1065
+#: 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:365 src/Module/Item/Compose.php:191
-#: src/Module/Post/Edit.php:172 src/Object/Post.php:1066
+#: 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:366 src/Module/Item/Compose.php:192
-#: src/Module/Post/Edit.php:173 src/Object/Post.php:1067
+#: 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:367 src/Module/Item/Compose.php:193
-#: src/Module/Post/Edit.php:174 src/Object/Post.php:1068
+#: 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:368 src/Module/Item/Compose.php:194
-#: src/Module/Post/Edit.php:175 src/Object/Post.php:1069
+#: 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:369 src/Module/Item/Compose.php:195
-#: src/Module/Post/Edit.php:176 src/Object/Post.php:1070
+#: 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:370 src/Module/Item/Compose.php:196
-#: src/Object/Post.php:1071
+#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197
+#: src/Object/Post.php:1104
msgid "Image"
msgstr "Obraz"
-#: src/Content/Conversation.php:371 src/Module/Item/Compose.php:197
-#: src/Module/Post/Edit.php:177 src/Object/Post.php:1072
+#: 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:372 src/Module/Item/Compose.php:198
-#: src/Module/Post/Edit.php:178 src/Object/Post.php:1073
+#: 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:373
+#: src/Content/Conversation.php:382
msgid "Video"
msgstr "Filmy"
-#: src/Content/Conversation.php:374 src/Module/Item/Compose.php:201
+#: 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:375 src/Module/Post/Edit.php:142
+#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142
msgid "set location"
msgstr "wybierz lokalizację"
-#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:143
+#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143
msgid "Clear browser location"
msgstr "Wyczyść lokalizację przeglądarki"
-#: src/Content/Conversation.php:377 src/Module/Post/Edit.php:144
+#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144
msgid "clear location"
msgstr "wyczyść lokalizację"
-#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:206
+#: 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:381 src/Module/Item/Compose.php:207
+#: 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:386 src/Module/Item/Compose.php:223
+#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224
msgid "Scheduled at"
msgstr "Zaplanowane na"
-#: src/Content/Conversation.php:391 src/Module/Post/Edit.php:146
+#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146
msgid "Permission settings"
msgstr "Ustawienia uprawnień"
-#: src/Content/Conversation.php:401 src/Module/Post/Edit.php:155
+#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155
msgid "Public post"
msgstr "Wpis publiczny"
-#: src/Content/Conversation.php:415 src/Content/Widget/VCard.php:113
-#: src/Model/Profile.php:469 src/Module/Admin/Logs/View.php:92
+#: 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:416 src/Module/Post/Edit.php:182
+#: 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:418 src/Module/Post/Edit.php:185
+#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185
msgid "Open Compose page"
msgstr "Otwórz stronę Redagowanie"
-#: src/Content/Conversation.php:678 src/Object/Post.php:244
-msgid "Pinned item"
-msgstr "Przypięty element"
-
-#: src/Content/Conversation.php:694 src/Object/Post.php:496
-#: src/Object/Post.php:497
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Pokaż profil %s @ %s"
-
-#: src/Content/Conversation.php:707 src/Object/Post.php:484
-msgid "Categories:"
-msgstr "Kategorie:"
-
-#: src/Content/Conversation.php:708 src/Object/Post.php:485
-msgid "Filed under:"
-msgstr "Umieszczono w:"
-
-#: src/Content/Conversation.php:716 src/Object/Post.php:510
-#, php-format
-msgid "%s from %s"
-msgstr "%s od %s"
-
-#: src/Content/Conversation.php:732
-msgid "View in context"
-msgstr "Zobacz w kontekście"
-
-#: src/Content/Conversation.php:797
+#: src/Content/Conversation.php:595
msgid "remove"
msgstr "usuń"
-#: src/Content/Conversation.php:801
+#: src/Content/Conversation.php:599
msgid "Delete Selected Items"
msgstr "Usuń zaznaczone elementy"
-#: 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
+#: 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:881
+#: src/Content/Conversation.php:769
#, php-format
msgid "You are following %s."
msgstr "Zacząłeś obserwować %s."
-#: src/Content/Conversation.php:884
+#: 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 "Zasubskrybowałeś jeden lub więcej znaczników w tym wpisie."
-#: src/Content/Conversation.php:897
+#: src/Content/Conversation.php:796
#, php-format
msgid "%s reshared this."
msgstr "%sudostępnił to. "
-#: src/Content/Conversation.php:899
+#: src/Content/Conversation.php:798
msgid "Reshared"
msgstr "Udostępnione"
-#: src/Content/Conversation.php:899
+#: src/Content/Conversation.php:798
#, php-format
msgid "Reshared by %s <%s>"
msgstr "Udostępnione przez %s <%s>"
-#: src/Content/Conversation.php:902
+#: 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:905
+#: src/Content/Conversation.php:804
msgid "Stored for general reasons"
msgstr "Przechowywane z powodów ogólnych"
-#: src/Content/Conversation.php:908
+#: src/Content/Conversation.php:807
msgid "Global post"
msgstr "Wpis globalny"
-#: src/Content/Conversation.php:911
+#: src/Content/Conversation.php:810
msgid "Sent via an relay server"
msgstr "Wysłane przez serwer przekazujący"
-#: src/Content/Conversation.php:911
+#: src/Content/Conversation.php:810
#, php-format
msgid "Sent via the relay server %s <%s>"
msgstr ""
-#: src/Content/Conversation.php:914
+#: src/Content/Conversation.php:813
msgid "Fetched"
msgstr "Pobrane"
-#: src/Content/Conversation.php:914
+#: src/Content/Conversation.php:813
#, php-format
msgid "Fetched because of %s <%s>"
msgstr "Pobrano ponieważ %s <%s>"
-#: src/Content/Conversation.php:917
+#: 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:920
+#: src/Content/Conversation.php:819
msgid "Local delivery"
msgstr "Dostarczone lokalnie"
-#: src/Content/Conversation.php:923
+#: 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:926
+#: src/Content/Conversation.php:825
msgid "Distributed"
msgstr "Rozpowszechniane"
-#: src/Content/Conversation.php:929
+#: 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"
@@ -1581,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"
@@ -1627,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"
@@ -1664,220 +1814,230 @@ msgid ""
"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/ForumManager.php:151 src/Content/Nav.php:276
-#: src/Content/Text/HTML.php:878 src/Content/Widget.php:528
-msgid "Forums"
-msgstr "Fora"
+#: 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/ForumManager.php:153
-msgid "External link to forum"
-msgstr "Zewnętrzny link do forum"
+#: src/Content/GroupManager.php:154
+msgid "External link to group"
+msgstr ""
-#: src/Content/ForumManager.php:156 src/Content/Widget.php:507
+#: 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:409
-#: src/Content/Widget.php:508
+#: 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:327 src/Model/Item.php:2927
+#: src/Content/GroupManager.php:160
+msgid "Create new group"
+msgstr ""
+
+#: src/Content/Item.php:331 src/Model/Item.php:3003
msgid "event"
msgstr "wydarzenie"
-#: src/Content/Item.php:330 src/Content/Item.php:340
+#: src/Content/Item.php:334 src/Content/Item.php:344
msgid "status"
msgstr "stan"
-#: src/Content/Item.php:336 src/Model/Item.php:2929
+#: 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:350 src/Module/Post/Tag/Add.php:141
+#: 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:420 view/theme/frio/theme.php:262
+#: src/Content/Item.php:428 view/theme/frio/theme.php:262
msgid "Follow Thread"
msgstr "Śledź wątek"
-#: src/Content/Item.php:421 src/Model/Contact.php:1204
+#: src/Content/Item.php:429 src/Model/Contact.php:1227
msgid "View Status"
msgstr "Zobacz status"
-#: src/Content/Item.php:422 src/Content/Item.php:442
-#: src/Model/Contact.php:1148 src/Model/Contact.php:1196
-#: src/Model/Contact.php:1205 src/Module/Directory.php:157
-#: src/Module/Settings/Profile/Index.php:233
+#: 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:423 src/Model/Contact.php:1206
+#: src/Content/Item.php:431 src/Model/Contact.php:1229
msgid "View Photos"
msgstr "Zobacz zdjęcia"
-#: src/Content/Item.php:424 src/Model/Contact.php:1197
-#: src/Model/Contact.php:1207
+#: 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:425 src/Model/Contact.php:1198
-#: src/Model/Contact.php:1208
+#: 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:426 src/Model/Contact.php:1209
+#: src/Content/Item.php:434 src/Model/Contact.php:1232
msgid "Send PM"
msgstr "Wyślij prywatną wiadomość"
-#: src/Content/Item.php:427 src/Module/Contact.php:439
-#: src/Module/Contact/Profile.php:477
+#: 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:428 src/Module/Contact.php:440
-#: src/Module/Contact/Profile.php:485
+#: 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:429 src/Module/Contact.php:441
-#: src/Module/Contact/Profile.php:493
+#: src/Content/Item.php:437 src/Module/Contact.php:470
+#: src/Module/Contact/Profile.php:527
msgid "Collapse"
msgstr ""
-#: src/Content/Item.php:433 src/Object/Post.php:465
+#: 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:439 src/Content/Widget.php:80
-#: src/Model/Contact.php:1199 src/Model/Contact.php:1210
+#: 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/Item.php:864
+#: src/Content/Item.php:882
msgid "Unable to fetch user."
msgstr ""
-#: src/Content/Nav.php:120
+#: src/Content/Nav.php:121
msgid "Nothing new here"
msgstr "Brak nowych zdarzeń"
-#: src/Content/Nav.php:124 src/Module/Special/HTTPException.php:77
+#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77
msgid "Go back"
msgstr "Wróć"
-#: src/Content/Nav.php:125
+#: src/Content/Nav.php:126
msgid "Clear notifications"
msgstr "Wyczyść powiadomienia"
-#: src/Content/Nav.php:126 src/Content/Text/HTML.php:865
-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:220 src/Module/Security/Login.php:157
+#: src/Content/Nav.php:222 src/Module/Security/Login.php:157
msgid "Logout"
msgstr "Wyloguj"
-#: src/Content/Nav.php:220
+#: src/Content/Nav.php:222
msgid "End this session"
msgstr "Zakończ sesję"
-#: src/Content/Nav.php:222 src/Module/Bookmarklet.php:44
+#: 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:222
+#: src/Content/Nav.php:224
msgid "Sign in"
msgstr "Zaloguj się"
-#: src/Content/Nav.php:227 src/Module/BaseProfile.php:57
-#: src/Module/Contact.php:483
+#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57
+#: src/Module/Contact.php:512
msgid "Conversations"
msgstr ""
-#: src/Content/Nav.php:227
+#: src/Content/Nav.php:229
msgid "Conversations you started"
msgstr ""
-#: src/Content/Nav.php:228 src/Module/BaseProfile.php:49
-#: src/Module/BaseSettings.php:100 src/Module/Contact.php:475
-#: src/Module/Contact/Profile.php:392 src/Module/Profile/Profile.php:268
+#: 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:228 view/theme/frio/theme.php:230
+#: src/Content/Nav.php:230 view/theme/frio/theme.php:230
msgid "Your profile page"
msgstr "Twoja strona profilu"
-#: src/Content/Nav.php:229 src/Module/BaseProfile.php:65
+#: 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:229 view/theme/frio/theme.php:234
+#: src/Content/Nav.php:231 view/theme/frio/theme.php:234
msgid "Your photos"
msgstr "Twoje zdjęcia"
-#: src/Content/Nav.php:230 src/Module/BaseProfile.php:73
-#: src/Module/BaseProfile.php:76 src/Module/Contact.php:499
+#: 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:230 view/theme/frio/theme.php:235
+#: 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:231 src/Content/Nav.php:291
+#: 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:252 view/theme/frio/theme.php:236
+#: 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:231 view/theme/frio/theme.php:236
+#: src/Content/Nav.php:233 view/theme/frio/theme.php:236
msgid "Your calendar"
msgstr "Twój kalendarz"
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Personal notes"
msgstr "Osobiste notatki"
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Your personal notes"
msgstr "Twoje osobiste notatki"
-#: src/Content/Nav.php:249 src/Content/Nav.php:306
+#: src/Content/Nav.php:251 src/Content/Nav.php:308
msgid "Home"
msgstr "Strona domowa"
-#: src/Content/Nav.php:249 src/Module/Settings/OAuth.php:73
+#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73
msgid "Home Page"
msgstr "Strona startowa"
-#: src/Content/Nav.php:253 src/Module/Register.php:168
+#: src/Content/Nav.php:255 src/Module/Register.php:168
#: src/Module/Security/Login.php:124
msgid "Register"
msgstr "Zarejestruj"
-#: src/Content/Nav.php:253
+#: src/Content/Nav.php:255
msgid "Create an account"
msgstr "Załóż konto"
-#: src/Content/Nav.php:259 src/Module/Help.php:67
+#: 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
@@ -1885,164 +2045,164 @@ msgstr "Załóż konto"
msgid "Help"
msgstr "Pomoc"
-#: src/Content/Nav.php:259
+#: src/Content/Nav.php:261
msgid "Help and documentation"
msgstr "Pomoc i dokumentacja"
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:265
msgid "Apps"
msgstr "Aplikacje"
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:265
msgid "Addon applications, utilities, games"
msgstr "Wtyczki, aplikacje, narzędzia, gry"
-#: src/Content/Nav.php:267 src/Content/Text/HTML.php:863
+#: 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:267
+#: src/Content/Nav.php:269
msgid "Search site content"
msgstr "Przeszukaj zawartość strony"
-#: src/Content/Nav.php:270 src/Content/Text/HTML.php:872
+#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874
msgid "Full Text"
msgstr "Pełny tekst"
-#: src/Content/Nav.php:271 src/Content/Text/HTML.php:873
+#: 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:272 src/Content/Nav.php:327
-#: src/Content/Text/HTML.php:874 src/Module/BaseProfile.php:127
-#: src/Module/BaseProfile.php:130 src/Module/Contact.php:410
-#: src/Module/Contact.php:506 view/theme/frio/theme.php:243
+#: 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:287
+#: src/Content/Nav.php:289
msgid "Community"
msgstr "Społeczność"
-#: src/Content/Nav.php:287
+#: src/Content/Nav.php:289
msgid "Conversations on this and other servers"
msgstr "Rozmowy na tym i innych serwerach"
-#: src/Content/Nav.php:294
+#: src/Content/Nav.php:296
msgid "Directory"
msgstr "Katalog"
-#: src/Content/Nav.php:294
+#: src/Content/Nav.php:296
msgid "People directory"
msgstr "Katalog osób"
-#: src/Content/Nav.php:296 src/Module/BaseAdmin.php:85
+#: src/Content/Nav.php:298 src/Module/BaseAdmin.php:85
#: src/Module/BaseModeration.php:108
msgid "Information"
msgstr "Informacje"
-#: src/Content/Nav.php:296
+#: src/Content/Nav.php:298
msgid "Information about this friendica instance"
msgstr "Informacje o tej instancji friendica"
-#: src/Content/Nav.php:299 src/Module/Admin/Tos.php:78
+#: 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:100
+#: src/Module/Tos.php:101
msgid "Terms of Service"
msgstr "Warunki usługi"
-#: src/Content/Nav.php:299
+#: 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:304 view/theme/frio/theme.php:239
+#: src/Content/Nav.php:306 view/theme/frio/theme.php:239
msgid "Network"
msgstr "Sieć"
-#: src/Content/Nav.php:304 view/theme/frio/theme.php:239
+#: src/Content/Nav.php:306 view/theme/frio/theme.php:239
msgid "Conversations from your friends"
msgstr "Rozmowy Twoich przyjaciół"
-#: src/Content/Nav.php:306 view/theme/frio/theme.php:229
+#: 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:310
+#: src/Content/Nav.php:312
msgid "Introductions"
msgstr "Zapoznanie"
-#: src/Content/Nav.php:310
+#: src/Content/Nav.php:312
msgid "Friend Requests"
msgstr "Prośba o przyjęcie do grona znajomych"
-#: src/Content/Nav.php:311 src/Module/BaseNotifications.php:149
+#: src/Content/Nav.php:313 src/Module/BaseNotifications.php:149
#: src/Module/Notifications/Introductions.php:75
msgid "Notifications"
msgstr "Powiadomienia"
-#: src/Content/Nav.php:312
+#: src/Content/Nav.php:314
msgid "See all notifications"
msgstr "Zobacz wszystkie powiadomienia"
-#: src/Content/Nav.php:313 src/Module/Settings/Connectors.php:244
+#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244
msgid "Mark as seen"
msgstr "Oznacz jako przeczytane"
-#: src/Content/Nav.php:313
+#: src/Content/Nav.php:315
msgid "Mark all system notifications as seen"
msgstr "Oznacz wszystkie powiadomienia systemowe jako przeczytane"
-#: src/Content/Nav.php:316 view/theme/frio/theme.php:241
+#: src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Private mail"
msgstr "Prywatne maile"
-#: src/Content/Nav.php:317
+#: src/Content/Nav.php:319
msgid "Inbox"
msgstr "Odebrane"
-#: src/Content/Nav.php:318
+#: src/Content/Nav.php:320
msgid "Outbox"
msgstr "Wysłane"
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Accounts"
msgstr "Konta"
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Manage other pages"
msgstr "Zarządzaj innymi stronami"
-#: 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/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:325 view/theme/frio/theme.php:242
+#: src/Content/Nav.php:327 view/theme/frio/theme.php:242
msgid "Account settings"
msgstr "Ustawienia konta"
-#: src/Content/Nav.php:327 view/theme/frio/theme.php:243
+#: 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:332 src/Module/BaseAdmin.php:119
+#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119
msgid "Admin"
msgstr "Administrator"
-#: src/Content/Nav.php:332
+#: src/Content/Nav.php:334
msgid "Site setup and configuration"
msgstr "Konfiguracja i ustawienia strony"
-#: src/Content/Nav.php:333 src/Module/BaseModeration.php:127
+#: 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/Summary.php:76
+#: 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
@@ -2050,23 +2210,23 @@ msgstr "Konfiguracja i ustawienia strony"
msgid "Moderation"
msgstr "Moderacja"
-#: src/Content/Nav.php:333
+#: src/Content/Nav.php:335
msgid "Content and user moderation"
msgstr "Moderacja treści i użytkowników"
-#: src/Content/Nav.php:336
+#: src/Content/Nav.php:338
msgid "Navigation"
msgstr "Nawigacja"
-#: src/Content/Nav.php:336
+#: 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ść"
@@ -2086,51 +2246,51 @@ msgstr "następny"
msgid "last"
msgstr "ostatni"
-#: src/Content/Text/BBCode.php:713 src/Content/Text/BBCode.php:1599
-#: src/Content/Text/BBCode.php:1600
+#: 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:931
+#: src/Content/Text/BBCode.php:914
#, php-format
msgid "%2$s %3$s"
msgstr "%2$s %3$s"
-#: src/Content/Text/BBCode.php:956 src/Model/Item.php:3645
-#: src/Model/Item.php:3651 src/Model/Item.php:3652
+#: 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:1506 src/Content/Text/HTML.php:902
+#: 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:1539
+#: src/Content/Text/BBCode.php:1576
msgid "$1 wrote:"
msgstr "$1 napisał:"
-#: src/Content/Text/BBCode.php:1604 src/Content/Text/BBCode.php:1605
+#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642
msgid "Encrypted content"
msgstr "Szyfrowana treść"
-#: src/Content/Text/BBCode.php:1869
+#: src/Content/Text/BBCode.php:1901
msgid "Invalid source protocol"
msgstr "Nieprawidłowy protokół źródłowy"
-#: src/Content/Text/BBCode.php:1888
+#: src/Content/Text/BBCode.php:1920
msgid "Invalid link protocol"
msgstr "Niepoprawny link protokołu"
-#: src/Content/Text/HTML.php:780
+#: src/Content/Text/HTML.php:782
msgid "Loading more entries..."
msgstr "Wczytywanie kolejnych wpisów..."
-#: src/Content/Text/HTML.php:781
+#: src/Content/Text/HTML.php:783
msgid "The end"
msgstr "Koniec"
-#: src/Content/Text/HTML.php:857 src/Content/Widget/VCard.php:109
-#: src/Model/Profile.php:463 src/Module/Contact/Profile.php:437
+#: 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ź"
@@ -2171,7 +2331,7 @@ msgstr "Wpisz nazwę lub zainteresowanie"
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Przykład: Jan Kowalski, Wędkarstwo"
-#: src/Content/Widget.php:82 src/Module/Contact.php:432
+#: 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ź"
@@ -2202,45 +2362,49 @@ msgstr "Katalog globalny"
msgid "Local Directory"
msgstr "Katalog lokalny"
-#: src/Content/Widget.php:215 src/Model/Group.php:596
-#: src/Module/Contact.php:394 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:217
msgid "Everyone"
msgstr "Wszyscy"
-#: src/Content/Widget.php:246
+#: 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:248 src/Module/Contact.php:338
-#: src/Module/Group.php:291
+#: 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:287
+#: src/Content/Widget.php:288
msgid "Protocols"
msgstr "Protokoły"
-#: src/Content/Widget.php:289
+#: src/Content/Widget.php:290
msgid "All Protocols"
msgstr "Wszystkie protokoły"
-#: src/Content/Widget.php:317
+#: src/Content/Widget.php:318
msgid "Saved Folders"
msgstr "Zapisane katalogi"
-#: src/Content/Widget.php:319 src/Content/Widget.php:350
+#: src/Content/Widget.php:320 src/Content/Widget.php:351
msgid "Everything"
msgstr "Wszystko"
-#: src/Content/Widget.php:348
+#: src/Content/Widget.php:349
msgid "Categories"
msgstr "Kategorie"
-#: src/Content/Widget.php:405
+#: src/Content/Widget.php:406
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
@@ -2249,30 +2413,38 @@ msgstr[1] "%d wspólne kontakty"
msgstr[2] "%d wspólnych kontaktów"
msgstr[3] "%d wspólnych kontaktów"
-#: src/Content/Widget.php:501
+#: src/Content/Widget.php:506
msgid "Archives"
msgstr "Archiwa"
-#: src/Content/Widget.php:525
+#: src/Content/Widget.php:514
+msgid "On this date"
+msgstr ""
+
+#: src/Content/Widget.php:534
msgid "Persons"
msgstr "Osoby"
-#: src/Content/Widget.php:526
+#: src/Content/Widget.php:535
msgid "Organisations"
msgstr "Organizacje"
-#: src/Content/Widget.php:527 src/Model/Contact.php:1656
+#: src/Content/Widget.php:536 src/Model/Contact.php:1698
msgid "News"
msgstr "Aktualności"
-#: src/Content/Widget.php:531 src/Module/Settings/Account.php:453
+#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454
msgid "Account Types"
msgstr "Rodzaje kont"
-#: src/Content/Widget.php:532 src/Module/Moderation/BaseUsers.php:69
+#: src/Content/Widget.php:544 src/Module/Moderation/BaseUsers.php:69
msgid "All"
msgstr "Wszyscy"
+#: src/Content/Widget.php:573 src/Module/Settings/Display.php:266
+msgid "Channels"
+msgstr ""
+
#: src/Content/Widget/CalendarExport.php:56
msgid "Export"
msgstr "Eksport"
@@ -2323,32 +2495,32 @@ msgstr[3] "Popularne znaczniki (ostatnie %d godzin)"
msgid "More Trending Tags"
msgstr "Więcej popularnych znaczników"
-#: src/Content/Widget/VCard.php:102 src/Model/Profile.php:378
-#: src/Module/Contact/Profile.php:381 src/Module/Profile/Profile.php:199
+#: 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:379
-#: src/Module/Contact/Profile.php:383 src/Module/Profile/Profile.php:203
+#: 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: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/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:107 src/Model/Profile.php:476
+#: 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/Contact.php:1200
-#: src/Model/Contact.php:1211 src/Model/Profile.php:465
-#: src/Module/Contact/Profile.php:429
+#: 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ć"
@@ -2389,8 +2561,8 @@ msgstr "Ta zawartość będzie wyświetlana tylko osobom w pierwszym polu, z wyj
#: src/Core/ACL.php:324
msgid ""
-"Start typing the name of a contact or a group to show a filtered list. You "
-"can also mention the special groups \"Followers\" and \"Mutuals\"."
+"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
@@ -2732,161 +2904,172 @@ msgstr "Baza danych jest już w użyciu."
msgid "Could not connect to database."
msgstr "Nie można połączyć się z bazą danych."
-#: src/Core/L10n.php:408 src/Model/Event.php:432
-#: src/Module/Settings/Display.php:222
+#: 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:408 src/Model/Event.php:433
-#: src/Module/Settings/Display.php:223
+#: src/Core/L10n.php:476 src/Model/Event.php:431
+#: src/Module/Settings/Display.php:236
msgid "Tuesday"
msgstr "Wtorek"
-#: src/Core/L10n.php:408 src/Model/Event.php:434
-#: src/Module/Settings/Display.php:224
+#: src/Core/L10n.php:476 src/Model/Event.php:432
+#: src/Module/Settings/Display.php:237
msgid "Wednesday"
msgstr "Środa"
-#: src/Core/L10n.php:408 src/Model/Event.php:435
-#: src/Module/Settings/Display.php:225
+#: src/Core/L10n.php:476 src/Model/Event.php:433
+#: src/Module/Settings/Display.php:238
msgid "Thursday"
msgstr "Czwartek"
-#: src/Core/L10n.php:408 src/Model/Event.php:436
-#: src/Module/Settings/Display.php:226
+#: 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:408 src/Model/Event.php:437
-#: src/Module/Settings/Display.php:227
+#: src/Core/L10n.php:476 src/Model/Event.php:435
+#: src/Module/Settings/Display.php:240
msgid "Saturday"
msgstr "Sobota"
-#: src/Core/L10n.php:408 src/Model/Event.php:431
-#: src/Module/Settings/Display.php:221
+#: src/Core/L10n.php:476 src/Model/Event.php:429
+#: src/Module/Settings/Display.php:234
msgid "Sunday"
msgstr "Niedziela"
-#: src/Core/L10n.php:412 src/Model/Event.php:452
+#: src/Core/L10n.php:480 src/Model/Event.php:450
msgid "January"
msgstr "Styczeń"
-#: src/Core/L10n.php:412 src/Model/Event.php:453
+#: src/Core/L10n.php:480 src/Model/Event.php:451
msgid "February"
msgstr "Luty"
-#: src/Core/L10n.php:412 src/Model/Event.php:454
+#: src/Core/L10n.php:480 src/Model/Event.php:452
msgid "March"
msgstr "Marzec"
-#: src/Core/L10n.php:412 src/Model/Event.php:455
+#: src/Core/L10n.php:480 src/Model/Event.php:453
msgid "April"
msgstr "Kwiecień"
-#: src/Core/L10n.php:412 src/Core/L10n.php:431 src/Model/Event.php:443
+#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441
msgid "May"
msgstr "Maj"
-#: src/Core/L10n.php:412 src/Model/Event.php:456
+#: src/Core/L10n.php:480 src/Model/Event.php:454
msgid "June"
msgstr "Czerwiec"
-#: src/Core/L10n.php:412 src/Model/Event.php:457
+#: src/Core/L10n.php:480 src/Model/Event.php:455
msgid "July"
msgstr "Lipiec"
-#: src/Core/L10n.php:412 src/Model/Event.php:458
+#: src/Core/L10n.php:480 src/Model/Event.php:456
msgid "August"
msgstr "Sierpień"
-#: src/Core/L10n.php:412 src/Model/Event.php:459
+#: src/Core/L10n.php:480 src/Model/Event.php:457
msgid "September"
msgstr "Wrzesień"
-#: src/Core/L10n.php:412 src/Model/Event.php:460
+#: src/Core/L10n.php:480 src/Model/Event.php:458
msgid "October"
msgstr "Październik"
-#: src/Core/L10n.php:412 src/Model/Event.php:461
+#: src/Core/L10n.php:480 src/Model/Event.php:459
msgid "November"
msgstr "Listopad"
-#: src/Core/L10n.php:412 src/Model/Event.php:462
+#: src/Core/L10n.php:480 src/Model/Event.php:460
msgid "December"
msgstr "Grudzień"
-#: src/Core/L10n.php:427 src/Model/Event.php:424
+#: src/Core/L10n.php:495 src/Model/Event.php:422
msgid "Mon"
msgstr "Pon"
-#: src/Core/L10n.php:427 src/Model/Event.php:425
+#: src/Core/L10n.php:495 src/Model/Event.php:423
msgid "Tue"
msgstr "Wt"
-#: src/Core/L10n.php:427 src/Model/Event.php:426
+#: src/Core/L10n.php:495 src/Model/Event.php:424
msgid "Wed"
msgstr "Śr"
-#: src/Core/L10n.php:427 src/Model/Event.php:427
+#: src/Core/L10n.php:495 src/Model/Event.php:425
msgid "Thu"
msgstr "Czw"
-#: src/Core/L10n.php:427 src/Model/Event.php:428
+#: src/Core/L10n.php:495 src/Model/Event.php:426
msgid "Fri"
msgstr "Pt"
-#: src/Core/L10n.php:427 src/Model/Event.php:429
+#: src/Core/L10n.php:495 src/Model/Event.php:427
msgid "Sat"
msgstr "Sob"
-#: src/Core/L10n.php:427 src/Model/Event.php:423
+#: src/Core/L10n.php:495 src/Model/Event.php:421
msgid "Sun"
msgstr "Niedz"
-#: src/Core/L10n.php:431 src/Model/Event.php:439
+#: src/Core/L10n.php:499 src/Model/Event.php:437
msgid "Jan"
msgstr "Sty"
-#: src/Core/L10n.php:431 src/Model/Event.php:440
+#: src/Core/L10n.php:499 src/Model/Event.php:438
msgid "Feb"
msgstr "Lut"
-#: src/Core/L10n.php:431 src/Model/Event.php:441
+#: src/Core/L10n.php:499 src/Model/Event.php:439
msgid "Mar"
msgstr "Mar"
-#: src/Core/L10n.php:431 src/Model/Event.php:442
+#: src/Core/L10n.php:499 src/Model/Event.php:440
msgid "Apr"
msgstr "Kwi"
-#: src/Core/L10n.php:431 src/Model/Event.php:444
+#: src/Core/L10n.php:499 src/Model/Event.php:442
msgid "Jun"
msgstr "Cze"
-#: src/Core/L10n.php:431 src/Model/Event.php:445
+#: src/Core/L10n.php:499 src/Model/Event.php:443
msgid "Jul"
msgstr "Lip"
-#: src/Core/L10n.php:431 src/Model/Event.php:446
+#: src/Core/L10n.php:499 src/Model/Event.php:444
msgid "Aug"
msgstr "Sie"
-#: src/Core/L10n.php:431
+#: src/Core/L10n.php:499
msgid "Sep"
msgstr "Wrz"
-#: src/Core/L10n.php:431 src/Model/Event.php:448
+#: src/Core/L10n.php:499 src/Model/Event.php:446
msgid "Oct"
msgstr "Paź"
-#: src/Core/L10n.php:431 src/Model/Event.php:449
+#: src/Core/L10n.php:499 src/Model/Event.php:447
msgid "Nov"
msgstr "Lis"
-#: src/Core/L10n.php:431 src/Model/Event.php:450
+#: src/Core/L10n.php:499 src/Model/Event.php:448
msgid "Dec"
msgstr "Gru"
+#: 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/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:147 src/Core/Renderer.php:181
#: src/Render/FriendicaSmartyEngine.php:60
@@ -2931,22 +3114,22 @@ msgid ""
" 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:197
+#: src/Core/Update.php:183
#, php-format
msgid "%s: executing pre update %d"
msgstr "%s: wykonywanie wstępnej aktualizacji %d"
-#: src/Core/Update.php:239
+#: src/Core/Update.php:225
#, php-format
msgid "%s: executing post update %d"
msgstr "%s: wykonywanie czynności poaktualizacyjnych %d"
-#: src/Core/Update.php:313
+#: 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:353
+#: src/Core/Update.php:339
#, php-format
msgid ""
"\n"
@@ -2956,16 +3139,16 @@ 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:359
+#: 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:363 src/Core/Update.php:391
+#: 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:385
+#: src/Core/Update.php:371
#, php-format
msgid ""
"\n"
@@ -2977,28 +3160,28 @@ msgstr ""
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"
@@ -3006,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:221
+#: src/Database/DBStructure.php:232
msgid "Another database update is currently running."
msgstr "Trwa inna aktualizacja bazy danych."
-#: src/Database/DBStructure.php:225
+#: src/Database/DBStructure.php:236
#, php-format
msgid "%s: Database update"
msgstr "%s: Aktualizacja bazy danych"
-#: src/Database/DBStructure.php:482
+#: src/Database/DBStructure.php:493
#, php-format
msgid "%s: updating %s table."
msgstr "%s: aktualizowanie %s tabeli."
@@ -3050,82 +3233,122 @@ msgstr "Wewnętrzny błąd serwera"
msgid "Legacy module file not found: %s"
msgstr "Nie znaleziono pliku modułu: %s"
-#: src/Model/Contact.php:1217 src/Module/Moderation/Users/Pending.php:102
+#: 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 "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:1652
+#: src/Model/Contact.php:1694
msgid "Organisation"
msgstr "Organizacja"
-#: src/Model/Contact.php:1660
-msgid "Forum"
-msgstr "Forum"
+#: src/Model/Contact.php:1702
+msgid "Group"
+msgstr ""
-#: src/Model/Contact.php:2952
+#: src/Model/Contact.php:3005
msgid "Disallowed profile URL."
msgstr "Nie dozwolony adres URL profilu."
-#: src/Model/Contact.php:2957 src/Module/Friendica.php:83
+#: src/Model/Contact.php:3010 src/Module/Friendica.php:101
msgid "Blocked domain"
msgstr "Zablokowana domena"
-#: src/Model/Contact.php:2962
+#: src/Model/Contact.php:3015
msgid "Connect URL missing."
msgstr "Brak adresu URL połączenia."
-#: src/Model/Contact.php:2971
+#: 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:2989
+#: src/Model/Contact.php:3042
#, php-format
msgid "Expected network %s does not match actual network %s"
msgstr ""
-#: src/Model/Contact.php:3006
+#: 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:3008
+#: 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:3011
+#: 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:3014
+#: 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:3017
+#: 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:3018
+#: 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:3024
+#: 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:3029
+#: 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:3094
+#: src/Model/Contact.php:3148
msgid "Unable to retrieve contact information."
msgstr "Nie można otrzymać informacji kontaktowych"
@@ -3133,54 +3356,54 @@ msgstr "Nie można otrzymać informacji kontaktowych"
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
+#: 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:78 src/Model/Event.php:98 src/Model/Event.php:472
-#: src/Model/Event.php:944
+#: 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:421
+#: src/Model/Event.php:419
msgid "all-day"
msgstr "cały dzień"
-#: src/Model/Event.php:447
+#: src/Model/Event.php:445
msgid "Sept"
msgstr "Wrz"
-#: src/Model/Event.php:464 src/Module/Calendar/Show.php:128
+#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128
#: src/Util/Temporal.php:343
msgid "today"
msgstr "dzisiaj"
-#: src/Model/Event.php:465 src/Module/Calendar/Show.php:129
-#: src/Module/Settings/Display.php:232 src/Util/Temporal.php:353
+#: 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:466 src/Module/Calendar/Show.php:130
-#: src/Module/Settings/Display.php:233 src/Util/Temporal.php:354
+#: 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:467 src/Module/Calendar/Show.php:131
-#: src/Module/Settings/Display.php:234 src/Util/Temporal.php:355
+#: 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:469
+#: src/Model/Event.php:467
msgid "No events to display"
msgstr "Brak wydarzeń do wyświetlenia"
-#: src/Model/Event.php:518 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69
+#: 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:559 src/Module/Calendar/Event/Show.php:67
+#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67
msgid "Event not found."
msgstr "Nie znaleziono wydarzenia."
@@ -3212,110 +3435,66 @@ msgstr "D g:i A"
msgid "g:i A"
msgstr "g:i A"
-#: src/Model/Event.php:959 src/Model/Event.php:961
+#: src/Model/Event.php:964 src/Model/Event.php:966
msgid "Show map"
msgstr "Pokaż mapę"
-#: src/Model/Event.php:960
+#: src/Model/Event.php:965
msgid "Hide map"
msgstr "Ukryj mapę"
-#: src/Model/Event.php:1053
+#: src/Model/Event.php:1058
#, php-format
msgid "%s's birthday"
msgstr "Urodziny %s"
-#: src/Model/Event.php:1054
+#: 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:512
-msgid "Default privacy group for new contacts"
-msgstr "Domyślne ustawienia prywatności dla nowych kontaktów"
-
-#: src/Model/Group.php:544
-msgid "Everybody"
-msgstr "Wszyscy"
-
-#: src/Model/Group.php:563
-msgid "edit"
-msgstr "edytuj"
-
-#: src/Model/Group.php:595
-msgid "add"
-msgstr "dodaj"
-
-#: src/Model/Group.php:600
-msgid "Edit group"
-msgstr "Edytuj grupy"
-
-#: src/Model/Group.php:601 src/Module/Group.php:192
-msgid "Contacts not in any group"
-msgstr "Kontakt nie jest w żadnej grupie"
-
-#: src/Model/Group.php:603
-msgid "Create a new group"
-msgstr "Stwórz nową grupę"
-
-#: src/Model/Group.php:604 src/Module/Group.php:177 src/Module/Group.php:200
-#: src/Module/Group.php:275
-msgid "Group Name: "
-msgstr "Nazwa grupy: "
-
-#: src/Model/Group.php:605
-msgid "Edit groups"
-msgstr "Edytuj grupy"
-
-#: src/Model/Item.php:2023
+#: 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:2931
+#: src/Model/Item.php:3007
msgid "activity"
msgstr "aktywność"
-#: src/Model/Item.php:2933
+#: src/Model/Item.php:3009
msgid "comment"
msgstr "komentarz"
-#: src/Model/Item.php:2936 src/Module/Post/Tag/Add.php:123
+#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123
msgid "post"
msgstr "wpis"
-#: src/Model/Item.php:3105
+#: src/Model/Item.php:3182
#, php-format
msgid "%s is blocked"
msgstr ""
-#: src/Model/Item.php:3107
+#: src/Model/Item.php:3184
#, php-format
msgid "%s is ignored"
msgstr ""
-#: src/Model/Item.php:3109
+#: src/Model/Item.php:3186
#, php-format
msgid "Content from %s is collapsed"
msgstr ""
-#: src/Model/Item.php:3113
+#: src/Model/Item.php:3190
#, php-format
msgid "Content warning: %s"
msgstr "Ostrzeżenie o treści: %s"
-#: src/Model/Item.php:3557
+#: src/Model/Item.php:3652
msgid "bytes"
msgstr "bajty"
-#: src/Model/Item.php:3588
+#: src/Model/Item.php:3683
#, php-format
msgid "%2$s (%3$d%%, %1$d vote)"
msgid_plural "%2$s (%3$d%%, %1$d votes)"
@@ -3324,7 +3503,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Model/Item.php:3590
+#: src/Model/Item.php:3685
#, php-format
msgid "%2$s (%1$d vote)"
msgid_plural "%2$s (%1$d votes)"
@@ -3333,7 +3512,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Model/Item.php:3595
+#: src/Model/Item.php:3690
#, php-format
msgid "%d voter. Poll end: %s"
msgid_plural "%d voters. Poll end: %s"
@@ -3342,7 +3521,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Model/Item.php:3597
+#: src/Model/Item.php:3692
#, php-format
msgid "%d voter."
msgid_plural "%d voters."
@@ -3351,12 +3530,12 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Model/Item.php:3599
+#: src/Model/Item.php:3694
#, php-format
msgid "Poll end: %s"
msgstr "Koniec ankiety: %s"
-#: src/Model/Item.php:3633 src/Model/Item.php:3634
+#: src/Model/Item.php:3728 src/Model/Item.php:3729
msgid "View on separate page"
msgstr "Zobacz na oddzielnej stronie"
@@ -3364,227 +3543,228 @@ msgstr "Zobacz na oddzielnej stronie"
msgid "[no subject]"
msgstr "[bez tematu]"
-#: src/Model/Photo.php:1184 src/Module/Media/Photo/Upload.php:171
+#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170
msgid "Wall Photos"
msgstr "Tablica zdjęć"
-#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:283
+#: src/Model/Profile.php:359 src/Module/Profile/Profile.php:283
#: src/Module/Profile/Profile.php:285
msgid "Edit profile"
msgstr "Edytuj profil"
-#: src/Model/Profile.php:363
+#: src/Model/Profile.php:361
msgid "Change profile photo"
msgstr "Zmień zdjęcie profilowe"
-#: src/Model/Profile.php:376 src/Module/Directory.php:152
+#: 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:377 src/Module/Contact/Profile.php:385
+#: 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:467
+#: src/Model/Profile.php:465
msgid "Atom feed"
msgstr "Kanał Atom"
-#: src/Model/Profile.php:474
+#: 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:511
+#: src/Model/Profile.php:509
msgid "F d"
msgstr "F d"
-#: src/Model/Profile.php:575 src/Model/Profile.php:664
+#: src/Model/Profile.php:573 src/Model/Profile.php:662
msgid "[today]"
msgstr "[dziś]"
-#: src/Model/Profile.php:584
+#: src/Model/Profile.php:582
msgid "Birthday Reminders"
msgstr "Przypomnienia o urodzinach"
-#: src/Model/Profile.php:585
+#: src/Model/Profile.php:583
msgid "Birthdays this week:"
msgstr "Urodziny w tym tygodniu:"
-#: src/Model/Profile.php:613
+#: src/Model/Profile.php:611
msgid "g A l F d"
msgstr "g A I F d"
-#: src/Model/Profile.php:651
+#: src/Model/Profile.php:649
msgid "[No description]"
msgstr "[Brak opisu]"
-#: src/Model/Profile.php:677
+#: src/Model/Profile.php:675
msgid "Event Reminders"
msgstr "Przypominacze wydarzeń"
-#: src/Model/Profile.php:678
+#: 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:875
+#: 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:1015
+#: src/Model/Profile.php:1013
msgid "Hometown:"
msgstr "Miasto rodzinne:"
-#: src/Model/Profile.php:1016
+#: src/Model/Profile.php:1014
msgid "Marital Status:"
msgstr "Stan cywilny:"
-#: src/Model/Profile.php:1017
+#: src/Model/Profile.php:1015
msgid "With:"
msgstr "Z:"
-#: src/Model/Profile.php:1018
+#: src/Model/Profile.php:1016
msgid "Since:"
msgstr "Od:"
-#: src/Model/Profile.php:1019
+#: src/Model/Profile.php:1017
msgid "Sexual Preference:"
msgstr "Preferencje seksualne:"
-#: src/Model/Profile.php:1020
+#: src/Model/Profile.php:1018
msgid "Political Views:"
msgstr "Poglądy polityczne:"
-#: src/Model/Profile.php:1021
+#: src/Model/Profile.php:1019
msgid "Religious Views:"
msgstr "Poglądy religijne:"
-#: src/Model/Profile.php:1022
+#: src/Model/Profile.php:1020
msgid "Likes:"
msgstr "Lubię to:"
-#: src/Model/Profile.php:1023
+#: src/Model/Profile.php:1021
msgid "Dislikes:"
msgstr "Nie lubię tego:"
-#: src/Model/Profile.php:1024
+#: src/Model/Profile.php:1022
msgid "Title/Description:"
msgstr "Tytuł/Opis:"
-#: src/Model/Profile.php:1025 src/Module/Admin/Summary.php:221
+#: 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:1026
+#: src/Model/Profile.php:1024
msgid "Musical interests"
msgstr "Muzyka"
-#: src/Model/Profile.php:1027
+#: src/Model/Profile.php:1025
msgid "Books, literature"
msgstr "Literatura"
-#: src/Model/Profile.php:1028
+#: src/Model/Profile.php:1026
msgid "Television"
msgstr "Telewizja"
-#: src/Model/Profile.php:1029
+#: src/Model/Profile.php:1027
msgid "Film/dance/culture/entertainment"
msgstr "Film/taniec/kultura/rozrywka"
-#: src/Model/Profile.php:1030
+#: src/Model/Profile.php:1028
msgid "Hobbies/Interests"
msgstr "Zainteresowania"
-#: src/Model/Profile.php:1031
+#: src/Model/Profile.php:1029
msgid "Love/romance"
msgstr "Miłość/romans"
-#: src/Model/Profile.php:1032
+#: src/Model/Profile.php:1030
msgid "Work/employment"
msgstr "Praca/zatrudnienie"
-#: src/Model/Profile.php:1033
+#: src/Model/Profile.php:1031
msgid "School/education"
msgstr "Szkoła/edukacja"
-#: src/Model/Profile.php:1034
+#: src/Model/Profile.php:1032
msgid "Contact information and Social Networks"
msgstr "Dane kontaktowe i Sieci społecznościowe"
-#: src/Model/User.php:214 src/Model/User.php:1120
+#: 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:572 src/Model/User.php:605
+#: src/Model/User.php:620 src/Model/User.php:653
msgid "Login failed"
msgstr "Logowanie nieudane"
-#: src/Model/User.php:637
+#: src/Model/User.php:685
msgid "Not enough information to authenticate"
msgstr "Za mało informacji do uwierzytelnienia"
-#: src/Model/User.php:754
+#: src/Model/User.php:806
msgid "Password can't be empty"
msgstr "Hasło nie może być puste"
-#: src/Model/User.php:796
+#: src/Model/User.php:848
msgid "Empty passwords are not allowed."
msgstr "Puste hasła są niedozwolone."
-#: src/Model/User.php:800
+#: 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:804
+#: 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:808
+#: src/Model/User.php:860
msgid "The password can't contain white spaces nor accentuated letters"
msgstr ""
-#: src/Model/User.php:1003
+#: 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:1010
+#: src/Model/User.php:1076
msgid "An invitation is required."
msgstr "Wymagane zaproszenie."
-#: src/Model/User.php:1014
+#: src/Model/User.php:1080
msgid "Invitation could not be verified."
msgstr "Zaproszenie niezweryfikowane."
-#: src/Model/User.php:1022
+#: src/Model/User.php:1088
msgid "Invalid OpenID url"
msgstr "Nieprawidłowy adres url OpenID"
-#: src/Model/User.php:1035 src/Security/Authentication.php:241
+#: 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:1035 src/Security/Authentication.php:241
+#: src/Model/User.php:1101 src/Security/Authentication.php:241
msgid "The error message was:"
msgstr "Komunikat o błędzie:"
-#: src/Model/User.php:1041
+#: src/Model/User.php:1107
msgid "Please enter the required information."
msgstr "Wprowadź wymagane informacje."
-#: src/Model/User.php:1055
+#: 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:1062
+#: src/Model/User.php:1128
#, php-format
msgid "Username should be at least %s character."
msgid_plural "Username should be at least %s characters."
@@ -3593,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:1066
+#: src/Model/User.php:1132
#, php-format
msgid "Username should be at most %s character."
msgid_plural "Username should be at most %s characters."
@@ -3602,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:1074
+#: 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:1079
+#: 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:1083
+#: src/Model/User.php:1149
msgid "Not a valid email address."
msgstr "Niepoprawny adres e-mail."
-#: src/Model/User.php:1086
+#: 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:1090 src/Model/User.php:1096
+#: 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:1102
+#: 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:1110 src/Model/User.php:1167
+#: 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:1154 src/Model/User.php:1158
+#: 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:1181
+#: 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:1188
+#: 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:1193
+#: src/Model/User.php:1259
msgid "Friends"
msgstr "Przyjaciele"
-#: src/Model/User.php:1197
+#: 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:1236
+#: src/Model/User.php:1307
msgid "Profile Photos"
msgstr "Zdjęcie profilowe"
-#: src/Model/User.php:1431
+#: src/Model/User.php:1487
#, php-format
msgid ""
"\n"
@@ -3663,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:1434
+#: src/Model/User.php:1490
#, php-format
msgid ""
"\n"
@@ -3695,12 +3875,12 @@ msgid ""
"\t\tThank you and welcome to %4$s."
msgstr ""
-#: src/Model/User.php:1467 src/Model/User.php:1574
+#: 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:1487
+#: src/Model/User.php:1543
#, php-format
msgid ""
"\n"
@@ -3715,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:1506
+#: src/Model/User.php:1562
#, php-format
msgid "Registration at %s"
msgstr "Rejestracja w %s"
-#: src/Model/User.php:1530
+#: src/Model/User.php:1586
#, php-format
msgid ""
"\n"
@@ -3729,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:1538
+#: src/Model/User.php:1594
#, php-format
msgid ""
"\n"
@@ -3786,10 +3966,10 @@ msgid "Enable"
msgstr "Zezwól"
#: src/Module/Admin/Addons/Details.php:111
-#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:209
+#: 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:220
+#: 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
@@ -3799,7 +3979,7 @@ msgstr "Administracja"
#: src/Module/Admin/Addons/Details.php:112
#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92
-#: src/Module/BaseSettings.php:134
+#: src/Module/BaseSettings.php:132
msgid "Addons"
msgstr "Dodatki"
@@ -3830,10 +4010,10 @@ 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:560 src/Module/Settings/Addons.php:78
+#: 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:169 src/Module/Settings/Display.php:247
+#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260
#: src/Module/Settings/Features.php:76
msgid "Save Settings"
msgstr "Zapisz ustawienia"
@@ -3918,15 +4098,17 @@ msgstr "Funkcja blokady %s"
msgid "Manage Additional Features"
msgstr "Zarządzanie dodatkowymi funkcjami"
-#: src/Module/Admin/Federation.php:75
+#: 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:149 src/Module/Admin/Federation.php:398
+#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403
msgid "unknown"
msgstr "nieznany"
-#: src/Module/Admin/Federation.php:182
+#: src/Module/Admin/Federation.php:187
#, php-format
msgid "%2$s total system"
msgid_plural "%2$s total systems"
@@ -3935,7 +4117,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/Admin/Federation.php:183
+#: src/Module/Admin/Federation.php:188
#, php-format
msgid "%2$s active user last month"
msgid_plural "%2$s active users last month"
@@ -3944,7 +4126,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/Admin/Federation.php:184
+#: 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"
@@ -3953,7 +4135,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/Admin/Federation.php:185
+#: src/Module/Admin/Federation.php:190
#, php-format
msgid "%2$s registered user"
msgid_plural "%2$s registered users"
@@ -3962,7 +4144,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/Admin/Federation.php:186
+#: 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"
@@ -3971,7 +4153,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/Admin/Federation.php:189
+#: src/Module/Admin/Federation.php:194
#, php-format
msgid "%2$s post per user"
msgid_plural "%2$s posts per user"
@@ -3980,7 +4162,7 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/Admin/Federation.php:194
+#: src/Module/Admin/Federation.php:199
#, php-format
msgid "%2$s user per system"
msgid_plural "%2$s users per system"
@@ -3989,18 +4171,18 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/Admin/Federation.php:204
+#: 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:210 src/Module/BaseAdmin.php:87
+#: src/Module/Admin/Federation.php:215 src/Module/BaseAdmin.php:87
msgid "Federation Statistics"
msgstr "Statystyki Federacji"
-#: src/Module/Admin/Federation.php:214
+#: src/Module/Admin/Federation.php:219
#, php-format
msgid ""
"Currently this node is aware of %2$s node (%3$s active users last month, "
@@ -4195,7 +4377,8 @@ msgstr "Polecenie"
msgid "Job Parameters"
msgstr "Parametry zadania"
-#: src/Module/Admin/Queue.php:78 src/Module/Settings/OAuth.php:74
+#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95
+#: src/Module/Settings/OAuth.php:74
msgid "Created"
msgstr "Utwórz"
@@ -4208,11 +4391,11 @@ msgstr "Priorytet"
msgid "%s is no valid input for maximum image size"
msgstr ""
-#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:169
+#: 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:330 src/Module/Settings/Display.php:179
+#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188
#, php-format
msgid "%s - (Experimental)"
msgstr "%s- (Eksperymentalne)"
@@ -4302,7 +4485,7 @@ msgid "Policies"
msgstr "Zasady"
#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252
-#: src/Module/Contact.php:516 src/Module/Profile/Profile.php:276
+#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276
msgid "Advanced"
msgstr "Zaawansowany"
@@ -4632,8 +4815,8 @@ msgstr "Prywatne posty domyślnie dla nowych użytkowników"
#: 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:456
msgid "Don't include post content in email notifications"
@@ -5047,14 +5230,14 @@ 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:507
-msgid "Generate counts per contact group when calculating network count"
-msgstr "Generuj liczniki na grupę kontaktów podczas obliczania liczby sieci"
+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 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:509
msgid "Maximum number of parallel workers"
@@ -5097,7 +5280,7 @@ msgid ""
"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:513 src/Module/Contact/Profile.php:286
+#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309
#: src/Module/Settings/TwoFactor/Index.php:125
msgid "Disabled"
msgstr "Wyłączony"
@@ -5292,51 +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:142
-#, 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:156
-#, 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:172
+#: 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:180
+#: 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:188
+#: 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:199
+#: src/Module/Admin/Summary.php:175
msgid "Message queues"
msgstr "Wiadomości"
-#: src/Module/Admin/Summary.php:205
+#: src/Module/Admin/Summary.php:181
msgid "Server Settings"
msgstr "Ustawienia serwera"
-#: src/Module/Admin/Summary.php:223
+#: src/Module/Admin/Summary.php:199
msgid "Version"
msgstr "Wersja"
-#: src/Module/Admin/Summary.php:227
+#: src/Module/Admin/Summary.php:203
msgid "Active addons"
msgstr "Aktywne dodatki"
@@ -5489,11 +5661,11 @@ msgstr "Element nie znaleziony."
msgid "Please login to continue."
msgstr "Zaloguj się aby kontynuować."
-#: src/Module/BaseAdmin.php:63 src/Module/BaseModeration.php:86
+#: 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:67 src/Module/BaseModeration.php:90
+#: src/Module/BaseAdmin.php:67
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
@@ -5503,11 +5675,11 @@ msgstr "Konto zarządzane podrzędnie nie ma dostępu do stron administracyjnych
msgid "Overview"
msgstr "Przegląd"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:111
+#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
msgid "Configuration"
msgstr "Konfiguracja"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:112
+#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
msgid "Additional features"
msgstr "Dodatkowe funkcje"
@@ -5527,7 +5699,7 @@ msgstr "Sprawdź odroczonych workerów"
msgid "Inspect worker Queue"
msgstr "Sprawdź kolejkę workerów"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:119
+#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
msgid "Diagnostics"
msgstr "Diagnostyka"
@@ -5555,7 +5727,7 @@ msgstr "Konwersja ActivityPub"
msgid "Addon Features"
msgstr "Funkcje dodatkowe"
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:128
+#: 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"
@@ -5593,32 +5765,46 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/BaseModeration.php:112 src/Module/Moderation/Users/Index.php:148
+#: 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:114
+#: src/Module/BaseModeration.php:115
msgid "Tools"
msgstr "Narzędzia"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:116
msgid "Contact Blocklist"
msgstr "Lista zablokowanych kontaktów"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:117
msgid "Server Blocklist"
msgstr "Lista zablokowanych serwerów"
-#: src/Module/BaseModeration.php:117 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
msgid "Delete Item"
msgstr "Usuń przedmiot"
-#: src/Module/BaseModeration.php:120 src/Module/Moderation/Item/Source.php:76
+#: 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:478
+#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507
msgid "Profile Details"
msgstr "Szczegóły profilu"
@@ -5642,21 +5828,21 @@ msgstr "Wpisy zaplanowane do publikacji"
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/BaseSearch.php:123 src/Module/Contact/MatchInterests.php:139
+#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139
msgid "No matches"
msgstr "Brak wyników"
-#: src/Module/BaseSearch.php:149
+#: src/Module/BaseSearch.php:147
#, php-format
msgid ""
"%d result was filtered out because your node blocks the domain it is "
@@ -5671,36 +5857,40 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/BaseSettings.php:80
+#: src/Module/BaseSettings.php:78
msgid "Account"
msgstr "Konto"
-#: src/Module/BaseSettings.php:87 src/Module/Security/TwoFactor/Verify.php:96
+#: 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:120
+#: src/Module/BaseSettings.php:118
msgid "Display"
msgstr "Wygląd"
-#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:204
+#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204
msgid "Social Networks"
msgstr "Portale społecznościowe"
-#: src/Module/BaseSettings.php:141 src/Module/Settings/Delegation.php:170
+#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172
msgid "Manage Accounts"
msgstr "Zarządzanie kontami"
-#: src/Module/BaseSettings.php:148
+#: src/Module/BaseSettings.php:146
msgid "Connected apps"
msgstr "Powiązane aplikacje"
-#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:98
+#: 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:162
+#: src/Module/BaseSettings.php:167
msgid "Remove account"
msgstr "Usuń konto"
@@ -5820,10 +6010,113 @@ msgstr "Widok"
msgid "Create New Event"
msgstr "Stwórz nowe wydarzenie"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:235
+#: 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."
@@ -5833,159 +6126,146 @@ msgstr[1] "Zedytowano %d kontakty."
msgstr[2] "Zedytowano %d kontaktów."
msgstr[3] "%dedytuj kontakty."
-#: src/Module/Contact.php:341
+#: src/Module/Contact.php:348
msgid "Show all contacts"
msgstr "Pokaż wszystkie kontakty"
-#: src/Module/Contact.php:346 src/Module/Contact.php:414
+#: 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:349
+#: src/Module/Contact.php:356
msgid "Only show pending contacts"
msgstr "Pokaż tylko oczekujące kontakty"
-#: src/Module/Contact.php:354 src/Module/Contact.php:415
+#: src/Module/Contact.php:361 src/Module/Contact.php:435
#: src/Module/Moderation/BaseUsers.php:93
msgid "Blocked"
msgstr "Zablokowane"
-#: src/Module/Contact.php:357
+#: src/Module/Contact.php:364
msgid "Only show blocked contacts"
msgstr "Pokaż tylko zablokowane kontakty"
-#: src/Module/Contact.php:362 src/Module/Contact.php:417
-#: src/Object/Post.php:345
+#: 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:365
+#: src/Module/Contact.php:372
msgid "Only show ignored contacts"
msgstr "Pokaż tylko ignorowane kontakty"
-#: src/Module/Contact.php:370 src/Module/Contact.php:418
+#: src/Module/Contact.php:377 src/Module/Contact.php:444
msgid "Collapsed"
msgstr ""
-#: src/Module/Contact.php:373
+#: src/Module/Contact.php:380
msgid "Only show collapsed contacts"
msgstr ""
-#: src/Module/Contact.php:378 src/Module/Contact.php:419
+#: src/Module/Contact.php:385 src/Module/Contact.php:447
msgid "Archived"
msgstr "Zarchiwizowane"
-#: src/Module/Contact.php:381
+#: src/Module/Contact.php:388
msgid "Only show archived contacts"
msgstr "Pokaż tylko zarchiwizowane kontakty"
-#: src/Module/Contact.php:386 src/Module/Contact.php:416
+#: src/Module/Contact.php:393 src/Module/Contact.php:438
msgid "Hidden"
msgstr "Ukryte"
-#: src/Module/Contact.php:389
+#: src/Module/Contact.php:396
msgid "Only show hidden contacts"
msgstr "Pokaż tylko ukryte kontakty"
-#: src/Module/Contact.php:397
-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:430
+#: src/Module/Contact.php:459
msgid "Search your contacts"
msgstr "Wyszukaj w kontaktach"
-#: src/Module/Contact.php:431 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:438
+#: src/Module/Contact.php:467
msgid "Update"
msgstr "Zaktualizuj"
-#: src/Module/Contact.php:439 src/Module/Contact/Profile.php:477
+#: 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:440 src/Module/Contact/Profile.php:485
+#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519
msgid "Unignore"
msgstr "Odblokuj"
-#: src/Module/Contact.php:441 src/Module/Contact/Profile.php:493
+#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527
msgid "Uncollapse"
msgstr ""
-#: src/Module/Contact.php:443
+#: src/Module/Contact.php:472
msgid "Batch Actions"
msgstr "Akcje wsadowe"
-#: src/Module/Contact.php:486
+#: src/Module/Contact.php:515
msgid "Conversations started by this contact"
msgstr "Rozmowy rozpoczęły się od tego kontaktu"
-#: src/Module/Contact.php:491
+#: src/Module/Contact.php:520
msgid "Posts and Comments"
msgstr "Wpisy i komentarze"
-#: src/Module/Contact.php:494
+#: src/Module/Contact.php:523
msgid "Individual Posts and Replies"
msgstr ""
-#: src/Module/Contact.php:502
+#: src/Module/Contact.php:531
msgid "Posts containing media objects"
msgstr "Wpisy zawierające obiekty multimedialne"
-#: src/Module/Contact.php:509
+#: src/Module/Contact.php:539
msgid "View all known contacts"
msgstr "Zobacz wszystkie znane kontakty"
-#: src/Module/Contact.php:519
+#: src/Module/Contact.php:550
msgid "Advanced Contact Settings"
msgstr "Zaawansowane ustawienia kontaktów"
-#: src/Module/Contact.php:555
+#: src/Module/Contact.php:586
msgid "Mutual Friendship"
msgstr "Wzajemna przyjaźń"
-#: src/Module/Contact.php:559
+#: src/Module/Contact.php:590
msgid "is a fan of yours"
msgstr "jest twoim fanem"
-#: src/Module/Contact.php:563
+#: src/Module/Contact.php:594
msgid "you are a fan of"
msgstr "jesteś fanem"
-#: src/Module/Contact.php:581
+#: src/Module/Contact.php:612
msgid "Pending outgoing contact request"
msgstr "Oczekujące żądanie kontaktu wychodzącego"
-#: src/Module/Contact.php:583
+#: src/Module/Contact.php:614
msgid "Pending incoming contact request"
msgstr "Oczekujące żądanie kontaktu przychodzącego"
-#: src/Module/Contact.php:596 src/Module/Contact/Profile.php:346
+#: 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]"
-#: 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
-#: src/Module/Group.php:97 src/Module/Group.php:106
-msgid "Contact not found."
-msgstr "Nie znaleziono kontaktu."
-
#: src/Module/Contact/Advanced.php:99
msgid "Contact update failed."
msgstr "Nie udało się zaktualizować kontaktu."
@@ -5996,6 +6276,7 @@ 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
@@ -6022,11 +6303,6 @@ msgstr "Adres Ankiety/RSS"
msgid "New photo from this URL"
msgstr "Nowe zdjęcie z tego adresu URL"
-#: src/Module/Contact/Contacts.php:66 src/Module/Conversation/Network.php:189
-#: src/Module/Group.php:101
-msgid "Invalid contact."
-msgstr "Nieprawidłowy kontakt."
-
#: src/Module/Contact/Contacts.php:89
msgid "No known contacts."
msgstr "Brak znanych kontaktów."
@@ -6093,7 +6369,7 @@ msgstr[2] "Kontaktów (%s)"
msgstr[3] "Kontaktów (%s)"
#: 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/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
@@ -6131,15 +6407,16 @@ msgstr "Proszę odpowiedzieć na następujące pytania:"
msgid "Your Identity Address:"
msgstr "Twój adres tożsamości:"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:375
+#: 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:387
+#: 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:"
@@ -6165,8 +6442,8 @@ 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:82 src/Module/Media/Photo/Upload.php:87
-#: src/Module/Media/Photo/Upload.php:136
+#: 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."
@@ -6178,248 +6455,312 @@ msgstr "Brak pasujących słów kluczowych. Dodaj słowa kluczowe do swojego pro
msgid "Profile Match"
msgstr "Dopasowanie profilu"
-#: src/Module/Contact/Profile.php:128
+#: 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:178
+#: src/Module/Contact/Profile.php:190
msgid "Contact has been unblocked"
msgstr "Kontakt został odblokowany"
-#: src/Module/Contact/Profile.php:182
+#: src/Module/Contact/Profile.php:194
msgid "Contact has been blocked"
msgstr "Kontakt został zablokowany"
-#: src/Module/Contact/Profile.php:194
+#: src/Module/Contact/Profile.php:206
msgid "Contact has been unignored"
msgstr "Kontakt nie jest ignorowany"
-#: src/Module/Contact/Profile.php:198
+#: src/Module/Contact/Profile.php:210
msgid "Contact has been ignored"
msgstr "Kontakt jest ignorowany"
-#: src/Module/Contact/Profile.php:210
+#: src/Module/Contact/Profile.php:222
msgid "Contact has been uncollapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:214
+#: src/Module/Contact/Profile.php:226
msgid "Contact has been collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:242
+#: 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:243
+#: src/Module/Contact/Profile.php:255
#, php-format
msgid "You are sharing with %s"
msgstr "Współdzielisz z %s"
-#: src/Module/Contact/Profile.php:244
+#: 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:260
+#: 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:262
+#: 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:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was not successful)"
msgstr "(Aktualizacja nie powiodła się)"
-#: src/Module/Contact/Profile.php:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was successful)"
msgstr "(Aktualizacja przebiegła pomyślnie)"
-#: src/Module/Contact/Profile.php:267 src/Module/Contact/Profile.php:448
+#: 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:271
+#: src/Module/Contact/Profile.php:294
#, php-format
msgid "Network type: %s"
msgstr "Typ sieci: %s"
-#: src/Module/Contact/Profile.php:276
+#: src/Module/Contact/Profile.php:299
msgid "Communications lost with this contact!"
msgstr "Utracono komunikację z tym kontaktem!"
-#: src/Module/Contact/Profile.php:282
+#: src/Module/Contact/Profile.php:305
msgid "Fetch further information for feeds"
msgstr "Pobierz dalsze informacje dla kanałów"
-#: src/Module/Contact/Profile.php:284
+#: 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:287
+#: src/Module/Contact/Profile.php:310
msgid "Fetch information"
msgstr "Pobierz informacje"
-#: src/Module/Contact/Profile.php:288
+#: src/Module/Contact/Profile.php:311
msgid "Fetch keywords"
msgstr "Pobierz słowa kluczowe"
-#: src/Module/Contact/Profile.php:289
+#: src/Module/Contact/Profile.php:312
msgid "Fetch information and keywords"
msgstr "Pobierz informacje i słowa kluczowe"
-#: src/Module/Contact/Profile.php:299 src/Module/Contact/Profile.php:304
-#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:315
+#: 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:300 src/Module/Contact/Profile.php:310
-#: src/Module/Contact/Profile.php:316
+#: 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:305 src/Module/Contact/Profile.php:311
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334
msgid "Native reshare"
msgstr "Udostępnianie natywne"
-#: src/Module/Contact/Profile.php:328
+#: src/Module/Contact/Profile.php:353
msgid "Contact Information / Notes"
msgstr "Informacje kontaktowe/Notatki"
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:354
msgid "Contact Settings"
msgstr "Ustawienia kontaktów"
-#: src/Module/Contact/Profile.php:337
+#: src/Module/Contact/Profile.php:362
msgid "Contact"
msgstr "Kontakt"
-#: src/Module/Contact/Profile.php:341
+#: src/Module/Contact/Profile.php:366
msgid "Their personal note"
msgstr "Ich osobista uwaga"
-#: src/Module/Contact/Profile.php:343
+#: src/Module/Contact/Profile.php:368
msgid "Edit contact notes"
msgstr "Edytuj notatki kontaktu"
-#: src/Module/Contact/Profile.php:347
+#: src/Module/Contact/Profile.php:372
msgid "Block/Unblock contact"
msgstr "Zablokuj/odblokuj kontakt"
-#: src/Module/Contact/Profile.php:348
+#: src/Module/Contact/Profile.php:373
+#: src/Module/Moderation/Report/Create.php:293
msgid "Ignore contact"
msgstr "Ignoruj kontakt"
-#: src/Module/Contact/Profile.php:349
+#: src/Module/Contact/Profile.php:374
msgid "View conversations"
msgstr "Wyświetl rozmowy"
-#: src/Module/Contact/Profile.php:354
+#: src/Module/Contact/Profile.php:379
msgid "Last update:"
msgstr "Ostatnia aktualizacja:"
-#: src/Module/Contact/Profile.php:356
+#: src/Module/Contact/Profile.php:381
msgid "Update public posts"
msgstr "Zaktualizuj publiczne wpisy"
-#: src/Module/Contact/Profile.php:358 src/Module/Contact/Profile.php:458
+#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492
msgid "Update now"
msgstr "Aktualizuj teraz"
-#: src/Module/Contact/Profile.php:360
+#: src/Module/Contact/Profile.php:385
msgid "Awaiting connection acknowledge"
msgstr "Oczekiwanie na potwierdzenie połączenia"
-#: src/Module/Contact/Profile.php:361
+#: src/Module/Contact/Profile.php:386
msgid "Currently blocked"
msgstr "Obecnie zablokowany"
-#: src/Module/Contact/Profile.php:362
+#: src/Module/Contact/Profile.php:387
msgid "Currently ignored"
msgstr "Obecnie zignorowany"
-#: src/Module/Contact/Profile.php:363
+#: src/Module/Contact/Profile.php:388
msgid "Currently collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:364
+#: src/Module/Contact/Profile.php:389
msgid "Currently archived"
msgstr "Obecnie zarchiwizowany"
-#: src/Module/Contact/Profile.php:367
+#: 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:367
+#: 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:368
+#: src/Module/Contact/Profile.php:395
msgid "Notification for new posts"
msgstr "Powiadomienie o nowych wpisach"
-#: src/Module/Contact/Profile.php:368
+#: 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:370
+#: src/Module/Contact/Profile.php:397
msgid "Keyword Deny List"
msgstr "Lista odrzuconych słów kluczowych"
-#: src/Module/Contact/Profile.php:370
+#: 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:388
+#: src/Module/Contact/Profile.php:415
#: src/Module/Settings/TwoFactor/Index.php:139
msgid "Actions"
msgstr "Akcja"
-#: src/Module/Contact/Profile.php:390
+#: 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:396
+#: src/Module/Contact/Profile.php:423
msgid "Mirror postings from this contact"
msgstr "Publikacje lustrzane od tego kontaktu"
-#: src/Module/Contact/Profile.php:398
+#: 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:468
+#: 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:479
+#: src/Module/Contact/Profile.php:513
msgid "Toggle Blocked status"
msgstr "Przełącz stan na Zablokowany"
-#: src/Module/Contact/Profile.php:487
+#: src/Module/Contact/Profile.php:521
msgid "Toggle Ignored status"
msgstr "Przełącz stan na Ignorowany"
-#: src/Module/Contact/Profile.php:495
+#: src/Module/Contact/Profile.php:529
msgid "Toggle Collapsed status"
msgstr ""
-#: src/Module/Contact/Profile.php:502 src/Module/Contact/Revoke.php:106
+#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106
msgid "Revoke Follow"
msgstr "Anuluj obserwowanie"
-#: src/Module/Contact/Profile.php:504
+#: src/Module/Contact/Profile.php:538
msgid "Revoke the follow from this contact"
msgstr "Anuluj obserwację przez ten kontakt"
@@ -6431,10 +6772,6 @@ msgstr "Błędne zapytanie."
msgid "Unknown contact."
msgstr "Nieznany kontakt."
-#: src/Module/Contact/Revoke.php:73 src/Module/Group.php:110
-msgid "Contact is deleted."
-msgstr "Kontakt został usunięty."
-
#: src/Module/Contact/Revoke.php:77
msgid "Contact is being deleted."
msgstr "Kontakt jest usuwany."
@@ -6482,102 +6819,54 @@ msgstr "Kontakt pomyślnie przestał być obserwowany"
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:74
+#: 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/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:87
-msgid "Local Community"
-msgstr "Lokalna społeczność"
-
-#: src/Module/Conversation/Community.php:90
-msgid "Posts from local users on this server"
-msgstr "Wpisy od lokalnych użytkowników na tym serwerze"
-
-#: src/Module/Conversation/Community.php:98
-msgid "Global Community"
-msgstr "Globalna społeczność"
-
-#: src/Module/Conversation/Community.php:101
-msgid "Posts from users of the whole federated network"
-msgstr "Wpisy od użytkowników całej sieci stowarzyszonej"
-
-#: src/Module/Conversation/Community.php:134
-msgid "Own Contacts"
-msgstr "Własne kontakty"
-
-#: src/Module/Conversation/Community.php:138
-msgid "Include"
-msgstr "Zawiera"
-
-#: src/Module/Conversation/Community.php:139
-msgid "Hide"
-msgstr "Ukryj"
-
-#: src/Module/Conversation/Community.php:156 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
-msgid "No results."
-msgstr "Brak wyników."
-
-#: src/Module/Conversation/Community.php:212
+#: src/Module/Conversation/Community.php:179
msgid "Community option not available."
msgstr "Opcja wspólnotowa jest niedostępna."
-#: src/Module/Conversation/Community.php:228
+#: src/Module/Conversation/Community.php:195
msgid "Not available."
msgstr "Niedostępne."
-#: src/Module/Conversation/Network.php:175
-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:179
+#: src/Module/Conversation/Network.php:222
#, php-format
-msgid "Group: %s"
-msgstr "Grupa: %s"
+msgid "Circle: %s"
+msgstr ""
-#: src/Module/Conversation/Network.php:257
-msgid "Latest Activity"
-msgstr "Ostatnia Aktywność"
+#: src/Module/Conversation/Network.php:317
+msgid "Network feed not available."
+msgstr ""
-#: src/Module/Conversation/Network.php:260
-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:265
-msgid "Latest Posts"
-msgstr "Najnowsze wpisy"
+#: src/Module/Conversation/Timeline.php:162
+msgid "Include"
+msgstr "Zawiera"
-#: src/Module/Conversation/Network.php:268
-msgid "Sort by post received date"
-msgstr "Sortuj wg. daty otrzymania wpisu"
-
-#: src/Module/Conversation/Network.php:273
-msgid "Latest Creation"
-msgstr "Najnowsze utworzenia"
-
-#: src/Module/Conversation/Network.php:276
-msgid "Sort by post creation date"
-msgstr "Sortuj wg. daty utworzenia wpisu"
-
-#: src/Module/Conversation/Network.php:281
-#: src/Module/Settings/Profile/Index.php:235
-msgid "Personal"
-msgstr "Osobiste"
-
-#: src/Module/Conversation/Network.php:284
-msgid "Posts that mention or involve you"
-msgstr "Wpisy, które wspominają lub angażują Ciebie"
-
-#: src/Module/Conversation/Network.php:289 src/Object/Post.php:357
-msgid "Starred"
-msgstr "Ulubione"
-
-#: src/Module/Conversation/Network.php:292
-msgid "Favourite Posts"
-msgstr "Ulubione wpisy"
+#: src/Module/Conversation/Timeline.php:163
+msgid "Hide"
+msgstr "Ukryj"
#: src/Module/Credits.php:44
msgid "Credits"
@@ -6797,7 +7086,7 @@ msgid "Twitter Source / Tweet URL (requires API key)"
msgstr "Źródło Twitter / URL Tweeta (wymaga klucza API)"
#: src/Module/Debug/Feed.php:52 src/Module/Filer/SaveTag.php:47
-#: src/Module/Settings/Profile/Index.php:144
+#: 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"
@@ -6926,138 +7215,58 @@ msgstr "Zaproponuj znajomych"
msgid "Suggest a friend for %s"
msgstr "Zaproponuj znajomych dla %s"
-#: src/Module/Friendica.php:64
+#: src/Module/Friendica.php:82
msgid "Installed addons/apps:"
msgstr "Zainstalowane dodatki/aplikacje:"
-#: src/Module/Friendica.php:69
+#: src/Module/Friendica.php:87
msgid "No installed addons/apps"
msgstr "Brak zainstalowanych dodatków/aplikacji"
-#: src/Module/Friendica.php:74
+#: 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:81
+#: 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: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 "Powód blokowania"
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:104
msgid "Download this list in CSV format"
msgstr ""
-#: src/Module/Friendica.php:100
+#: 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:105
+#: 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:106
+#: 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:106
+#: src/Module/Friendica.php:124
msgid "the bugtracker at github"
msgstr "śledzenie błędów na github"
-#: src/Module/Friendica.php:107
+#: 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:56
-msgid "Could not create group."
-msgstr "Nie można utworzyć grupy."
-
-#: src/Module/Group.php:67 src/Module/Group.php:213 src/Module/Group.php:237
-msgid "Group not found."
-msgstr "Nie znaleziono grupy."
-
-#: src/Module/Group.php:73
-msgid "Group name was not changed."
-msgstr "Nazwa grupy nie została zmieniona."
-
-#: src/Module/Group.php:91
-msgid "Unknown group."
-msgstr "Nieznana grupa."
-
-#: src/Module/Group.php:116
-msgid "Unable to add the contact to the group."
-msgstr "Nie można dodać kontaktu do grupy."
-
-#: src/Module/Group.php:119
-msgid "Contact successfully added to group."
-msgstr "Kontakt został pomyślnie dodany do grupy."
-
-#: src/Module/Group.php:123
-msgid "Unable to remove the contact from the group."
-msgstr "Nie można usunąć kontaktu z grupy."
-
-#: src/Module/Group.php:126
-msgid "Contact successfully removed from group."
-msgstr "Kontakt został pomyślnie usunięty z grupy."
-
-#: src/Module/Group.php:130
-msgid "Bad request."
-msgstr "Błędne żądanie."
-
-#: src/Module/Group.php:169
-msgid "Save Group"
-msgstr "Zapisz grupę"
-
-#: src/Module/Group.php:170
-msgid "Filter"
-msgstr "Filtr"
-
-#: src/Module/Group.php:176
-msgid "Create a group of contacts/friends."
-msgstr "Stwórz grupę znajomych."
-
-#: src/Module/Group.php:218
-msgid "Unable to remove group."
-msgstr "Nie można usunąć grupy."
-
-#: src/Module/Group.php:269
-msgid "Delete Group"
-msgstr "Usuń grupę"
-
-#: src/Module/Group.php:279
-msgid "Edit Group Name"
-msgstr "Edytuj nazwę grupy"
-
-#: src/Module/Group.php:289
-msgid "Members"
-msgstr "Członkowie"
-
-#: src/Module/Group.php:292
-msgid "Group is empty"
-msgstr "Grupa jest pusta"
-
-#: src/Module/Group.php:305
-msgid "Remove contact from group"
-msgstr "Usuń kontakt z grupy"
-
-#: src/Module/Group.php:326
-msgid "Click on a contact to add or remove."
-msgstr "Kliknij na kontakt w celu dodania lub usunięcia."
-
-#: src/Module/Group.php:340
-msgid "Add contact to group"
-msgstr "Dodaj kontakt do grupy"
-
#: src/Module/HCard.php:45
msgid "No profile"
msgstr "Brak profilu"
@@ -7351,30 +7560,26 @@ msgstr "Utwórz nowy wpis"
msgid "Visibility"
msgstr "Widoczność"
-#: src/Module/Item/Compose.php:202
+#: src/Module/Item/Compose.php:203
msgid "Clear the location"
msgstr "Wyczyść lokalizację"
-#: src/Module/Item/Compose.php:203
+#: 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:204
+#: 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/Compose.php:210
+#: 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/Display.php:136 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/Item/Feed.php:86
msgid "The feed for this item is unavailable."
msgstr "Kanał dla tego elementu jest niedostępny."
@@ -7430,13 +7635,13 @@ msgstr "Plik przekracza limit rozmiaru wynoszący %s"
msgid "File upload failed."
msgstr "Przesyłanie pliku nie powiodło się."
-#: src/Module/Media/Photo/Upload.php:153 src/Module/Media/Photo/Upload.php:154
+#: 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:179 src/Module/Profile/Photos.php:237
+#: 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ę."
@@ -7469,41 +7674,41 @@ msgstr "Usunięte"
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:491
+#: 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:498
+#: 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:505
-msgid "Public Forum"
-msgstr "Forum publiczne"
+#: 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:512
+#: 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 Forum"
-msgstr "Prywatne forum"
+msgid "Private Group"
+msgstr ""
-#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:463
+#: 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:470
+#: 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:477
+#: 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:484
-msgid "Community Forum"
-msgstr "Forum społecznościowe"
+#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485
+msgid "Community Group"
+msgstr ""
#: src/Module/Moderation/BaseUsers.php:130
msgid "Relay"
@@ -7561,6 +7766,7 @@ 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"
@@ -7638,6 +7844,8 @@ 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"
@@ -7928,6 +8136,239 @@ msgstr ""
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"
@@ -7937,8 +8378,8 @@ msgid "Automatic Follower Account"
msgstr "Automatyczne konto obserwatora"
#: src/Module/Moderation/Summary.php:55
-msgid "Public Forum Account"
-msgstr "Publiczne konto na forum"
+msgid "Public Group Account"
+msgstr ""
#: src/Module/Moderation/Summary.php:56
msgid "Automatic Friend Account"
@@ -7949,8 +8390,8 @@ msgid "Blog Account"
msgstr "Konto bloga"
#: src/Module/Moderation/Summary.php:58
-msgid "Private Forum Account"
-msgstr "Prywatne konto na forum"
+msgid "Private Group Account"
+msgstr ""
#: src/Module/Moderation/Summary.php:78
msgid "Registered users"
@@ -8260,11 +8701,11 @@ msgstr "Powiadomienia domowe"
msgid "Show unread"
msgstr "Pokaż nieprzeczytane"
-#: src/Module/Notifications/Ping.php:245
+#: src/Module/Notifications/Ping.php:246
msgid "{0} requested registration"
msgstr "{0} wymagana rejestracja"
-#: src/Module/Notifications/Ping.php:254
+#: src/Module/Notifications/Ping.php:255
#, php-format
msgid "{0} and %d others requested registration"
msgstr "{0} i %d innych poprosili o rejestrację"
@@ -8283,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:77
+#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78
msgid "Incomplete request data"
msgstr "Niekompletne dane żądania"
@@ -8294,11 +8735,11 @@ 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:82
+#: src/Module/OAuth/Token.php:83
msgid "Invalid data or unknown client"
msgstr ""
-#: src/Module/OAuth/Token.php:104
+#: src/Module/OAuth/Token.php:108
msgid "Unsupported or missing grant type"
msgstr "Nieobsługiwany lub brakujący typ dotacji"
@@ -8423,21 +8864,21 @@ msgstr ""
msgid "Attributed To: %s
"
msgstr ""
-#: src/Module/Photo.php:129
+#: src/Module/Photo.php:130
msgid "The Photo is not available."
msgstr "Zdjęcie jest niedostępne."
-#: src/Module/Photo.php:154
+#: 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:191
+#: 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:193
+#: src/Module/Photo.php:194
#, php-format
msgid "Invalid photo with id %s."
msgstr "Nieprawidłowe zdjęcie z identyfikatorem %s."
@@ -8478,7 +8919,7 @@ msgstr "Usuń pozycję znacznika"
msgid "Select a tag to remove: "
msgstr "Wybierz znacznik do usunięcia: "
-#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:178
+#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180
#: src/Module/Settings/TwoFactor/Trusted.php:144
msgid "Remove"
msgstr "Usuń"
@@ -8489,20 +8930,20 @@ msgstr "Brak kontaktów."
#: 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
+#: 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:1094 src/Protocol/OStatus.php:1012
+#: 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:1097 src/Protocol/OStatus.php:1016
+#: src/Protocol/Feed.php:1105 src/Protocol/OStatus.php:1018
#, php-format
msgid "%s's comments"
msgstr "komentarze %s"
@@ -8532,7 +8973,7 @@ msgstr "Serwer nie może teraz przyjąć nowego pliku, skontaktuj się z adminis
msgid "Image file is empty."
msgstr "Plik obrazka jest pusty."
-#: src/Module/Profile/Photos.php:358
+#: src/Module/Profile/Photos.php:356
msgid "View Album"
msgstr "Zobacz album"
@@ -8547,7 +8988,7 @@ msgid ""
"class=\"btn btn-sm pull-right\">Cancel"
msgstr "Obecnie przeglądasz swój profil jako %s Anuluj"
-#: src/Module/Profile/Profile.php:167 src/Module/Settings/Account.php:575
+#: src/Module/Profile/Profile.php:167
msgid "Full Name:"
msgstr "Imię i nazwisko:"
@@ -8568,12 +9009,12 @@ msgid "Birthday:"
msgstr "Urodziny:"
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
msgid "Age: "
msgstr "Wiek: "
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -8583,13 +9024,13 @@ msgstr[2] "%d lat"
msgstr[3] "%d lat"
#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:246
+#: src/Module/Settings/Profile/Index.php:284
msgid "Description:"
msgstr "Opis:"
#: src/Module/Profile/Profile.php:261
-msgid "Forums:"
-msgstr "Fora:"
+msgid "Groups:"
+msgstr ""
#: src/Module/Profile/Profile.php:273
msgid "View profile as:"
@@ -8759,7 +9200,7 @@ msgid "Please repeat your e-mail address:"
msgstr "Powtórz swój adres e-mail:"
#: src/Module/Register.php:162 src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:566
+#: src/Module/Settings/Account.php:567
msgid "New Password:"
msgstr "Nowe hasło:"
@@ -8768,7 +9209,7 @@ msgid "Leave empty for an auto generated password."
msgstr "Pozostaw puste dla wygenerowanego automatycznie hasła."
#: src/Module/Register.php:163 src/Module/Security/PasswordTooLong.php:101
-#: src/Module/Settings/Account.php:567
+#: src/Module/Settings/Account.php:568
msgid "Confirm:"
msgstr "Potwierdź:"
@@ -8795,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:154
+#: 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:154
+#: 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."
@@ -8986,24 +9427,24 @@ msgid "Update Password"
msgstr ""
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: src/Module/Settings/Account.php:569
msgid "Current Password:"
msgstr "Aktualne hasło:"
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: 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:552
+#: 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:553
+#: src/Module/Settings/Account.php:554
msgid "Password length is limited to 72 characters."
msgstr ""
@@ -9127,99 +9568,99 @@ msgstr "Niepoprawny e-mail."
msgid "Cannot change to that email."
msgstr "Nie można zmienić tego e-maila."
-#: 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
+#: 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:363
+#: 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:382
+#: src/Module/Settings/Account.php:383
msgid "Importing Contacts done"
msgstr "Importowanie kontaktów zakończone"
-#: src/Module/Settings/Account.php:395
+#: 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:412
+#: 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:454
+#: src/Module/Settings/Account.php:455
msgid "Personal Page Subtypes"
msgstr "Podtypy osobistych stron"
-#: src/Module/Settings/Account.php:455
-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:465
+#: src/Module/Settings/Account.php:466
msgid "Account for a personal profile."
msgstr "Konto dla profilu osobistego."
-#: src/Module/Settings/Account.php:472
+#: 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:479
+#: 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:486
+#: src/Module/Settings/Account.php:487
msgid "Account for community discussions."
msgstr "Konto do dyskusji w społeczności."
-#: src/Module/Settings/Account.php:493
+#: 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:500
+#: 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:507
+#: 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:514
+#: 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:519
-msgid "Private Forum [Experimental]"
-msgstr "Prywatne Forum [Eksperymentalne]"
+#: src/Module/Settings/Account.php:520
+msgid "Private Group [Experimental]"
+msgstr ""
-#: src/Module/Settings/Account.php:521
+#: 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:530
+#: src/Module/Settings/Account.php:531
msgid "OpenID:"
msgstr "OpenID:"
-#: src/Module/Settings/Account.php:530
+#: 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:538
+#: 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:538
+#: src/Module/Settings/Account.php:539
#, php-format
msgid ""
"Your profile will be published in this node's local "
@@ -9227,89 +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:544
+#: 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:557
+#: src/Module/Settings/Account.php:558
msgid "Account Settings"
msgstr "Ustawienia konta"
-#: src/Module/Settings/Account.php:558
+#: 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: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: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 "
@@ -9317,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
+#: src/Module/Settings/Account.php:589
msgid "Hide your public content from anonymous viewers"
msgstr ""
-#: src/Module/Settings/Account.php:588
+#: 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:589
+#: 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 "
@@ -9361,233 +9807,241 @@ 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:618
+#: src/Module/Settings/Account.php:620
msgid "Create a desktop notification when:"
msgstr "Utwórz powiadomienia na pulpicie gdy:"
-#: src/Module/Settings/Account.php:619
+#: src/Module/Settings/Account.php:621
msgid "Someone tagged you"
msgstr "Ktoś Cię oznaczył"
-#: src/Module/Settings/Account.php:620
+#: 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:621
+#: src/Module/Settings/Account.php:623
msgid "Someone liked your content"
msgstr "Ktoś polubił Twoje treści"
-#: src/Module/Settings/Account.php:621 src/Module/Settings/Account.php:622
+#: 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:622
+#: src/Module/Settings/Account.php:624
msgid "Someone shared your content"
msgstr "Ktoś udostępnił Twoje treści"
-#: src/Module/Settings/Account.php:623
+#: src/Module/Settings/Account.php:625
msgid "Someone commented in your thread"
msgstr "Ktoś skomentował w Twoim wątku"
-#: src/Module/Settings/Account.php:624
+#: 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:625
+#: 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:627
+#: src/Module/Settings/Account.php:629
msgid "Activate desktop notifications"
msgstr "Aktywuj powiadomienia na pulpicie"
-#: src/Module/Settings/Account.php:627
+#: 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:631
+#: src/Module/Settings/Account.php:633
msgid "Text-only notification emails"
msgstr "E-maile z powiadomieniami tekstowymi"
-#: src/Module/Settings/Account.php:633
+#: 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:637
+#: src/Module/Settings/Account.php:639
msgid "Show detailled notifications"
msgstr "Pokazuj szczegółowe powiadomienia"
-#: src/Module/Settings/Account.php:639
+#: 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:643
+#: src/Module/Settings/Account.php:645
msgid "Show notifications of ignored contacts"
msgstr "Pokaż powiadomienia o zignorowanych kontaktach"
-#: src/Module/Settings/Account.php:645
+#: 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:648
+#: src/Module/Settings/Account.php:650
msgid "Advanced Account/Page Type Settings"
msgstr "Zaawansowane ustawienia konta/rodzaju strony"
-#: src/Module/Settings/Account.php:649
+#: 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:652
+#: src/Module/Settings/Account.php:654
msgid "Import Contacts"
msgstr "Import kontaktów"
-#: src/Module/Settings/Account.php:653
+#: 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:654
+#: src/Module/Settings/Account.php:656
msgid "Upload File"
msgstr "Prześlij plik"
-#: src/Module/Settings/Account.php:657
+#: src/Module/Settings/Account.php:659
msgid "Relocate"
msgstr "Przeniesienie"
-#: src/Module/Settings/Account.php:658
+#: 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:659
+#: src/Module/Settings/Account.php:661
msgid "Resend relocate message to contacts"
msgstr "Wyślij ponownie przenieść wiadomości do kontaktów"
@@ -9796,224 +10250,250 @@ msgstr "Przenieś do katalogu"
msgid "Move to folder:"
msgstr "Przenieś do katalogu:"
-#: src/Module/Settings/Delegation.php:52
+#: src/Module/Settings/Delegation.php:54
msgid "Delegation successfully granted."
msgstr "Delegacja została pomyślnie przyznana."
-#: src/Module/Settings/Delegation.php:54
+#: 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:58
+#: src/Module/Settings/Delegation.php:60
msgid "Delegation successfully revoked."
msgstr "Delegacja została pomyślnie odwołana."
-#: src/Module/Settings/Delegation.php:80
-#: src/Module/Settings/Delegation.php:102
+#: 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:94
+#: src/Module/Settings/Delegation.php:96
msgid "Delegate user not found."
msgstr "Nie znaleziono delegowanego użytkownika."
-#: src/Module/Settings/Delegation.php:142
+#: src/Module/Settings/Delegation.php:144
msgid "No parent user"
msgstr "Brak nadrzędnego użytkownika"
-#: src/Module/Settings/Delegation.php:153
-#: src/Module/Settings/Delegation.php:164
+#: 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:161
+#: src/Module/Settings/Delegation.php:163
msgid "Additional Accounts"
msgstr "Dodatkowe konta"
-#: src/Module/Settings/Delegation.php:162
+#: 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:163
+#: src/Module/Settings/Delegation.php:165
msgid "Register an additional account"
msgstr "Zarejestruj dodatkowe konto"
-#: src/Module/Settings/Delegation.php:167
+#: 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:171
+#: src/Module/Settings/Delegation.php:173
msgid "Delegates"
msgstr "Oddeleguj"
-#: src/Module/Settings/Delegation.php:173
+#: 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:174
+#: src/Module/Settings/Delegation.php:176
msgid "Existing Page Delegates"
msgstr "Obecni delegaci stron"
-#: src/Module/Settings/Delegation.php:176
+#: src/Module/Settings/Delegation.php:178
msgid "Potential Delegates"
msgstr "Potencjalni delegaci"
-#: src/Module/Settings/Delegation.php:179
+#: src/Module/Settings/Delegation.php:181
msgid "Add"
msgstr "Dodaj"
-#: src/Module/Settings/Delegation.php:180
+#: src/Module/Settings/Delegation.php:182
msgid "No entries."
msgstr "Brak wpisów."
-#: src/Module/Settings/Display.php:137
+#: 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:177
+#: src/Module/Settings/Display.php:186
#, php-format
msgid "%s - (Unsupported)"
msgstr "%s - (Nieobsługiwane)"
-#: src/Module/Settings/Display.php:212
+#: src/Module/Settings/Display.php:221
msgid "No preview"
msgstr ""
-#: src/Module/Settings/Display.php:213
+#: src/Module/Settings/Display.php:222
msgid "No image"
msgstr ""
-#: src/Module/Settings/Display.php:214
+#: src/Module/Settings/Display.php:223
msgid "Small Image"
msgstr ""
-#: src/Module/Settings/Display.php:215
+#: src/Module/Settings/Display.php:224
msgid "Large Image"
msgstr ""
-#: src/Module/Settings/Display.php:246
+#: src/Module/Settings/Display.php:259
msgid "Display Settings"
msgstr "Ustawienia wyglądu"
-#: src/Module/Settings/Display.php:248
+#: src/Module/Settings/Display.php:261
msgid "General Theme Settings"
msgstr "Ogólne ustawienia motywu"
-#: src/Module/Settings/Display.php:249
+#: src/Module/Settings/Display.php:262
msgid "Custom Theme Settings"
msgstr "Niestandardowe ustawienia motywów"
-#: src/Module/Settings/Display.php:250
+#: src/Module/Settings/Display.php:263
msgid "Content Settings"
msgstr "Ustawienia zawartości"
-#: src/Module/Settings/Display.php:251 view/theme/duepuntozero/config.php:86
+#: 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:257
+#: src/Module/Settings/Display.php:265
+msgid "Timelines"
+msgstr ""
+
+#: src/Module/Settings/Display.php:272
msgid "Display Theme:"
msgstr "Wyświetl motyw:"
-#: src/Module/Settings/Display.php:258
+#: src/Module/Settings/Display.php:273
msgid "Mobile Theme:"
msgstr "Motyw dla urządzeń mobilnych:"
-#: src/Module/Settings/Display.php:261
+#: 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:261 src/Module/Settings/Display.php:262
+#: 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:262
+#: 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:263
+#: 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:263
+#: 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:264
+#: src/Module/Settings/Display.php:279
msgid "Display emoticons"
msgstr "Wyświetl emotikony"
-#: src/Module/Settings/Display.php:264
+#: 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:265
+#: src/Module/Settings/Display.php:280
msgid "Infinite scroll"
msgstr "Nieskończone przewijanie"
-#: src/Module/Settings/Display.php:265
+#: 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:266
+#: src/Module/Settings/Display.php:281
msgid "Enable Smart Threading"
msgstr "Włącz inteligentne wątkowanie"
-#: src/Module/Settings/Display.php:266
+#: 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:267
+#: src/Module/Settings/Display.php:282
msgid "Display the Dislike feature"
msgstr "Wyświetl funkcję \"Nie lubię\""
-#: src/Module/Settings/Display.php:267
+#: 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:268
+#: src/Module/Settings/Display.php:283
msgid "Display the resharer"
msgstr "Wyświetl udostępniającego"
-#: src/Module/Settings/Display.php:268
+#: 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:269
+#: src/Module/Settings/Display.php:284
msgid "Stay local"
msgstr "Pozostań lokalny"
-#: src/Module/Settings/Display.php:269
+#: 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:270
+#: src/Module/Settings/Display.php:285
msgid "Link preview mode"
msgstr ""
-#: src/Module/Settings/Display.php:270
+#: 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:272
+#: 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/Display.php:273
+#: 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 "Dodatkowe funkcje"
@@ -10026,155 +10506,151 @@ msgstr "Powiązane aplikacje"
msgid "Remove authorization"
msgstr "Odwołaj upoważnienie"
-#: src/Module/Settings/Profile/Index.php:84
-msgid "Profile Name is required."
-msgstr "Nazwa profilu jest wymagana."
+#: src/Module/Settings/Profile/Index.php:116
+msgid "Display Name is required."
+msgstr ""
-#: src/Module/Settings/Profile/Index.php:134
+#: 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:175
-#: src/Module/Settings/Profile/Index.php:195
+#: src/Module/Settings/Profile/Index.php:205
+#: src/Module/Settings/Profile/Index.php:226
msgid "Label:"
msgstr "Etykieta:"
-#: src/Module/Settings/Profile/Index.php:176
-#: src/Module/Settings/Profile/Index.php:196
+#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:227
msgid "Value:"
msgstr "Wartość:"
-#: src/Module/Settings/Profile/Index.php:186
-#: src/Module/Settings/Profile/Index.php:206
+#: 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:187
-#: src/Module/Settings/Profile/Index.php:207
+#: 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:193
+#: src/Module/Settings/Profile/Index.php:224
msgid "Add a new profile field"
msgstr "Dodaj nowe pole profilu"
-#: src/Module/Settings/Profile/Index.php:216
+#: 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:218
+#: 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:228
+#: src/Module/Settings/Profile/Index.php:255
msgid "Profile Actions"
msgstr "Akcje profilowe"
-#: src/Module/Settings/Profile/Index.php:229
+#: src/Module/Settings/Profile/Index.php:256
msgid "Edit Profile Details"
msgstr "Edytuj informacje o profilu"
-#: src/Module/Settings/Profile/Index.php:231
+#: src/Module/Settings/Profile/Index.php:258
msgid "Change Profile Photo"
msgstr "Zmień zdjęcie profilowe"
-#: src/Module/Settings/Profile/Index.php:236
+#: src/Module/Settings/Profile/Index.php:261
msgid "Profile picture"
msgstr "Zdjęcie profilowe"
-#: src/Module/Settings/Profile/Index.php:237
+#: src/Module/Settings/Profile/Index.php:262
msgid "Location"
msgstr "Lokalizacja"
-#: src/Module/Settings/Profile/Index.php:238 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 "Różne"
-#: src/Module/Settings/Profile/Index.php:239
+#: src/Module/Settings/Profile/Index.php:264
msgid "Custom Profile Fields"
msgstr "Niestandardowe pola profilu"
-#: src/Module/Settings/Profile/Index.php:241 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:245
-msgid "Display name:"
-msgstr "Nazwa wyświetlana:"
-
-#: src/Module/Settings/Profile/Index.php:248
-msgid "Street Address:"
-msgstr "Ulica:"
-
-#: src/Module/Settings/Profile/Index.php:249
-msgid "Locality/City:"
-msgstr "Miasto:"
-
-#: src/Module/Settings/Profile/Index.php:250
-msgid "Region/State:"
-msgstr "Województwo/Stan:"
-
-#: src/Module/Settings/Profile/Index.php:251
-msgid "Postal/Zip Code:"
-msgstr "Kod pocztowy:"
-
-#: src/Module/Settings/Profile/Index.php:252
-msgid "Country:"
-msgstr "Kraj:"
-
-#: src/Module/Settings/Profile/Index.php:254
-msgid "XMPP (Jabber) address:"
-msgstr "Adres XMPP (Jabber):"
-
-#: src/Module/Settings/Profile/Index.php:254
-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:255
-msgid "Matrix (Element) address:"
-msgstr "Adres Matrix (Element):"
-
-#: src/Module/Settings/Profile/Index.php:255
-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:256
-msgid "Homepage URL:"
-msgstr "Adres URL strony domowej:"
-
-#: src/Module/Settings/Profile/Index.php:257
-msgid "Public Keywords:"
-msgstr "Publiczne słowa kluczowe:"
-
-#: src/Module/Settings/Profile/Index.php:257
-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:258
-msgid "Private Keywords:"
-msgstr "Prywatne słowa kluczowe:"
-
-#: src/Module/Settings/Profile/Index.php:258
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Używany do wyszukiwania profili, niepokazywany innym)"
-
-#: src/Module/Settings/Profile/Index.php:259
+#: src/Module/Settings/Profile/Index.php:266
#, php-format
msgid ""
"Custom fields appear on your profile page.
\n"
"\t\t\t\tYou can use BBCodes in the field values.
\n"
"\t\t\t\tReorder by dragging the field title.
\n"
"\t\t\t\tEmpty the label field to remove a custom field.
\n"
-"\t\t\t\tNon-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\tMożesz użyć BBCodes w wartościach pól.
\n\t\t\t\tZmieniaj kolejność, przeciągając tytuł pola.
\n\t\t\t\tOpróżnij pole etykiety, aby usunąć pole niestandardowe.
\n\t\t\t\tPola niepubliczne mogą być widoczne tylko dla wybranych kontaktów Friendica lub kontaktów Friendica w wybranych grupach.
"
+"\t\t\t\tNon-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 "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
@@ -10286,6 +10762,42 @@ msgstr "Spowoduje to całkowite usunięcie Twojego konta. Po wykonaniu tej czynn
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
@@ -10607,20 +11119,41 @@ msgid ""
" e.g. Mastodon."
msgstr "Wyeksportuj listę kont, które obserwujesz, jako plik CSV. Kompatybilny np. Mastodont."
+#: 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 "Not Found"
+msgid ""
+"This node has blocked the top-level author or the author of the shared post."
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"
-"
"
+"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
@@ -10632,7 +11165,7 @@ msgstr "Ślad stosu:"
msgid "Exception thrown in %s:%d"
msgstr "Zgłoszono wyjątek %s:%d"
-#: src/Module/Tos.php:57 src/Module/Tos.php:106
+#: 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"
@@ -10645,14 +11178,14 @@ 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:107
+#: 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:108
+#: 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"
@@ -10663,11 +11196,11 @@ msgid ""
"from the nodes of the communication partners."
msgstr ""
-#: src/Module/Tos.php:62 src/Module/Tos.php:105
+#: src/Module/Tos.php:63 src/Module/Tos.php:106
msgid "Privacy Statement"
msgstr "Oświadczenie o prywatności"
-#: src/Module/Tos.php:102
+#: src/Module/Tos.php:103
msgid "Rules"
msgstr ""
@@ -10675,6 +11208,10 @@ msgstr ""
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."
@@ -10723,11 +11260,11 @@ msgstr "Błąd! Brak danych wersji w pliku! To nie jest plik konta Friendica?"
msgid "User '%s' already exists on this server!"
msgstr "Użytkownik '%s' już istnieje na tym serwerze!"
-#: src/Module/User/Import.php:263
+#: src/Module/User/Import.php:267
msgid "User creation error"
msgstr "Błąd tworzenia użytkownika"
-#: src/Module/User/Import.php:312
+#: src/Module/User/Import.php:316
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
@@ -10736,11 +11273,11 @@ 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:361
+#: src/Module/User/Import.php:365
msgid "User profile creation error"
msgstr "Błąd tworzenia profilu użytkownika"
-#: src/Module/User/Import.php:412
+#: 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"
@@ -10874,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?"
@@ -11389,199 +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:135
+#: src/Object/Post.php:138
msgid "Private Message"
msgstr "Wiadomość prywatna"
-#: src/Object/Post.php:139
+#: src/Object/Post.php:142
msgid "Public Message"
msgstr "Wiadomość publiczna"
-#: src/Object/Post.php:143
+#: src/Object/Post.php:146
msgid "Unlisted Message"
msgstr "Wiadomość niepubliczna"
-#: src/Object/Post.php:178
+#: src/Object/Post.php:181
msgid "This entry was edited"
msgstr "Ten wpis został zedytowany"
-#: src/Object/Post.php:206
+#: 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:265
+#: src/Object/Post.php:268
#, php-format
msgid "Block %s"
msgstr "Zablokuj %s"
-#: src/Object/Post.php:270
+#: src/Object/Post.php:273
#, php-format
msgid "Ignore %s"
msgstr ""
-#: src/Object/Post.php:275
+#: 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:310
+#: src/Object/Post.php:333
msgid "I will attend"
msgstr "Będę uczestniczyć"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I will not attend"
msgstr "Nie będę uczestniczyć"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I might attend"
msgstr "Mogę wziąć udział"
-#: src/Object/Post.php:340
+#: src/Object/Post.php:363
msgid "Ignore thread"
msgstr "Zignoruj wątek"
-#: src/Object/Post.php:341
+#: src/Object/Post.php:364
msgid "Unignore thread"
msgstr "Przestań ignorować wątek"
-#: src/Object/Post.php:342
+#: src/Object/Post.php:365
msgid "Toggle ignore status"
msgstr "Przełącz stan ignorowania"
-#: src/Object/Post.php:352
+#: src/Object/Post.php:375
msgid "Add star"
msgstr "Dodaj gwiazdkę"
-#: src/Object/Post.php:353
+#: src/Object/Post.php:376
msgid "Remove star"
msgstr "Usuń gwiazdkę"
-#: src/Object/Post.php:354
+#: src/Object/Post.php:377
msgid "Toggle star status"
msgstr "Przełącz stan gwiazdy"
-#: src/Object/Post.php:365
+#: src/Object/Post.php:388
msgid "Pin"
msgstr "Przypnij"
-#: src/Object/Post.php:366
+#: src/Object/Post.php:389
msgid "Unpin"
msgstr "Odepnij"
-#: src/Object/Post.php:367
+#: src/Object/Post.php:390
msgid "Toggle pin status"
msgstr "Przełącz stan podpięcia"
-#: src/Object/Post.php:370
+#: src/Object/Post.php:393
msgid "Pinned"
msgstr "Przypięty"
-#: src/Object/Post.php:375
+#: src/Object/Post.php:398
msgid "Add tag"
msgstr "Dodaj znacznik"
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote share this"
msgstr "Cytuj udostępnij to"
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote Share"
msgstr "Udostępnienie cytatu"
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare this"
msgstr "Udostępnij to dalej"
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare"
msgstr "Udostępnij dalej"
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Cancel your Reshare"
msgstr "Anuluj swoje dalsze udostępnianie"
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Unshare"
msgstr "Przestań udostępniać"
-#: src/Object/Post.php:443
+#: src/Object/Post.php:466
#, php-format
msgid "%s (Received %s)"
msgstr "%s (Otrzymano %s)"
-#: src/Object/Post.php:448
+#: src/Object/Post.php:472
msgid "Comment this item on your system"
msgstr "Skomentuj ten element w swoim systemie"
-#: src/Object/Post.php:448
+#: src/Object/Post.php:472
msgid "Remote comment"
msgstr "Zdalny komentarz"
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via ..."
msgstr "Udostępnij poprzez..."
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via external services"
msgstr "Udostępnij za pośrednictwem usług zewnętrznych"
-#: src/Object/Post.php:498
+#: src/Object/Post.php:523
msgid "to"
msgstr "do"
-#: src/Object/Post.php:499
+#: src/Object/Post.php:524
msgid "via"
msgstr "przez"
-#: src/Object/Post.php:500
+#: src/Object/Post.php:525
msgid "Wall-to-Wall"
msgstr "Tablica-w-Tablicę"
-#: src/Object/Post.php:501
+#: src/Object/Post.php:526
msgid "via Wall-To-Wall:"
msgstr "przez Tablica-w-Tablicę:"
-#: src/Object/Post.php:545
+#: src/Object/Post.php:573
#, php-format
msgid "Reply to %s"
msgstr "Odpowiedź %s"
-#: src/Object/Post.php:548
+#: src/Object/Post.php:576
msgid "More"
msgstr "Więcej"
-#: src/Object/Post.php:566
+#: src/Object/Post.php:595
msgid "Notifier task is pending"
msgstr "Zadanie Notifier jest w toku"
-#: src/Object/Post.php:567
+#: src/Object/Post.php:596
msgid "Delivery to remote servers is pending"
msgstr "Trwa przesyłanie do serwerów zdalnych"
-#: src/Object/Post.php:568
+#: src/Object/Post.php:597
msgid "Delivery to remote servers is underway"
msgstr "Trwa dostawa do serwerów zdalnych"
-#: src/Object/Post.php:569
+#: 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:570
+#: src/Object/Post.php:599
msgid "Delivery to remote servers is done"
msgstr "Trwa dostarczanie do zdalnych serwerów"
-#: src/Object/Post.php:590
+#: src/Object/Post.php:619
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
@@ -11590,50 +12136,50 @@ msgstr[1] "%d komentarze"
msgstr[2] "%d komentarzy"
msgstr[3] "%d komentarzy"
-#: src/Object/Post.php:591
+#: src/Object/Post.php:620
msgid "Show more"
msgstr "Pokaż więcej"
-#: src/Object/Post.php:592
+#: src/Object/Post.php:621
msgid "Show fewer"
msgstr "Pokaż mniej"
-#: src/Object/Post.php:628
+#: src/Object/Post.php:657
#, php-format
msgid "Reshared by: %s"
msgstr ""
-#: src/Object/Post.php:633
+#: src/Object/Post.php:662
#, php-format
msgid "Viewed by: %s"
msgstr ""
-#: src/Object/Post.php:638
+#: src/Object/Post.php:667
#, php-format
msgid "Liked by: %s"
msgstr ""
-#: src/Object/Post.php:643
+#: src/Object/Post.php:672
#, php-format
msgid "Disliked by: %s"
msgstr ""
-#: src/Object/Post.php:648
+#: src/Object/Post.php:677
#, php-format
msgid "Attended by: %s"
msgstr ""
-#: src/Object/Post.php:653
+#: src/Object/Post.php:682
#, php-format
msgid "Maybe attended by: %s"
msgstr ""
-#: src/Object/Post.php:658
+#: src/Object/Post.php:687
#, php-format
msgid "Not attended by: %s"
msgstr ""
-#: src/Object/Post.php:663
+#: src/Object/Post.php:692
#, php-format
msgid "Reacted with %s by: %s"
msgstr ""
@@ -11642,21 +12188,21 @@ msgstr ""
msgid "(no subject)"
msgstr "(bez tematu)"
-#: src/Protocol/OStatus.php:1388
+#: src/Protocol/OStatus.php:1390
#, php-format
msgid "%s is now following %s."
msgstr "%s zaczął(-ęła) obserwować %s."
-#: src/Protocol/OStatus.php:1389
+#: src/Protocol/OStatus.php:1391
msgid "following"
msgstr "następujący"
-#: src/Protocol/OStatus.php:1392
+#: src/Protocol/OStatus.php:1394
#, php-format
msgid "%s stopped following %s."
msgstr "%s przestał(a) obserwować %s."
-#: src/Protocol/OStatus.php:1393
+#: src/Protocol/OStatus.php:1395
msgid "stopped following"
msgstr "przestał śledzić"
@@ -12014,8 +12560,8 @@ msgid "Textareas font size"
msgstr "Rozmiar czcionki obszarów tekstowych"
#: view/theme/vier/config.php:91
-msgid "Comma separated list of helper forums"
-msgstr "Lista oddzielonych przecinkami forów pomocniczych"
+msgid "Comma separated list of helper groups"
+msgstr ""
#: view/theme/vier/config.php:131
msgid "don't show"
diff --git a/view/lang/pl/strings.php b/view/lang/pl/strings.php
index ed93ce1fc8..e0c3e38289 100644
--- a/view/lang/pl/strings.php
+++ b/view/lang/pl/strings.php
@@ -316,12 +316,6 @@ $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['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).';
@@ -340,14 +334,32 @@ $a->strings['Stored because of a child post to complete this thread.'] = 'Zapisa
$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['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';
@@ -356,8 +368,6 @@ $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';
@@ -365,8 +375,6 @@ $a->strings['Display membership date in profile'] = 'Wyświetla datę członkost
$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['Forums'] = 'Fora';
-$a->strings['External link to forum'] = 'Zewnętrzny link do forum';
$a->strings['show less'] = 'pokaż mniej';
$a->strings['show more'] = 'pokaż więcej';
$a->strings['event'] = 'wydarzenie';
@@ -387,7 +395,6 @@ $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ę';
@@ -483,7 +490,6 @@ $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';
@@ -644,6 +650,8 @@ $a->strings['Sep'] = 'Wrz';
$a->strings['Oct'] = 'Paź';
$a->strings['Nov'] = 'Lis';
$a->strings['Dec'] = 'Gru';
+$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!';
@@ -688,9 +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['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.';
@@ -726,16 +736,6 @@ $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';
@@ -819,7 +819,6 @@ $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,
@@ -1016,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.';
@@ -1099,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';
@@ -1142,8 +1138,6 @@ $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ę.';
@@ -1225,7 +1219,6 @@ $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';
@@ -1256,6 +1249,13 @@ $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.',
@@ -1273,7 +1273,6 @@ $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';
@@ -1291,7 +1290,6 @@ $a->strings['you are a fan of'] = 'jesteś fanem';
$a->strings['Pending outgoing contact request'] = 'Oczekujące żądanie kontaktu wychodzącego';
$a->strings['Pending incoming contact request'] = 'Oczekujące żądanie kontaktu przychodzącego';
$a->strings['Visit %s\'s profile [%s]'] = 'Obejrzyj %s\'s profil [%s]';
-$a->strings['Contact not found.'] = 'Nie znaleziono kontaktu.';
$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';
@@ -1299,7 +1297,6 @@ $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)'] = [
@@ -1405,7 +1402,6 @@ $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.';
@@ -1416,29 +1412,13 @@ $a->strings['Unfollowing is currently not supported by your network.'] = 'Brak o
$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['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['Community option not available.'] = 'Opcja wspólnotowa jest niedostępna.';
+$a->strings['Not available.'] = 'Niedostępne.';
$a->strings['Own Contacts'] = 'Własne kontakty';
$a->strings['Include'] = 'Zawiera';
$a->strings['Hide'] = 'Ukryj';
-$a->strings['No results.'] = 'Brak wyników.';
-$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['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';
@@ -1527,26 +1507,6 @@ $a->strings['Please visit Friendi.ca to learn m
$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:';
@@ -1613,7 +1573,6 @@ $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 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['Unable to follow this item.'] = 'Nie można obserwować tego elementu.';
$a->strings['System down for maintenance'] = 'System wyłączony w celu konserwacji';
@@ -1636,13 +1595,10 @@ $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'] = [
@@ -1742,10 +1698,8 @@ $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['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['Registered users'] = 'Zarejestrowani użytkownicy';
$a->strings['Pending registrations'] = 'Oczekujące rejestracje';
$a->strings['%s user blocked'] = [
@@ -1900,7 +1854,6 @@ $a->strings['%d year old'] = [
3 => '%d lat',
];
$a->strings['Description:'] = 'Opis:';
-$a->strings['Forums:'] = 'Fora:';
$a->strings['View profile as:'] = 'Wyświetl profil jako:';
$a->strings['View as'] = 'Zobacz jako';
$a->strings['Profile unavailable.'] = 'Profil niedostępny.';
@@ -2017,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".';
@@ -2026,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.';
@@ -2041,6 +1992,7 @@ $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:';
@@ -2195,7 +2147,6 @@ $a->strings['Beginning of week:'] = 'Początek tygodnia:';
$a->strings['Additional Features'] = 'Dodatkowe funkcje';
$a->strings['Connected Apps'] = 'Powiązane aplikacje';
$a->strings['Remove authorization'] = 'Odwołaj upoważnienie';
-$a->strings['Profile Name is required.'] = 'Nazwa profilu jest wymagana.';
$a->strings['Profile couldn\'t be updated.'] = 'Profil nie mógł zostać zaktualizowany.';
$a->strings['Label:'] = 'Etykieta:';
$a->strings['Value:'] = 'Wartość:';
@@ -2210,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:';
@@ -2225,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';
@@ -2356,6 +2297,7 @@ $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['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.';
@@ -2398,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';
@@ -2634,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/ru/messages.po b/view/lang/ru/messages.po
index 3519e2bd42..83a1480ce5 100644
--- a/view/lang/ru/messages.po
+++ b/view/lang/ru/messages.po
@@ -24,7 +24,7 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-04-23 21:21+0000\n"
+"POT-Creation-Date: 2023-09-18 05:30+0000\n"
"PO-Revision-Date: 2011-05-05 10:19+0000\n"
"Last-Translator: Alexander An , 2020-2023\n"
"Language-Team: Russian (http://app.transifex.com/Friendica/friendica/language/ru/)\n"
@@ -54,26 +54,26 @@ msgstr "Не удалось получить запись."
msgid "Empty post discarded."
msgstr "Пустое сообщение отбрасывается."
-#: mod/item.php:411 src/Module/Admin/Themes/Details.php:39
+#: 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:435 mod/message.php:68 mod/message.php:114 mod/notes.php:45
-#: mod/photos.php:152 mod/photos.php:669 src/Model/Event.php:522
+#: 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:52
+#: 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/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/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
@@ -83,9 +83,9 @@ msgstr "Пункт не найден."
#: 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:69
-#: src/Module/Settings/Display.php:69 src/Module/Settings/Display.php:151
+#: 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
@@ -231,90 +231,90 @@ msgstr "\n\t\t\tВаши данные для входа ниже:\n\n\t\t\tАд
msgid "Your password has been changed at %s"
msgstr "Ваш пароль был изменен %s"
-#: mod/message.php:46 mod/message.php:129 src/Content/Nav.php:319
+#: 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:316 view/theme/frio/theme.php:241
+#: 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:182 mod/message.php:287 src/Module/Profile/UnkMail.php:145
+#: 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:191 src/Module/Profile/UnkMail.php:151
+#: mod/message.php:190 src/Module/Profile/UnkMail.php:151
msgid "Send Private Message"
msgstr "Отправить личное сообщение"
-#: mod/message.php:192 mod/message.php:347
+#: mod/message.php:191 mod/message.php:346
msgid "To:"
msgstr "Кому:"
-#: mod/message.php:193 mod/message.php:348
+#: mod/message.php:192 mod/message.php:347
msgid "Subject:"
msgstr "Тема:"
-#: mod/message.php:197 mod/message.php:351 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:200 mod/message.php:355 src/Content/Conversation.php:360
+#: 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:201 mod/message.php:356 src/Module/Post/Edit.php:135
+#: 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:202 mod/message.php:358 mod/photos.php:1291
-#: src/Content/Conversation.php:389 src/Content/Conversation.php:733
-#: src/Module/Item/Compose.php:204 src/Module/Post/Edit.php:145
-#: src/Module/Profile/UnkMail.php:154 src/Object/Post.php:550
+#: 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:203 mod/message.php:357 mod/photos.php:702
-#: mod/photos.php:819 mod/photos.php:1097 mod/photos.php:1138
-#: mod/photos.php:1194 mod/photos.php:1268
+#: 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:339
+#: 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
@@ -322,59 +322,64 @@ msgstr "Пожалуйста, подождите"
#: 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:230 src/Object/Post.php:1063
+#: 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:224
+#: mod/message.php:223
msgid "No messages."
msgstr "Нет сообщений."
-#: mod/message.php:280
+#: mod/message.php:279
msgid "Message not available."
msgstr "Сообщение не доступно."
-#: mod/message.php:324
+#: mod/message.php:323
msgid "Delete message"
msgstr "Удалить сообщение"
-#: mod/message.php:326 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:341 mod/message.php:454
+#: mod/message.php:340 mod/message.php:453
msgid "Delete conversation"
msgstr "Удалить историю общения"
-#: mod/message.php:343
+#: 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: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"
@@ -391,14 +396,14 @@ msgstr "Личные заметки"
msgid "Personal notes are visible only by yourself."
msgstr "Личные заметки видны только вам."
-#: mod/notes.php:57 src/Content/Text/HTML.php:857
+#: 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:577
-#: src/Model/Event.php:514 src/Model/Profile.php:234
+#: 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
@@ -410,22 +415,22 @@ msgid "User not found."
msgstr "Пользователь не найден."
#: mod/photos.php:106 src/Module/BaseProfile.php:68
-#: src/Module/Profile/Photos.php:399
+#: src/Module/Profile/Photos.php:379
msgid "Photo Albums"
msgstr "Фотоальбомы"
-#: mod/photos.php:107 src/Module/Profile/Photos.php:400
-#: src/Module/Profile/Photos.php:420
+#: mod/photos.php:107 src/Module/Profile/Photos.php:380
+#: src/Module/Profile/Photos.php:400
msgid "Recent Photos"
msgstr "Последние фото"
-#: mod/photos.php:109 mod/photos.php:867 src/Module/Profile/Photos.php:402
-#: src/Module/Profile/Photos.php:422
+#: 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:121 src/Module/BaseSettings.php:74
-#: src/Module/Profile/Photos.php:383
+#: mod/photos.php:121 src/Module/BaseSettings.php:72
+#: src/Module/Profile/Photos.php:363
msgid "everybody"
msgstr "все"
@@ -437,72 +442,72 @@ msgstr "Информация о контакте недоступна"
msgid "Album not found."
msgstr "Альбом не найден."
-#: mod/photos.php:242
+#: mod/photos.php:244
msgid "Album successfully deleted"
msgstr "Альбом успешно удалён"
-#: mod/photos.php:244
+#: mod/photos.php:246
msgid "Album was empty."
msgstr "Альбом был пуст."
-#: mod/photos.php:276
+#: mod/photos.php:277
msgid "Failed to delete the photo."
msgstr "Не получилось удалить фото."
-#: mod/photos.php:544
+#: mod/photos.php:545
msgid "a photo"
msgstr "фото"
-#: mod/photos.php:544
+#: 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:581 src/Module/Conversation/Community.php:188
-#: src/Module/Directory.php:48 src/Module/Profile/Photos.php:315
+#: 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:586
+#: mod/photos.php:587
msgid "No photos selected"
msgstr "Не выбрано фото."
-#: mod/photos.php:718
+#: mod/photos.php:721
#, php-format
msgid "The maximum accepted image size is %s"
msgstr "Максимально допустимый размер изображения %s"
-#: mod/photos.php:725
+#: mod/photos.php:728
msgid "Upload Photos"
msgstr "Загрузить фото"
-#: mod/photos.php:729 mod/photos.php:815
+#: mod/photos.php:732 mod/photos.php:820
msgid "New album name: "
msgstr "Название нового альбома: "
-#: mod/photos.php:730
+#: mod/photos.php:733
msgid "or select existing album:"
msgstr "или выберите имеющийся альбом:"
-#: mod/photos.php:731
+#: mod/photos.php:734
msgid "Do not show a status post for this upload"
msgstr "Не показывать статус-сообщение для этой закачки"
-#: mod/photos.php:733 mod/photos.php:1093 src/Content/Conversation.php:391
-#: src/Module/Calendar/Event/Form.php:253 src/Module/Post/Edit.php:182
+#: 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:796
+#: mod/photos.php:801
msgid "Do you really want to delete this photo album and all its photos?"
msgstr "Вы действительно хотите удалить этот альбом и все его фотографии?"
-#: mod/photos.php:797 mod/photos.php:820
+#: mod/photos.php:802 mod/photos.php:825
msgid "Delete Album"
msgstr "Удалить альбом"
-#: mod/photos.php:798 mod/photos.php:899 src/Content/Conversation.php:407
+#: 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
@@ -512,254 +517,271 @@ msgstr "Удалить альбом"
msgid "Cancel"
msgstr "Отмена"
-#: mod/photos.php:824
+#: mod/photos.php:829
msgid "Edit Album"
msgstr "Редактировать альбом"
-#: mod/photos.php:825
+#: mod/photos.php:830
msgid "Drop Album"
msgstr "Удалить альбом"
-#: mod/photos.php:829
+#: mod/photos.php:834
msgid "Show Newest First"
msgstr "Показать новые первыми"
-#: mod/photos.php:831
+#: mod/photos.php:836
msgid "Show Oldest First"
msgstr "Показать старые первыми"
-#: mod/photos.php:852 src/Module/Profile/Photos.php:370
+#: mod/photos.php:857 src/Module/Profile/Photos.php:350
msgid "View Photo"
msgstr "Просмотр фото"
-#: mod/photos.php:885
+#: mod/photos.php:889
msgid "Permission denied. Access to this item may be restricted."
msgstr "Нет разрешения. Доступ к этому элементу ограничен."
-#: mod/photos.php:887
+#: mod/photos.php:891
msgid "Photo not available"
msgstr "Фото недоступно"
-#: mod/photos.php:897
+#: mod/photos.php:901
msgid "Do you really want to delete this photo?"
msgstr "Вы действительно хотите удалить эту фотографию?"
-#: mod/photos.php:898 mod/photos.php:1098
+#: mod/photos.php:902 mod/photos.php:1102
msgid "Delete Photo"
msgstr "Удалить фото"
-#: mod/photos.php:996
+#: mod/photos.php:1000
msgid "View photo"
msgstr "Просмотр фото"
-#: mod/photos.php:998
+#: mod/photos.php:1002
msgid "Edit photo"
msgstr "Редактировать фото"
-#: mod/photos.php:999
+#: mod/photos.php:1003
msgid "Delete photo"
msgstr "Удалить фото"
-#: mod/photos.php:1000
+#: mod/photos.php:1004
msgid "Use as profile photo"
msgstr "Использовать как фото профиля"
-#: mod/photos.php:1007
+#: mod/photos.php:1011
msgid "Private Photo"
msgstr "Закрытое фото"
-#: mod/photos.php:1013
+#: mod/photos.php:1017
msgid "View Full Size"
msgstr "Просмотреть полный размер"
-#: mod/photos.php:1066
+#: mod/photos.php:1070
msgid "Tags: "
msgstr "Ключевые слова: "
-#: mod/photos.php:1069
+#: mod/photos.php:1073
msgid "[Select tags to remove]"
msgstr "[выберите тэги для удаления]"
-#: mod/photos.php:1084
+#: mod/photos.php:1088
msgid "New album name"
msgstr "Название нового альбома"
-#: mod/photos.php:1085
+#: mod/photos.php:1089
msgid "Caption"
msgstr "Подпись"
-#: mod/photos.php:1086
+#: mod/photos.php:1090
msgid "Add a Tag"
msgstr "Добавить тег"
-#: mod/photos.php:1086
+#: 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:1087
+#: mod/photos.php:1091
msgid "Do not rotate"
msgstr "Не поворачивать"
-#: mod/photos.php:1088
+#: mod/photos.php:1092
msgid "Rotate CW (right)"
msgstr "Поворот по часовой стрелке (направо)"
-#: mod/photos.php:1089
+#: mod/photos.php:1093
msgid "Rotate CCW (left)"
msgstr "Поворот против часовой стрелки (налево)"
-#: mod/photos.php:1135 mod/photos.php:1191 mod/photos.php:1265
-#: src/Module/Contact.php:588 src/Module/Item/Compose.php:188
-#: src/Object/Post.php:1060
+#: 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:1137 mod/photos.php:1193 mod/photos.php:1267
-#: src/Object/Post.php:544 src/Object/Post.php:1062
+#: 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:1139 mod/photos.php:1195 mod/photos.php:1269
-#: src/Content/Conversation.php:404 src/Module/Calendar/Event/Form.php:248
-#: src/Module/Item/Compose.php:199 src/Module/Post/Edit.php:165
-#: src/Object/Post.php:1074
+#: 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:1140 src/Content/Conversation.php:359
-#: src/Module/Post/Edit.php:130 src/Object/Post.php:1064
+#: 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:1226 src/Content/Conversation.php:649
-#: src/Object/Post.php:257
+#: mod/photos.php:1236 src/Content/Conversation.php:1464
+#: src/Object/Post.php:260
msgid "Select"
msgstr "Выберите"
-#: mod/photos.php:1227 src/Content/Conversation.php:650
+#: 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:1288 src/Object/Post.php:385
+#: mod/photos.php:1298 src/Object/Post.php:408
msgid "Like"
msgstr "Нравится"
-#: mod/photos.php:1289 src/Object/Post.php:385
+#: mod/photos.php:1299 src/Object/Post.php:408
msgid "I like this (toggle)"
msgstr "Нравится"
-#: mod/photos.php:1290 src/Object/Post.php:386
+#: mod/photos.php:1300 src/Object/Post.php:409
msgid "Dislike"
msgstr "Не нравится"
-#: mod/photos.php:1292 src/Object/Post.php:386
+#: mod/photos.php:1302 src/Object/Post.php:409
msgid "I don't like this (toggle)"
msgstr "Не нравится"
-#: mod/photos.php:1314
+#: mod/photos.php:1324
msgid "Map"
msgstr "Карта"
-#: src/App.php:470
+#: src/App.php:473
msgid "No system theme config value set."
msgstr "Настройки системной темы не установлены."
-#: src/App.php:574
+#: src/App.php:580
msgid "Apologies but the website is unavailable at the moment."
msgstr "Приносим извинения, но этот сервис сейчас недоступен."
-#: src/App/Page.php:247
+#: src/App/Page.php:248
msgid "Delete this item?"
msgstr "Удалить этот элемент?"
-#: src/App/Page.php:248
+#: 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:249
+#: 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 "Like not successful"
-msgstr ""
+msgid "Collapse this author's posts?"
+msgstr "Сворачивать записи этого автора?"
#: src/App/Page.php:252
-msgid "Dislike not successful"
-msgstr ""
+msgid "Ignore this author's server?"
+msgstr "Игнорировать сервер этого автора?"
-#: src/App/Page.php:253
-msgid "Sharing not successful"
-msgstr ""
-
-#: src/App/Page.php:254
-msgid "Attendance unsuccessful"
-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 "Backend error"
-msgstr ""
+msgid "Like not successful"
+msgstr "Ошибка отправки \"мне нравится\""
#: src/App/Page.php:256
-msgid "Network error"
-msgstr ""
+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 "Drop files here to upload"
-msgstr ""
+msgid "Backend error"
+msgstr "Ошибка бэкенда"
#: src/App/Page.php:260
-msgid "Your browser does not support drag and drop file uploads."
-msgstr ""
+msgid "Network error"
+msgstr "Ошибка сети"
-#: src/App/Page.php:261
+#: 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:262
-msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
-msgstr ""
-
-#: src/App/Page.php:263
-msgid "You can't upload files of this type."
-msgstr ""
-
-#: src/App/Page.php:264
-msgid "Server responded with {{statusCode}} code."
-msgstr ""
-
-#: src/App/Page.php:265
-msgid "Cancel upload"
-msgstr ""
+msgstr "Пожалуйста, используйте форму ниже для загрузки файлов"
#: src/App/Page.php:266
-msgid "Upload canceled."
-msgstr ""
+msgid "File is too big ({{filesize}}MiB). Max filesize: {{maxFilesize}}MiB."
+msgstr "Файл слишком большой ({{filesize}}MiB). Ограничение: {{maxFilesize}}MiB."
#: src/App/Page.php:267
-msgid "Are you sure you want to cancel this upload?"
-msgstr ""
+msgid "You can't upload files of this type."
+msgstr "Нельзя загрузить этот тип файла."
#: src/App/Page.php:268
-msgid "Remove file"
-msgstr ""
+msgid "Server responded with {{statusCode}} code."
+msgstr "Сервер ответил с кодом {{statusCode}}."
#: src/App/Page.php:269
-msgid "You can't upload any more files."
-msgstr ""
+msgid "Cancel upload"
+msgstr "Отменить загрузку"
-#: src/App/Page.php:347
+#: 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 "мобильная версия"
@@ -776,33 +798,33 @@ msgstr "Страница не найдена."
msgid "You must be logged in to use addons. "
msgstr "Вы должны войти в систему, чтобы использовать аддоны."
-#: src/BaseModule.php:400
+#: 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:427
+#: src/BaseModule.php:428
msgid "All contacts"
msgstr "Все контакты"
-#: src/BaseModule.php:432 src/Content/Widget.php:239 src/Core/ACL.php:195
-#: src/Module/Contact.php:407 src/Module/PermissionTooltip.php:127
-#: src/Module/PermissionTooltip.php:149
+#: 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:437 src/Content/Widget.php:240
-#: src/Module/Contact.php:408
+#: src/BaseModule.php:438 src/Content/Widget.php:240
+#: src/Module/Contact.php:418
msgid "Following"
msgstr "Ваши подписки"
-#: src/BaseModule.php:442 src/Content/Widget.php:241
-#: src/Module/Contact.php:409
+#: src/BaseModule.php:443 src/Content/Widget.php:241
+#: src/Module/Contact.php:421
msgid "Mutual friends"
msgstr "Взаимные друзья"
-#: src/BaseModule.php:450
+#: src/BaseModule.php:451
msgid "Common"
msgstr "Общее"
@@ -841,17 +863,17 @@ 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
@@ -952,7 +974,7 @@ msgstr "Все операции по обновлению записей вып
msgid "Enter user nickname: "
msgstr "Введите ник пользователя:"
-#: src/Console/User.php:182 src/Model/User.php:663
+#: 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
@@ -1125,393 +1147,526 @@ msgstr "pnut"
#: src/Content/ContactSelector.php:143
msgid "Tumblr"
-msgstr ""
+msgstr "Tumblr"
-#: src/Content/ContactSelector.php:179
+#: 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:218
+#: src/Content/Conversation.php:226
msgid "and"
msgstr "и"
-#: src/Content/Conversation.php:221
+#: src/Content/Conversation.php:229
#, php-format
msgid "and %d other people"
msgstr "и еще %d человек"
-#: src/Content/Conversation.php:227
+#: 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:229
-#, 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:231
-#, php-format
-msgid "%2$s attends."
-msgid_plural "%2$s attend."
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
-
-#: src/Content/Conversation.php:233
-#, php-format
-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:235
-#, php-format
-msgid "%2$s attends maybe."
-msgid_plural "%2$s attend maybe."
-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/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$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:245
+#, php-format
msgid "%2$s reshared this."
msgid_plural "%2$s reshared this."
-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/Content/Conversation.php:266
+#: src/Content/Conversation.php:274
#, php-format
msgid " likes this"
msgid_plural " like this"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] " нравится это"
+msgstr[1] " нравится это"
+msgstr[2] " нравится это"
+msgstr[3] " нравится это"
-#: src/Content/Conversation.php:269
+#: 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] ""
+msgstr[0] " не нравится это"
+msgstr[1] " не нравится это"
+msgstr[2] " не нравится это"
+msgstr[3] " не нравится это"
-#: src/Content/Conversation.php:272
+#: src/Content/Conversation.php:280
#, php-format
msgid " attends"
msgid_plural " attend"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] " посетит"
+msgstr[1] " посетят"
+msgstr[2] " посетят"
+msgstr[3] " посетят"
-#: src/Content/Conversation.php:275
+#: src/Content/Conversation.php:283
#, php-format
msgid " doesn't attend"
msgid_plural " don't attend"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] " не посетит"
+msgstr[1] " не посетят"
+msgstr[2] " не посетят"
+msgstr[3] " не посетят"
-#: src/Content/Conversation.php:278
+#: src/Content/Conversation.php:286
#, php-format
msgid " attends maybe"
msgid_plural " attend maybe"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] " возможно посетит"
+msgstr[1] " возможно посетят"
+msgstr[2] " возможно посетят"
+msgstr[3] " возможно посетят"
-#: src/Content/Conversation.php:281
+#: src/Content/Conversation.php:289
#, php-format
msgid " reshared this"
msgid_plural " reshared this"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
-msgstr[3] ""
+msgstr[0] " поделился этим"
+msgstr[1] " поделились этим"
+msgstr[2] " поделились этим"
+msgstr[3] " поделились этим"
-#: src/Content/Conversation.php:328
+#: src/Content/Conversation.php:336
msgid "Visible to everybody"
msgstr "Видимое всем"
-#: src/Content/Conversation.php:329 src/Module/Item/Compose.php:198
-#: src/Object/Post.php:1073
+#: 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:330
+#: src/Content/Conversation.php:338
msgid "Tag term:"
msgstr "Тег:"
-#: src/Content/Conversation.php:331 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:332
+#: src/Content/Conversation.php:340
msgid "Where are you right now?"
msgstr "И где вы сейчас?"
-#: src/Content/Conversation.php:333
+#: src/Content/Conversation.php:341
msgid "Delete item(s)?"
msgstr "Удалить елемент(ты)?"
-#: src/Content/Conversation.php:345 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:355
+#: src/Content/Conversation.php:363
msgid "New Post"
msgstr "Новая запись"
-#: src/Content/Conversation.php:358
+#: src/Content/Conversation.php:366
msgid "Share"
msgstr "Поделиться"
-#: src/Content/Conversation.php:361 src/Module/Post/Edit.php:132
+#: src/Content/Conversation.php:369 src/Module/Post/Edit.php:132
msgid "upload photo"
msgstr "загрузить фото"
-#: src/Content/Conversation.php:362 src/Module/Post/Edit.php:133
+#: src/Content/Conversation.php:370 src/Module/Post/Edit.php:133
msgid "Attach file"
msgstr "Прикрепить файл"
-#: src/Content/Conversation.php:363 src/Module/Post/Edit.php:134
+#: src/Content/Conversation.php:371 src/Module/Post/Edit.php:134
msgid "attach file"
msgstr "приложить файл"
-#: src/Content/Conversation.php:364 src/Module/Item/Compose.php:190
-#: src/Module/Post/Edit.php:171 src/Object/Post.php:1065
+#: 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:365 src/Module/Item/Compose.php:191
-#: src/Module/Post/Edit.php:172 src/Object/Post.php:1066
+#: 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 "Kурсивный"
-#: src/Content/Conversation.php:366 src/Module/Item/Compose.php:192
-#: src/Module/Post/Edit.php:173 src/Object/Post.php:1067
+#: 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:367 src/Module/Item/Compose.php:193
-#: src/Module/Post/Edit.php:174 src/Object/Post.php:1068
+#: 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:368 src/Module/Item/Compose.php:194
-#: src/Module/Post/Edit.php:175 src/Object/Post.php:1069
+#: 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 "Предупреждение о контенте (CW)"
+
+#: 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:369 src/Module/Item/Compose.php:195
-#: src/Object/Post.php:1070
+#: src/Content/Conversation.php:379 src/Module/Item/Compose.php:197
+#: src/Object/Post.php:1104
msgid "Image"
msgstr "Изображение / Фото"
-#: src/Content/Conversation.php:370 src/Module/Item/Compose.php:196
-#: src/Module/Post/Edit.php:176 src/Object/Post.php:1071
+#: 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:371 src/Module/Item/Compose.php:197
-#: src/Module/Post/Edit.php:177 src/Object/Post.php:1072
+#: 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:372
+#: src/Content/Conversation.php:382
msgid "Video"
msgstr "Видео"
-#: src/Content/Conversation.php:373 src/Module/Item/Compose.php:200
+#: 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:374 src/Module/Post/Edit.php:142
+#: src/Content/Conversation.php:384 src/Module/Post/Edit.php:142
msgid "set location"
msgstr "установить местонахождение"
-#: src/Content/Conversation.php:375 src/Module/Post/Edit.php:143
+#: src/Content/Conversation.php:385 src/Module/Post/Edit.php:143
msgid "Clear browser location"
msgstr "Очистить местонахождение браузера"
-#: src/Content/Conversation.php:376 src/Module/Post/Edit.php:144
+#: src/Content/Conversation.php:386 src/Module/Post/Edit.php:144
msgid "clear location"
msgstr "убрать местонахождение"
-#: src/Content/Conversation.php:378 src/Module/Item/Compose.php:205
+#: 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:380 src/Module/Item/Compose.php:206
+#: 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:385 src/Module/Item/Compose.php:222
+#: src/Content/Conversation.php:395 src/Module/Item/Compose.php:224
msgid "Scheduled at"
msgstr "Запланировано на"
-#: src/Content/Conversation.php:390 src/Module/Post/Edit.php:146
+#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:146
msgid "Permission settings"
msgstr "Настройки разрешений"
-#: src/Content/Conversation.php:400 src/Module/Post/Edit.php:155
+#: src/Content/Conversation.php:410 src/Module/Post/Edit.php:155
msgid "Public post"
msgstr "Публичная запись"
-#: src/Content/Conversation.php:414 src/Content/Widget/VCard.php:113
-#: src/Model/Profile.php:469 src/Module/Admin/Logs/View.php:92
-#: src/Module/Post/Edit.php:180
+#: 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 "Запись"
+msgstr "Написать"
-#: src/Content/Conversation.php:415 src/Module/Post/Edit.php:181
+#: 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:417 src/Module/Post/Edit.php:184
+#: src/Content/Conversation.php:427 src/Module/Post/Edit.php:185
msgid "Open Compose page"
msgstr "Развернуть редактор"
-#: src/Content/Conversation.php:677 src/Object/Post.php:244
-msgid "Pinned item"
-msgstr "Закреплённая запись"
-
-#: src/Content/Conversation.php:693 src/Object/Post.php:496
-#: src/Object/Post.php:497
-#, php-format
-msgid "View %s's profile @ %s"
-msgstr "Просмотреть профиль %s [@ %s]"
-
-#: src/Content/Conversation.php:706 src/Object/Post.php:484
-msgid "Categories:"
-msgstr "Категории:"
-
-#: src/Content/Conversation.php:707 src/Object/Post.php:485
-msgid "Filed under:"
-msgstr "В рубрике:"
-
-#: src/Content/Conversation.php:715 src/Object/Post.php:510
-#, php-format
-msgid "%s from %s"
-msgstr "%s из %s"
-
-#: src/Content/Conversation.php:731
-msgid "View in context"
-msgstr "Смотреть в контексте"
-
-#: src/Content/Conversation.php:796
+#: src/Content/Conversation.php:595
msgid "remove"
msgstr "удалить"
-#: src/Content/Conversation.php:800
+#: src/Content/Conversation.php:599
msgid "Delete Selected Items"
msgstr "Удалить выбранные позиции"
-#: src/Content/Conversation.php:865 src/Content/Conversation.php:868
-#: src/Content/Conversation.php:871 src/Content/Conversation.php:874
-#: src/Content/Conversation.php:877
+#: 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:880
+#: src/Content/Conversation.php:769
#, php-format
msgid "You are following %s."
msgstr "Вы подписаны на %s."
-#: src/Content/Conversation.php:883
+#: 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:896
+#: src/Content/Conversation.php:796
#, php-format
msgid "%s reshared this."
msgstr "%s поделился этим."
-#: src/Content/Conversation.php:898
+#: src/Content/Conversation.php:798
msgid "Reshared"
msgstr "Репост"
-#: src/Content/Conversation.php:898
+#: src/Content/Conversation.php:798
#, php-format
msgid "Reshared by %s <%s>"
msgstr "Репост от %s <%s>"
-#: src/Content/Conversation.php:901
+#: src/Content/Conversation.php:801
#, php-format
msgid "%s is participating in this thread."
msgstr "%s участвует в этом обсуждении"
-#: src/Content/Conversation.php:904
+#: src/Content/Conversation.php:804
msgid "Stored for general reasons"
msgstr "Загружено по необходимости"
-#: src/Content/Conversation.php:907
+#: src/Content/Conversation.php:807
msgid "Global post"
msgstr "Глобальная запись"
-#: src/Content/Conversation.php:910
+#: src/Content/Conversation.php:810
msgid "Sent via an relay server"
msgstr "Прислано через релей"
-#: src/Content/Conversation.php:910
+#: src/Content/Conversation.php:810
#, php-format
msgid "Sent via the relay server %s <%s>"
msgstr "Прислано через релей %s <%s>"
-#: src/Content/Conversation.php:913
+#: src/Content/Conversation.php:813
msgid "Fetched"
msgstr "Загружено"
-#: src/Content/Conversation.php:913
+#: src/Content/Conversation.php:813
#, php-format
msgid "Fetched because of %s <%s>"
msgstr "Загружено из-за %s <%s>"
-#: src/Content/Conversation.php:916
+#: src/Content/Conversation.php:816
msgid "Stored because of a child post to complete this thread."
msgstr "Загружено из-за комментария в этой ветке."
-#: src/Content/Conversation.php:919
+#: src/Content/Conversation.php:819
msgid "Local delivery"
msgstr "Местная доставка"
-#: src/Content/Conversation.php:922
+#: src/Content/Conversation.php:822
msgid "Stored because of your activity (like, comment, star, ...)"
msgstr "Загружено из-за ваших действий (лайк, комментарий, ...)"
-#: src/Content/Conversation.php:925
+#: src/Content/Conversation.php:825
msgid "Distributed"
msgstr "Распространено"
-#: src/Content/Conversation.php:928
+#: 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 "Записи от %s"
+
+#: 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 "Основные возможности"
@@ -1541,13 +1696,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"
@@ -1587,12 +1742,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"
@@ -1624,385 +1779,395 @@ msgid ""
"Contact birthday events are private to you."
msgstr "Разрешает анонимным пользователям просматривать ваш календарь и публичные мероприятия. Дни рождения контактов видны только вам."
-#: src/Content/ForumManager.php:151 src/Content/Nav.php:276
-#: src/Content/Text/HTML.php:878 src/Content/Widget.php:528
-msgid "Forums"
-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/ForumManager.php:153
-msgid "External link to forum"
-msgstr "Внешняя ссылка на форум"
+#: src/Content/GroupManager.php:154
+msgid "External link to group"
+msgstr "Внешняя ссылка на группу"
-#: src/Content/ForumManager.php:156 src/Content/Widget.php:507
+#: src/Content/GroupManager.php:158 src/Content/Widget.php:512
msgid "show less"
msgstr "показать меньше"
-#: src/Content/ForumManager.php:157 src/Content/Widget.php:409
-#: src/Content/Widget.php:508
+#: src/Content/GroupManager.php:159 src/Content/Widget.php:410
+#: src/Content/Widget.php:513
msgid "show more"
msgstr "показать больше"
-#: src/Content/Item.php:326 src/Model/Item.php:2922
+#: 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:329 src/Content/Item.php:339
+#: src/Content/Item.php:334 src/Content/Item.php:344
msgid "status"
msgstr "статус"
-#: src/Content/Item.php:335 src/Model/Item.php:2924
+#: src/Content/Item.php:340 src/Model/Item.php:3005
#: src/Module/Post/Tag/Add.php:123
msgid "photo"
msgstr "фото"
-#: src/Content/Item.php:349 src/Module/Post/Tag/Add.php:141
+#: 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:419 view/theme/frio/theme.php:262
+#: src/Content/Item.php:428 view/theme/frio/theme.php:262
msgid "Follow Thread"
msgstr "Подписаться на обсуждение"
-#: src/Content/Item.php:420 src/Model/Contact.php:1204
+#: src/Content/Item.php:429 src/Model/Contact.php:1227
msgid "View Status"
msgstr "Просмотреть статус"
-#: src/Content/Item.php:421 src/Content/Item.php:441
-#: src/Model/Contact.php:1148 src/Model/Contact.php:1196
-#: src/Model/Contact.php:1205 src/Module/Directory.php:157
-#: src/Module/Settings/Profile/Index.php:233
+#: 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:422 src/Model/Contact.php:1206
+#: src/Content/Item.php:431 src/Model/Contact.php:1229
msgid "View Photos"
msgstr "Просмотреть фото"
-#: src/Content/Item.php:423 src/Model/Contact.php:1197
-#: src/Model/Contact.php:1207
+#: src/Content/Item.php:432 src/Model/Contact.php:1220
+#: src/Model/Contact.php:1230
msgid "Network Posts"
msgstr "Записи сети"
-#: src/Content/Item.php:424 src/Model/Contact.php:1198
-#: src/Model/Contact.php:1208
+#: src/Content/Item.php:433 src/Model/Contact.php:1221
+#: src/Model/Contact.php:1231
msgid "View Contact"
msgstr "Просмотреть контакт"
-#: src/Content/Item.php:425 src/Model/Contact.php:1209
+#: src/Content/Item.php:434 src/Model/Contact.php:1232
msgid "Send PM"
msgstr "Отправить ЛС"
-#: src/Content/Item.php:426 src/Module/Contact.php:439
-#: src/Module/Contact/Profile.php:477
+#: 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:427 src/Module/Contact.php:440
-#: src/Module/Contact/Profile.php:485
+#: 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:428 src/Module/Contact.php:441
-#: src/Module/Contact/Profile.php:493
+#: src/Content/Item.php:437 src/Module/Contact.php:470
+#: src/Module/Contact/Profile.php:527
msgid "Collapse"
msgstr "Сворачивать"
-#: src/Content/Item.php:432 src/Object/Post.php:465
+#: src/Content/Item.php:438 src/Object/Post.php:288
+#, php-format
+msgid "Ignore %s server"
+msgstr "Игнорировать сервер %s "
+
+#: src/Content/Item.php:442 src/Object/Post.php:490
msgid "Languages"
msgstr "Языки"
-#: src/Content/Item.php:438 src/Content/Widget.php:80
-#: src/Model/Contact.php:1199 src/Model/Contact.php:1210
-#: src/Module/Contact/Follow.php:167 view/theme/vier/theme.php:196
+#: 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:863
+#: src/Content/Item.php:882
msgid "Unable to fetch user."
-msgstr ""
+msgstr "Ошибка получения информации пользователя"
-#: src/Content/Nav.php:120
+#: src/Content/Nav.php:121
msgid "Nothing new here"
msgstr "Ничего нового здесь"
-#: src/Content/Nav.php:124 src/Module/Special/HTTPException.php:77
+#: src/Content/Nav.php:125 src/Module/Special/HTTPException.php:77
msgid "Go back"
msgstr "Назад"
-#: src/Content/Nav.php:125
+#: src/Content/Nav.php:126
msgid "Clear notifications"
msgstr "Стереть уведомления"
-#: src/Content/Nav.php:126 src/Content/Text/HTML.php:865
-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:220 src/Module/Security/Login.php:157
+#: src/Content/Nav.php:222 src/Module/Security/Login.php:157
msgid "Logout"
msgstr "Выход"
-#: src/Content/Nav.php:220
+#: src/Content/Nav.php:222
msgid "End this session"
msgstr "Завершить эту сессию"
-#: src/Content/Nav.php:222 src/Module/Bookmarklet.php:44
+#: src/Content/Nav.php:224 src/Module/Bookmarklet.php:44
#: src/Module/Security/Login.php:158
msgid "Login"
msgstr "Вход"
-#: src/Content/Nav.php:222
+#: src/Content/Nav.php:224
msgid "Sign in"
msgstr "Вход"
-#: src/Content/Nav.php:227 src/Module/BaseProfile.php:57
-#: src/Module/Contact.php:483
+#: src/Content/Nav.php:229 src/Module/BaseProfile.php:57
+#: src/Module/Contact.php:512
msgid "Conversations"
msgstr "Записи"
-#: src/Content/Nav.php:227
+#: src/Content/Nav.php:229
msgid "Conversations you started"
msgstr "Ваши записи"
-#: src/Content/Nav.php:228 src/Module/BaseProfile.php:49
-#: src/Module/BaseSettings.php:100 src/Module/Contact.php:475
-#: src/Module/Contact/Profile.php:392 src/Module/Profile/Profile.php:268
+#: 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:228 view/theme/frio/theme.php:230
+#: src/Content/Nav.php:230 view/theme/frio/theme.php:230
msgid "Your profile page"
msgstr "Информация о вас"
-#: src/Content/Nav.php:229 src/Module/BaseProfile.php:65
+#: 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:229 view/theme/frio/theme.php:234
+#: src/Content/Nav.php:231 view/theme/frio/theme.php:234
msgid "Your photos"
msgstr "Ваши фотографии"
-#: src/Content/Nav.php:230 src/Module/BaseProfile.php:73
-#: src/Module/BaseProfile.php:76 src/Module/Contact.php:499
+#: 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:230 view/theme/frio/theme.php:235
+#: src/Content/Nav.php:232 view/theme/frio/theme.php:235
msgid "Your postings with media"
msgstr "Ваши записи с фото и видео"
-#: src/Content/Nav.php:231 src/Content/Nav.php:291
+#: 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:252 view/theme/frio/theme.php:236
+#: 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:231 view/theme/frio/theme.php:236
+#: src/Content/Nav.php:233 view/theme/frio/theme.php:236
msgid "Your calendar"
msgstr "Ваш календарь"
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Personal notes"
msgstr "Личные заметки"
-#: src/Content/Nav.php:232
+#: src/Content/Nav.php:234
msgid "Your personal notes"
msgstr "Ваши личные заметки"
-#: src/Content/Nav.php:249 src/Content/Nav.php:306
+#: src/Content/Nav.php:251 src/Content/Nav.php:308
msgid "Home"
msgstr "Мой профиль"
-#: src/Content/Nav.php:249 src/Module/Settings/OAuth.php:73
+#: src/Content/Nav.php:251 src/Module/Settings/OAuth.php:73
msgid "Home Page"
msgstr "Главная страница"
-#: src/Content/Nav.php:253 src/Module/Register.php:168
+#: src/Content/Nav.php:255 src/Module/Register.php:168
#: src/Module/Security/Login.php:124
msgid "Register"
msgstr "Регистрация"
-#: src/Content/Nav.php:253
+#: src/Content/Nav.php:255
msgid "Create an account"
msgstr "Создать аккаунт"
-#: src/Content/Nav.php:259 src/Module/Help.php:67
+#: 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:241
+#: src/Module/Settings/TwoFactor/Verify.php:146 view/theme/vier/theme.php:240
msgid "Help"
msgstr "Помощь"
-#: src/Content/Nav.php:259
+#: src/Content/Nav.php:261
msgid "Help and documentation"
msgstr "Помощь и документация"
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:265
msgid "Apps"
msgstr "Приложения"
-#: src/Content/Nav.php:263
+#: src/Content/Nav.php:265
msgid "Addon applications, utilities, games"
msgstr "Дополнительные приложения, утилиты, игры"
-#: src/Content/Nav.php:267 src/Content/Text/HTML.php:863
+#: 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:267
+#: src/Content/Nav.php:269
msgid "Search site content"
msgstr "Поиск по сайту"
-#: src/Content/Nav.php:270 src/Content/Text/HTML.php:872
+#: src/Content/Nav.php:272 src/Content/Text/HTML.php:874
msgid "Full Text"
msgstr "Контент"
-#: src/Content/Nav.php:271 src/Content/Text/HTML.php:873
+#: src/Content/Nav.php:273 src/Content/Text/HTML.php:875
#: src/Content/Widget/TagCloud.php:68
msgid "Tags"
msgstr "Тэги"
-#: src/Content/Nav.php:272 src/Content/Nav.php:327
-#: src/Content/Text/HTML.php:874 src/Module/BaseProfile.php:127
-#: src/Module/BaseProfile.php:130 src/Module/Contact.php:410
-#: src/Module/Contact.php:506 view/theme/frio/theme.php:243
+#: 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:287
+#: src/Content/Nav.php:289
msgid "Community"
msgstr "Сообщество"
-#: src/Content/Nav.php:287
+#: src/Content/Nav.php:289
msgid "Conversations on this and other servers"
msgstr "Диалоги на этом и других серверах"
-#: src/Content/Nav.php:294
+#: src/Content/Nav.php:296
msgid "Directory"
msgstr "Каталог"
-#: src/Content/Nav.php:294
+#: src/Content/Nav.php:296
msgid "People directory"
msgstr "Каталог участников"
-#: src/Content/Nav.php:296 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:296
+#: src/Content/Nav.php:298
msgid "Information about this friendica instance"
msgstr "Информация об этом экземпляре Friendica"
-#: src/Content/Nav.php:299 src/Module/Admin/Tos.php:78
+#: 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:100
+#: src/Module/Tos.php:101
msgid "Terms of Service"
msgstr "Условия оказания услуг"
-#: src/Content/Nav.php:299
+#: src/Content/Nav.php:301
msgid "Terms of Service of this Friendica instance"
msgstr "Условия оказания услуг для этого узла Friendica"
-#: src/Content/Nav.php:304 view/theme/frio/theme.php:239
+#: src/Content/Nav.php:306 view/theme/frio/theme.php:239
msgid "Network"
msgstr "Новости"
-#: src/Content/Nav.php:304 view/theme/frio/theme.php:239
+#: src/Content/Nav.php:306 view/theme/frio/theme.php:239
msgid "Conversations from your friends"
msgstr "Сообщения ваших друзей"
-#: src/Content/Nav.php:306 view/theme/frio/theme.php:229
+#: src/Content/Nav.php:308 view/theme/frio/theme.php:229
msgid "Your posts and conversations"
msgstr "Ваши записи и диалоги"
-#: src/Content/Nav.php:310
+#: src/Content/Nav.php:312
msgid "Introductions"
msgstr "Запросы"
-#: src/Content/Nav.php:310
+#: src/Content/Nav.php:312
msgid "Friend Requests"
msgstr "Запросы на добавление в список друзей"
-#: src/Content/Nav.php:311 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:312
+#: src/Content/Nav.php:314
msgid "See all notifications"
msgstr "Посмотреть все уведомления"
-#: src/Content/Nav.php:313 src/Module/Settings/Connectors.php:244
+#: src/Content/Nav.php:315 src/Module/Settings/Connectors.php:244
msgid "Mark as seen"
msgstr "Отметить, как прочитанное"
-#: src/Content/Nav.php:313
+#: src/Content/Nav.php:315
msgid "Mark all system notifications as seen"
msgstr "Пометить все уведомления прочитанными"
-#: src/Content/Nav.php:316 view/theme/frio/theme.php:241
+#: src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Private mail"
msgstr "Личная почта"
-#: src/Content/Nav.php:317
+#: src/Content/Nav.php:319
msgid "Inbox"
msgstr "Входящие"
-#: src/Content/Nav.php:318
+#: src/Content/Nav.php:320
msgid "Outbox"
msgstr "Исходящие"
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Accounts"
msgstr "Учётные записи"
-#: src/Content/Nav.php:322
+#: src/Content/Nav.php:324
msgid "Manage other pages"
msgstr "Управление другими страницами"
-#: 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/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:325 view/theme/frio/theme.php:242
+#: src/Content/Nav.php:327 view/theme/frio/theme.php:242
msgid "Account settings"
msgstr "Настройки аккаунта"
-#: src/Content/Nav.php:327 view/theme/frio/theme.php:243
+#: src/Content/Nav.php:329 view/theme/frio/theme.php:243
msgid "Manage/edit friends and contacts"
msgstr "Управление / редактирование друзей и контактов"
-#: src/Content/Nav.php:332 src/Module/BaseAdmin.php:119
+#: src/Content/Nav.php:334 src/Module/BaseAdmin.php:119
msgid "Admin"
msgstr "Администратор"
-#: src/Content/Nav.php:332
+#: src/Content/Nav.php:334
msgid "Site setup and configuration"
msgstr "Конфигурация сайта"
-#: src/Content/Nav.php:333 src/Module/BaseModeration.php:127
+#: 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/Summary.php:76
+#: 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
@@ -2010,23 +2175,23 @@ msgstr "Конфигурация сайта"
msgid "Moderation"
msgstr "Модерация"
-#: src/Content/Nav.php:333
+#: src/Content/Nav.php:335
msgid "Content and user moderation"
msgstr "Модерация пользователей и контента"
-#: src/Content/Nav.php:336
+#: src/Content/Nav.php:338
msgid "Navigation"
msgstr "Навигация"
-#: src/Content/Nav.php:336
+#: 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 "Встроенное содержание"
@@ -2046,51 +2211,51 @@ msgstr "след."
msgid "last"
msgstr "последний"
-#: src/Content/Text/BBCode.php:713 src/Content/Text/BBCode.php:1599
-#: src/Content/Text/BBCode.php:1600
+#: 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:931
+#: src/Content/Text/BBCode.php:914
#, php-format
msgid "%2$s %3$s"
msgstr "%2$s %3$s"
-#: src/Content/Text/BBCode.php:956 src/Model/Item.php:3607
-#: src/Model/Item.php:3613 src/Model/Item.php:3614
+#: 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:1506 src/Content/Text/HTML.php:902
+#: src/Content/Text/BBCode.php:1543 src/Content/Text/HTML.php:904
msgid "Click to open/close"
msgstr "Нажмите, чтобы открыть / закрыть"
-#: src/Content/Text/BBCode.php:1539
+#: src/Content/Text/BBCode.php:1576
msgid "$1 wrote:"
msgstr "$1 написал:"
-#: src/Content/Text/BBCode.php:1604 src/Content/Text/BBCode.php:1605
+#: src/Content/Text/BBCode.php:1641 src/Content/Text/BBCode.php:1642
msgid "Encrypted content"
msgstr "Зашифрованный контент"
-#: src/Content/Text/BBCode.php:1869
+#: src/Content/Text/BBCode.php:1901
msgid "Invalid source protocol"
msgstr "Неправильный протокол источника"
-#: src/Content/Text/BBCode.php:1888
+#: src/Content/Text/BBCode.php:1920
msgid "Invalid link protocol"
msgstr "Неправильная протокольная ссылка"
-#: src/Content/Text/HTML.php:780
+#: src/Content/Text/HTML.php:782
msgid "Loading more entries..."
msgstr "Загружаю больше сообщений..."
-#: src/Content/Text/HTML.php:781
+#: src/Content/Text/HTML.php:783
msgid "The end"
msgstr "Конец"
-#: src/Content/Text/HTML.php:857 src/Content/Widget/VCard.php:109
-#: src/Model/Profile.php:463 src/Module/Contact/Profile.php:437
+#: 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 "Подписка"
@@ -2119,88 +2284,92 @@ msgstr[1] "%d приглашений доступно"
msgstr[2] "%d приглашений доступно"
msgstr[3] "%d приглашений доступно"
-#: src/Content/Widget.php:78 view/theme/vier/theme.php:194
+#: 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:195
+#: 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:197
+#: src/Content/Widget.php:81 view/theme/vier/theme.php:196
msgid "Examples: Robert Morgenstein, Fishing"
msgstr "Примеры: Роберт Morgenstein, Рыбалка"
-#: src/Content/Widget.php:82 src/Module/Contact.php:432
-#: src/Module/Directory.php:96 view/theme/vier/theme.php:198
+#: 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:83 src/Module/Contact/Suggestions.php:73
-#: view/theme/vier/theme.php:199
+#: view/theme/vier/theme.php:198
msgid "Friend Suggestions"
msgstr "Предложения друзей"
-#: src/Content/Widget.php:84 view/theme/vier/theme.php:200
+#: 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:201
+#: 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:202
+#: 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:203
+#: view/theme/vier/theme.php:202
msgid "Global Directory"
msgstr "Глобальный каталог"
-#: src/Content/Widget.php:89 view/theme/vier/theme.php:205
+#: src/Content/Widget.php:89 view/theme/vier/theme.php:204
msgid "Local Directory"
msgstr "Локальный каталог"
-#: src/Content/Widget.php:215 src/Model/Group.php:587
-#: src/Module/Contact.php:394 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:217
msgid "Everyone"
msgstr "Все"
-#: src/Content/Widget.php:246
+#: 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:248 src/Module/Contact.php:338
-#: 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:287
+#: src/Content/Widget.php:288
msgid "Protocols"
msgstr "Протоколы"
-#: src/Content/Widget.php:289
+#: src/Content/Widget.php:290
msgid "All Protocols"
msgstr "Все протоколы"
-#: src/Content/Widget.php:317
+#: src/Content/Widget.php:318
msgid "Saved Folders"
msgstr "Сохранённые папки"
-#: src/Content/Widget.php:319 src/Content/Widget.php:350
+#: src/Content/Widget.php:320 src/Content/Widget.php:351
msgid "Everything"
msgstr "Всё"
-#: src/Content/Widget.php:348
+#: src/Content/Widget.php:349
msgid "Categories"
msgstr "Категории"
-#: src/Content/Widget.php:405
+#: src/Content/Widget.php:406
#, php-format
msgid "%d contact in common"
msgid_plural "%d contacts in common"
@@ -2209,30 +2378,38 @@ msgstr[1] "%d Контактов"
msgstr[2] "%d Контактов"
msgstr[3] "%d Контактов"
-#: src/Content/Widget.php:501
+#: src/Content/Widget.php:506
msgid "Archives"
msgstr "Архивы"
-#: src/Content/Widget.php:525
+#: src/Content/Widget.php:514
+msgid "On this date"
+msgstr "В этот день"
+
+#: src/Content/Widget.php:534
msgid "Persons"
msgstr "Люди"
-#: src/Content/Widget.php:526
+#: src/Content/Widget.php:535
msgid "Organisations"
msgstr "Организации"
-#: src/Content/Widget.php:527 src/Model/Contact.php:1656
+#: src/Content/Widget.php:536 src/Model/Contact.php:1698
msgid "News"
msgstr "Новости"
-#: src/Content/Widget.php:531 src/Module/Settings/Account.php:453
+#: src/Content/Widget.php:542 src/Module/Settings/Account.php:454
msgid "Account Types"
msgstr "Тип учетной записи"
-#: src/Content/Widget.php:532 src/Module/Moderation/BaseUsers.php:69
+#: 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 "Экспорт"
@@ -2283,32 +2460,32 @@ msgstr[3] "Популярные тэги (за %d часов)"
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
+#: 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:379
-#: src/Module/Contact/Profile.php:383 src/Module/Profile/Profile.php:203
+#: 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: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/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:107 src/Model/Profile.php:476
+#: 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/Contact.php:1200
-#: src/Model/Contact.php:1211 src/Model/Profile.php:465
-#: src/Module/Contact/Profile.php:429
+#: 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 "Отписка"
@@ -2349,9 +2526,9 @@ msgstr "Это будет доступно только получателям,
#: src/Core/ACL.php:324
msgid ""
-"Start typing the name of a contact or a group to show a filtered list. You "
-"can also mention the special groups \"Followers\" and \"Mutuals\"."
-msgstr "Начните набирать имя контакта или группы для появления списка. Вы так же можете выбрать специальные группы \"Подписаны на вас\" и \"Взаимные\"."
+"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:"
@@ -2692,161 +2869,172 @@ msgstr "База данных уже используется."
msgid "Could not connect to database."
msgstr "Не удалось подключиться к базе данных."
-#: src/Core/L10n.php:408 src/Model/Event.php:432
-#: src/Module/Settings/Display.php:222
+#: src/Core/L10n.php:476 src/Model/Event.php:430
+#: src/Module/Settings/Display.php:235
msgid "Monday"
msgstr "Понедельник"
-#: src/Core/L10n.php:408 src/Model/Event.php:433
-#: src/Module/Settings/Display.php:223
+#: src/Core/L10n.php:476 src/Model/Event.php:431
+#: src/Module/Settings/Display.php:236
msgid "Tuesday"
msgstr "Вторник"
-#: src/Core/L10n.php:408 src/Model/Event.php:434
-#: src/Module/Settings/Display.php:224
+#: src/Core/L10n.php:476 src/Model/Event.php:432
+#: src/Module/Settings/Display.php:237
msgid "Wednesday"
msgstr "Среда"
-#: src/Core/L10n.php:408 src/Model/Event.php:435
-#: src/Module/Settings/Display.php:225
+#: src/Core/L10n.php:476 src/Model/Event.php:433
+#: src/Module/Settings/Display.php:238
msgid "Thursday"
msgstr "Четверг"
-#: src/Core/L10n.php:408 src/Model/Event.php:436
-#: src/Module/Settings/Display.php:226
+#: src/Core/L10n.php:476 src/Model/Event.php:434
+#: src/Module/Settings/Display.php:239
msgid "Friday"
msgstr "Пятница"
-#: src/Core/L10n.php:408 src/Model/Event.php:437
-#: src/Module/Settings/Display.php:227
+#: src/Core/L10n.php:476 src/Model/Event.php:435
+#: src/Module/Settings/Display.php:240
msgid "Saturday"
msgstr "Суббота"
-#: src/Core/L10n.php:408 src/Model/Event.php:431
-#: src/Module/Settings/Display.php:221
+#: src/Core/L10n.php:476 src/Model/Event.php:429
+#: src/Module/Settings/Display.php:234
msgid "Sunday"
msgstr "Воскресенье"
-#: src/Core/L10n.php:412 src/Model/Event.php:452
+#: src/Core/L10n.php:480 src/Model/Event.php:450
msgid "January"
msgstr "Январь"
-#: src/Core/L10n.php:412 src/Model/Event.php:453
+#: src/Core/L10n.php:480 src/Model/Event.php:451
msgid "February"
msgstr "Февраль"
-#: src/Core/L10n.php:412 src/Model/Event.php:454
+#: src/Core/L10n.php:480 src/Model/Event.php:452
msgid "March"
msgstr "Март"
-#: src/Core/L10n.php:412 src/Model/Event.php:455
+#: src/Core/L10n.php:480 src/Model/Event.php:453
msgid "April"
msgstr "Апрель"
-#: src/Core/L10n.php:412 src/Core/L10n.php:431 src/Model/Event.php:443
+#: src/Core/L10n.php:480 src/Core/L10n.php:499 src/Model/Event.php:441
msgid "May"
msgstr "Май"
-#: src/Core/L10n.php:412 src/Model/Event.php:456
+#: src/Core/L10n.php:480 src/Model/Event.php:454
msgid "June"
msgstr "Июнь"
-#: src/Core/L10n.php:412 src/Model/Event.php:457
+#: src/Core/L10n.php:480 src/Model/Event.php:455
msgid "July"
msgstr "Июль"
-#: src/Core/L10n.php:412 src/Model/Event.php:458
+#: src/Core/L10n.php:480 src/Model/Event.php:456
msgid "August"
msgstr "Август"
-#: src/Core/L10n.php:412 src/Model/Event.php:459
+#: src/Core/L10n.php:480 src/Model/Event.php:457
msgid "September"
msgstr "Сентябрь"
-#: src/Core/L10n.php:412 src/Model/Event.php:460
+#: src/Core/L10n.php:480 src/Model/Event.php:458
msgid "October"
msgstr "Октябрь"
-#: src/Core/L10n.php:412 src/Model/Event.php:461
+#: src/Core/L10n.php:480 src/Model/Event.php:459
msgid "November"
msgstr "Ноябрь"
-#: src/Core/L10n.php:412 src/Model/Event.php:462
+#: src/Core/L10n.php:480 src/Model/Event.php:460
msgid "December"
msgstr "Декабрь"
-#: src/Core/L10n.php:427 src/Model/Event.php:424
+#: src/Core/L10n.php:495 src/Model/Event.php:422
msgid "Mon"
msgstr "Пн"
-#: src/Core/L10n.php:427 src/Model/Event.php:425
+#: src/Core/L10n.php:495 src/Model/Event.php:423
msgid "Tue"
msgstr "Вт"
-#: src/Core/L10n.php:427 src/Model/Event.php:426
+#: src/Core/L10n.php:495 src/Model/Event.php:424
msgid "Wed"
msgstr "Ср"
-#: src/Core/L10n.php:427 src/Model/Event.php:427
+#: src/Core/L10n.php:495 src/Model/Event.php:425
msgid "Thu"
msgstr "Чт"
-#: src/Core/L10n.php:427 src/Model/Event.php:428
+#: src/Core/L10n.php:495 src/Model/Event.php:426
msgid "Fri"
msgstr "Пт"
-#: src/Core/L10n.php:427 src/Model/Event.php:429
+#: src/Core/L10n.php:495 src/Model/Event.php:427
msgid "Sat"
msgstr "Сб"
-#: src/Core/L10n.php:427 src/Model/Event.php:423
+#: src/Core/L10n.php:495 src/Model/Event.php:421
msgid "Sun"
msgstr "Вс"
-#: src/Core/L10n.php:431 src/Model/Event.php:439
+#: src/Core/L10n.php:499 src/Model/Event.php:437
msgid "Jan"
msgstr "Янв"
-#: src/Core/L10n.php:431 src/Model/Event.php:440
+#: src/Core/L10n.php:499 src/Model/Event.php:438
msgid "Feb"
msgstr "Фев"
-#: src/Core/L10n.php:431 src/Model/Event.php:441
+#: src/Core/L10n.php:499 src/Model/Event.php:439
msgid "Mar"
msgstr "Мрт"
-#: src/Core/L10n.php:431 src/Model/Event.php:442
+#: src/Core/L10n.php:499 src/Model/Event.php:440
msgid "Apr"
msgstr "Апр"
-#: src/Core/L10n.php:431 src/Model/Event.php:444
+#: src/Core/L10n.php:499 src/Model/Event.php:442
msgid "Jun"
msgstr "Июн"
-#: src/Core/L10n.php:431 src/Model/Event.php:445
+#: src/Core/L10n.php:499 src/Model/Event.php:443
msgid "Jul"
msgstr "Июл"
-#: src/Core/L10n.php:431 src/Model/Event.php:446
+#: src/Core/L10n.php:499 src/Model/Event.php:444
msgid "Aug"
msgstr "Авг"
-#: src/Core/L10n.php:431
+#: src/Core/L10n.php:499
msgid "Sep"
msgstr "Сен"
-#: src/Core/L10n.php:431 src/Model/Event.php:448
+#: src/Core/L10n.php:499 src/Model/Event.php:446
msgid "Oct"
msgstr "Окт"
-#: src/Core/L10n.php:431 src/Model/Event.php:449
+#: src/Core/L10n.php:499 src/Model/Event.php:447
msgid "Nov"
msgstr "Нбр"
-#: src/Core/L10n.php:431 src/Model/Event.php:450
+#: 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
@@ -2891,22 +3079,22 @@ msgid ""
" to version 2021.01 and wait until the postupdate finished version 1383."
msgstr "Обновления для postupdate версии %s не поддерживаются. Пожалуйста, обновитесь хотя бы до версии 2021.01 и дождитесь выполнения postupdate до версии 1383."
-#: src/Core/Update.php:197
+#: src/Core/Update.php:183
#, php-format
msgid "%s: executing pre update %d"
msgstr "%s: выполняется предварительное обновление %d"
-#: src/Core/Update.php:239
+#: src/Core/Update.php:225
#, php-format
msgid "%s: executing post update %d"
msgstr "%s: выполняется завершение обновления %d"
-#: src/Core/Update.php:313
+#: src/Core/Update.php:299
#, php-format
msgid "Update %s failed. See error logs."
msgstr "Обновление %s не удалось. Смотрите журнал ошибок."
-#: src/Core/Update.php:353
+#: src/Core/Update.php:339
#, php-format
msgid ""
"\n"
@@ -2916,16 +3104,16 @@ 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:359
+#: 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:363 src/Core/Update.php:391
+#: src/Core/Update.php:349 src/Core/Update.php:377
msgid "[Friendica Notify] Database update"
msgstr "[Friendica Notify] Обновление базы данных"
-#: src/Core/Update.php:385
+#: src/Core/Update.php:371
#, php-format
msgid ""
"\n"
@@ -2937,28 +3125,28 @@ msgstr "\n\t\t\t\tБаза данных Friendica была успешно обн
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 "Версия 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"
@@ -2966,20 +3154,20 @@ 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:221
+#: src/Database/DBStructure.php:232
msgid "Another database update is currently running."
msgstr "Другая операция обновления базы данных уже запущена."
-#: src/Database/DBStructure.php:225
+#: src/Database/DBStructure.php:236
#, php-format
msgid "%s: Database update"
msgstr "%s: Обновление базы данных"
-#: src/Database/DBStructure.php:482
+#: src/Database/DBStructure.php:493
#, php-format
msgid "%s: updating %s table."
msgstr "%s: обновляется %s таблица."
@@ -3010,82 +3198,122 @@ msgstr "Внутренняя ошибка сервера"
msgid "Legacy module file not found: %s"
msgstr "Legacy-модуль не найден: %s"
-#: src/Model/Contact.php:1217 src/Module/Moderation/Users/Pending.php:102
+#: 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 "Все"
+
+#: 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:1652
+#: src/Model/Contact.php:1694
msgid "Organisation"
msgstr "Организация"
-#: src/Model/Contact.php:1660
-msgid "Forum"
-msgstr "Форум"
+#: src/Model/Contact.php:1702
+msgid "Group"
+msgstr "Группа"
-#: src/Model/Contact.php:2947
+#: src/Model/Contact.php:3005
msgid "Disallowed profile URL."
msgstr "Запрещенный URL профиля."
-#: src/Model/Contact.php:2952 src/Module/Friendica.php:83
+#: src/Model/Contact.php:3010 src/Module/Friendica.php:101
msgid "Blocked domain"
msgstr "Заблокированный домен"
-#: src/Model/Contact.php:2957
+#: src/Model/Contact.php:3015
msgid "Connect URL missing."
msgstr "Connect-URL отсутствует."
-#: src/Model/Contact.php:2966
+#: 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:2984
+#: src/Model/Contact.php:3042
#, php-format
msgid "Expected network %s does not match actual network %s"
msgstr "Ожидаемая сеть %s не соответствует обнаруженной сети %s"
-#: src/Model/Contact.php:3001
+#: src/Model/Contact.php:3059
msgid "The profile address specified does not provide adequate information."
msgstr "Указанный адрес профиля не дает адекватной информации."
-#: src/Model/Contact.php:3003
+#: src/Model/Contact.php:3061
msgid "No compatible communication protocols or feeds were discovered."
msgstr "Обнаружены несовместимые протоколы связи или каналы."
-#: src/Model/Contact.php:3006
+#: src/Model/Contact.php:3064
msgid "An author or name was not found."
msgstr "Автор или имя не найдены."
-#: src/Model/Contact.php:3009
+#: src/Model/Contact.php:3067
msgid "No browser URL could be matched to this address."
msgstr "Нет URL браузера, который соответствует этому адресу."
-#: src/Model/Contact.php:3012
+#: src/Model/Contact.php:3070
msgid ""
"Unable to match @-style Identity Address with a known protocol or email "
"contact."
msgstr "Не получается совместить этот адрес с известным протоколом или контактом электронной почты."
-#: src/Model/Contact.php:3013
+#: src/Model/Contact.php:3071
msgid "Use mailto: in front of address to force email check."
msgstr "Bcgjkmpeqnt mailto: перед адресом для быстрого доступа к email."
-#: src/Model/Contact.php:3019
+#: 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:3024
+#: 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:3089
+#: src/Model/Contact.php:3148
msgid "Unable to retrieve contact information."
msgstr "Невозможно получить контактную информацию."
@@ -3093,54 +3321,54 @@ msgstr "Невозможно получить контактную информ
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
+#: 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:78 src/Model/Event.php:98 src/Model/Event.php:472
-#: src/Model/Event.php:944
+#: 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:421
+#: src/Model/Event.php:419
msgid "all-day"
msgstr "Весь день"
-#: src/Model/Event.php:447
+#: src/Model/Event.php:445
msgid "Sept"
msgstr "Сен"
-#: src/Model/Event.php:464 src/Module/Calendar/Show.php:128
+#: src/Model/Event.php:462 src/Module/Calendar/Show.php:128
#: src/Util/Temporal.php:343
msgid "today"
msgstr "сегодня"
-#: src/Model/Event.php:465 src/Module/Calendar/Show.php:129
-#: src/Module/Settings/Display.php:232 src/Util/Temporal.php:353
+#: 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:466 src/Module/Calendar/Show.php:130
-#: src/Module/Settings/Display.php:233 src/Util/Temporal.php:354
+#: 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:467 src/Module/Calendar/Show.php:131
-#: src/Module/Settings/Display.php:234 src/Util/Temporal.php:355
+#: 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:469
+#: src/Model/Event.php:467
msgid "No events to display"
msgstr "Нет событий для показа"
-#: src/Model/Event.php:518 src/Module/DFRN/Poll.php:47 src/Module/Feed.php:69
+#: 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:559 src/Module/Calendar/Event/Show.php:67
+#: src/Model/Event.php:558 src/Module/Calendar/Event/Show.php:67
msgid "Event not found."
msgstr "Событие не найдено"
@@ -3172,110 +3400,66 @@ msgstr "D g:i A"
msgid "g:i A"
msgstr "g:i A"
-#: src/Model/Event.php:959 src/Model/Event.php:961
+#: src/Model/Event.php:964 src/Model/Event.php:966
msgid "Show map"
msgstr "Показать карту"
-#: src/Model/Event.php:960
+#: 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: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:2023
+#: src/Model/Item.php:2062
#, php-format
msgid "Detected languages in this post:\\n%s"
msgstr "Обнаруженные в этой записи языки:\\n%s"
-#: src/Model/Item.php:2926
+#: src/Model/Item.php:3007
msgid "activity"
msgstr "активность"
-#: src/Model/Item.php:2928
+#: src/Model/Item.php:3009
msgid "comment"
msgstr "комментарий"
-#: src/Model/Item.php:2931 src/Module/Post/Tag/Add.php:123
+#: src/Model/Item.php:3012 src/Module/Post/Tag/Add.php:123
msgid "post"
msgstr "пост"
-#: src/Model/Item.php:3093
+#: src/Model/Item.php:3182
#, php-format
msgid "%s is blocked"
msgstr "%s заблокирован"
-#: src/Model/Item.php:3095
+#: src/Model/Item.php:3184
#, php-format
msgid "%s is ignored"
msgstr "%s игнорируется"
-#: src/Model/Item.php:3097
+#: src/Model/Item.php:3186
#, php-format
msgid "Content from %s is collapsed"
msgstr "Запись от %s скрыта"
-#: src/Model/Item.php:3101
+#: src/Model/Item.php:3190
#, php-format
msgid "Content warning: %s"
msgstr "Предупреждение о контенте: %s"
-#: src/Model/Item.php:3519
+#: src/Model/Item.php:3652
msgid "bytes"
msgstr "байт"
-#: src/Model/Item.php:3550
+#: src/Model/Item.php:3683
#, php-format
msgid "%2$s (%3$d%%, %1$d vote)"
msgid_plural "%2$s (%3$d%%, %1$d votes)"
@@ -3284,7 +3468,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:3552
+#: src/Model/Item.php:3685
#, php-format
msgid "%2$s (%1$d vote)"
msgid_plural "%2$s (%1$d votes)"
@@ -3293,7 +3477,7 @@ msgstr[1] "%2$s (%1$d голоса)"
msgstr[2] "%2$s (%1$d голосов)"
msgstr[3] "%2$s (%1$d голосов)"
-#: src/Model/Item.php:3557
+#: src/Model/Item.php:3690
#, php-format
msgid "%d voter. Poll end: %s"
msgid_plural "%d voters. Poll end: %s"
@@ -3302,7 +3486,7 @@ msgstr[1] "%d голоса. Конец опроса: %s"
msgstr[2] "%d голосов. Конец опроса: %s"
msgstr[3] "%d голосов. Конец опроса: %s"
-#: src/Model/Item.php:3559
+#: src/Model/Item.php:3692
#, php-format
msgid "%d voter."
msgid_plural "%d voters."
@@ -3311,12 +3495,12 @@ msgstr[1] "%d голоса."
msgstr[2] "%d голосов."
msgstr[3] "%d голосов."
-#: src/Model/Item.php:3561
+#: src/Model/Item.php:3694
#, php-format
msgid "Poll end: %s"
msgstr "Конец опроса: %s"
-#: src/Model/Item.php:3595 src/Model/Item.php:3596
+#: src/Model/Item.php:3728 src/Model/Item.php:3729
msgid "View on separate page"
msgstr "Посмотреть в отдельной вкладке"
@@ -3324,227 +3508,228 @@ msgstr "Посмотреть в отдельной вкладке"
msgid "[no subject]"
msgstr "[без темы]"
-#: src/Model/Photo.php:1189 src/Module/Media/Photo/Upload.php:197
+#: src/Model/Photo.php:1190 src/Module/Media/Photo/Upload.php:170
msgid "Wall Photos"
msgstr "Фото стены"
-#: src/Model/Profile.php:361 src/Module/Profile/Profile.php:283
+#: 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/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:385
+#: src/Model/Profile.php:375 src/Module/Contact/Profile.php:412
#: src/Module/Notifications/Introductions.php:189
msgid "About:"
msgstr "О себе:"
-#: src/Model/Profile.php:467
+#: src/Model/Profile.php:465
msgid "Atom feed"
msgstr "Фид Atom"
-#: src/Model/Profile.php:474
+#: src/Model/Profile.php:472
msgid "This website has been verified to belong to the same person."
msgstr "Принадлежность этой веб-страницы данному пользователю была подтверждена."
-#: src/Model/Profile.php:511
+#: src/Model/Profile.php:509
msgid "F d"
msgstr "F d"
-#: src/Model/Profile.php:575 src/Model/Profile.php:664
+#: src/Model/Profile.php:573 src/Model/Profile.php:662
msgid "[today]"
msgstr "[сегодня]"
-#: src/Model/Profile.php:584
+#: src/Model/Profile.php:582
msgid "Birthday Reminders"
msgstr "Напоминания о днях рождения"
-#: src/Model/Profile.php:585
+#: src/Model/Profile.php:583
msgid "Birthdays this week:"
msgstr "Дни рождения на этой неделе:"
-#: src/Model/Profile.php:613
+#: src/Model/Profile.php:611
msgid "g A l F d"
msgstr "g A l F d"
-#: src/Model/Profile.php:651
+#: src/Model/Profile.php:649
msgid "[No description]"
msgstr "[без описания]"
-#: src/Model/Profile.php:677
+#: src/Model/Profile.php:675
msgid "Event Reminders"
msgstr "Напоминания о мероприятиях"
-#: src/Model/Profile.php:678
+#: src/Model/Profile.php:676
msgid "Upcoming events the next 7 days:"
msgstr "События на ближайшие 7 дней:"
-#: src/Model/Profile.php:875
+#: src/Model/Profile.php:873
#, php-format
msgid "OpenWebAuth: %1$s welcomes %2$s"
msgstr "OpenWebAuth: %1$s приветствует %2$s"
-#: src/Model/Profile.php:1015
+#: src/Model/Profile.php:1013
msgid "Hometown:"
msgstr "Родной город:"
-#: src/Model/Profile.php:1016
+#: src/Model/Profile.php:1014
msgid "Marital Status:"
msgstr "Семейное положение:"
-#: src/Model/Profile.php:1017
+#: src/Model/Profile.php:1015
msgid "With:"
msgstr "Вместе:"
-#: src/Model/Profile.php:1018
+#: src/Model/Profile.php:1016
msgid "Since:"
msgstr "С:"
-#: src/Model/Profile.php:1019
+#: src/Model/Profile.php:1017
msgid "Sexual Preference:"
msgstr "Сексуальные предпочтения:"
-#: src/Model/Profile.php:1020
+#: src/Model/Profile.php:1018
msgid "Political Views:"
msgstr "Политические взгляды:"
-#: src/Model/Profile.php:1021
+#: src/Model/Profile.php:1019
msgid "Religious Views:"
msgstr "Религиозные взгляды:"
-#: src/Model/Profile.php:1022
+#: src/Model/Profile.php:1020
msgid "Likes:"
msgstr "Нравится:"
-#: src/Model/Profile.php:1023
+#: src/Model/Profile.php:1021
msgid "Dislikes:"
msgstr "Не нравится:"
-#: src/Model/Profile.php:1024
+#: src/Model/Profile.php:1022
msgid "Title/Description:"
msgstr "Заголовок / Описание:"
-#: src/Model/Profile.php:1025 src/Module/Admin/Summary.php:221
+#: 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:1026
+#: src/Model/Profile.php:1024
msgid "Musical interests"
msgstr "Музыкальные интересы"
-#: src/Model/Profile.php:1027
+#: src/Model/Profile.php:1025
msgid "Books, literature"
msgstr "Книги, литература"
-#: src/Model/Profile.php:1028
+#: src/Model/Profile.php:1026
msgid "Television"
msgstr "Телевидение"
-#: src/Model/Profile.php:1029
+#: src/Model/Profile.php:1027
msgid "Film/dance/culture/entertainment"
msgstr "Кино / танцы / культура / развлечения"
-#: src/Model/Profile.php:1030
+#: src/Model/Profile.php:1028
msgid "Hobbies/Interests"
msgstr "Хобби / Интересы"
-#: src/Model/Profile.php:1031
+#: src/Model/Profile.php:1029
msgid "Love/romance"
msgstr "Любовь / романтика"
-#: src/Model/Profile.php:1032
+#: src/Model/Profile.php:1030
msgid "Work/employment"
msgstr "Работа / занятость"
-#: src/Model/Profile.php:1033
+#: src/Model/Profile.php:1031
msgid "School/education"
msgstr "Школа / образование"
-#: src/Model/Profile.php:1034
+#: src/Model/Profile.php:1032
msgid "Contact information and Social Networks"
msgstr "Контактная информация и социальные сети"
-#: src/Model/User.php:214 src/Model/User.php:1120
+#: src/Model/User.php:227 src/Model/User.php:1186
msgid "SERIOUS ERROR: Generation of security keys failed."
msgstr "СЕРЬЕЗНАЯ ОШИБКА: генерация ключей безопасности не удалась."
-#: src/Model/User.php:572 src/Model/User.php:605
+#: src/Model/User.php:620 src/Model/User.php:653
msgid "Login failed"
msgstr "Вход не удался"
-#: src/Model/User.php:637
+#: src/Model/User.php:685
msgid "Not enough information to authenticate"
msgstr "Недостаточно информации для входа"
-#: src/Model/User.php:754
+#: src/Model/User.php:806
msgid "Password can't be empty"
msgstr "Пароль не может быть пустым"
-#: src/Model/User.php:796
+#: src/Model/User.php:848
msgid "Empty passwords are not allowed."
msgstr "Пароль не должен быть пустым."
-#: src/Model/User.php:800
+#: 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:804
+#: src/Model/User.php:856
msgid "The password length is limited to 72 characters."
msgstr "Длина пароля ограничена 72 символами."
-#: src/Model/User.php:808
+#: src/Model/User.php:860
msgid "The password can't contain white spaces nor accentuated letters"
msgstr "Пароль не может содержать пробелов и букв с акцентами."
-#: src/Model/User.php:1003
+#: src/Model/User.php:1069
msgid "Passwords do not match. Password unchanged."
msgstr "Пароли не совпадают. Пароль не изменен."
-#: src/Model/User.php:1010
+#: src/Model/User.php:1076
msgid "An invitation is required."
msgstr "Требуется приглашение."
-#: src/Model/User.php:1014
+#: src/Model/User.php:1080
msgid "Invitation could not be verified."
msgstr "Приглашение не может быть проверено."
-#: src/Model/User.php:1022
+#: src/Model/User.php:1088
msgid "Invalid OpenID url"
msgstr "Неверный URL OpenID"
-#: src/Model/User.php:1035 src/Security/Authentication.php:241
+#: 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:1035 src/Security/Authentication.php:241
+#: src/Model/User.php:1101 src/Security/Authentication.php:241
msgid "The error message was:"
msgstr "Сообщение об ошибке было:"
-#: src/Model/User.php:1041
+#: src/Model/User.php:1107
msgid "Please enter the required information."
msgstr "Пожалуйста, введите необходимую информацию."
-#: src/Model/User.php:1055
+#: 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:1062
+#: src/Model/User.php:1128
#, php-format
msgid "Username should be at least %s character."
msgid_plural "Username should be at least %s characters."
@@ -3553,7 +3738,7 @@ msgstr[1] "Имя пользователя должно быть хотя бы %
msgstr[2] "Имя пользователя должно быть хотя бы %s символов."
msgstr[3] "Имя пользователя должно быть хотя бы %s символов."
-#: src/Model/User.php:1066
+#: src/Model/User.php:1132
#, php-format
msgid "Username should be at most %s character."
msgid_plural "Username should be at most %s characters."
@@ -3562,60 +3747,60 @@ msgstr[1] "Имя пользователя должно быть не больш
msgstr[2] "Имя пользователя должно быть не больше %s символов."
msgstr[3] "Имя пользователя должно быть не больше %s символов."
-#: src/Model/User.php:1074
+#: src/Model/User.php:1140
msgid "That doesn't appear to be your full (First Last) name."
msgstr "Кажется, что это ваше неполное (Имя Фамилия) имя."
-#: src/Model/User.php:1079
+#: src/Model/User.php:1145
msgid "Your email domain is not among those allowed on this site."
msgstr "Домен вашего адреса электронной почты не относится к числу разрешенных на этом сайте."
-#: src/Model/User.php:1083
+#: src/Model/User.php:1149
msgid "Not a valid email address."
msgstr "Неверный адрес электронной почты."
-#: src/Model/User.php:1086
+#: src/Model/User.php:1152
msgid "The nickname was blocked from registration by the nodes admin."
msgstr "Этот ник был заблокирован для регистрации администратором узла."
-#: src/Model/User.php:1090 src/Model/User.php:1096
+#: src/Model/User.php:1156 src/Model/User.php:1162
msgid "Cannot use that email."
msgstr "Нельзя использовать этот Email."
-#: src/Model/User.php:1102
+#: 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:1110 src/Model/User.php:1167
+#: src/Model/User.php:1176 src/Model/User.php:1233
msgid "Nickname is already registered. Please choose another."
msgstr "Такой ник уже зарегистрирован. Пожалуйста, выберите другой."
-#: src/Model/User.php:1154 src/Model/User.php:1158
+#: src/Model/User.php:1220 src/Model/User.php:1224
msgid "An error occurred during registration. Please try again."
msgstr "Ошибка при регистрации. Пожалуйста, попробуйте еще раз."
-#: src/Model/User.php:1181
+#: src/Model/User.php:1247
msgid "An error occurred creating your default profile. Please try again."
msgstr "Ошибка создания вашего профиля. Пожалуйста, попробуйте еще раз."
-#: src/Model/User.php:1188
+#: src/Model/User.php:1254
msgid "An error occurred creating your self contact. Please try again."
msgstr "При создании вашего контакта возникла проблема. Пожалуйста, попробуйте ещё раз."
-#: src/Model/User.php:1193
+#: src/Model/User.php:1259
msgid "Friends"
msgstr "Друзья"
-#: src/Model/User.php:1197
+#: 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:1236
+#: src/Model/User.php:1307
msgid "Profile Photos"
msgstr "Фотографии профиля"
-#: src/Model/User.php:1431
+#: src/Model/User.php:1487
#, php-format
msgid ""
"\n"
@@ -3623,7 +3808,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:1434
+#: src/Model/User.php:1490
#, php-format
msgid ""
"\n"
@@ -3653,14 +3838,14 @@ msgid ""
"\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 ""
+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:1467 src/Model/User.php:1574
+#: src/Model/User.php:1523 src/Model/User.php:1630
#, php-format
msgid "Registration details for %s"
msgstr "Подробности регистрации для %s"
-#: src/Model/User.php:1487
+#: src/Model/User.php:1543
#, php-format
msgid ""
"\n"
@@ -3675,12 +3860,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:1506
+#: src/Model/User.php:1562
#, php-format
msgid "Registration at %s"
msgstr "Регистрация на %s"
-#: src/Model/User.php:1530
+#: src/Model/User.php:1586
#, php-format
msgid ""
"\n"
@@ -3689,7 +3874,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:1538
+#: src/Model/User.php:1594
#, php-format
msgid ""
"\n"
@@ -3719,7 +3904,7 @@ msgid ""
"\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 ""
+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/Module/Admin/Addons/Details.php:65
msgid "Addon not found."
@@ -3746,10 +3931,10 @@ msgid "Enable"
msgstr "Включить"
#: src/Module/Admin/Addons/Details.php:111
-#: src/Module/Admin/Addons/Index.php:67 src/Module/Admin/Federation.php:209
+#: 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:220
+#: 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
@@ -3759,7 +3944,7 @@ msgstr "Администрирование"
#: src/Module/Admin/Addons/Details.php:112
#: src/Module/Admin/Addons/Index.php:68 src/Module/BaseAdmin.php:92
-#: src/Module/BaseSettings.php:134
+#: src/Module/BaseSettings.php:132
msgid "Addons"
msgstr "Дополнения"
@@ -3790,10 +3975,10 @@ 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:560 src/Module/Settings/Addons.php:78
+#: 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:169 src/Module/Settings/Display.php:247
+#: src/Module/Settings/Delegation.php:171 src/Module/Settings/Display.php:260
#: src/Module/Settings/Features.php:76
msgid "Save Settings"
msgstr "Сохранить настройки"
@@ -3878,15 +4063,17 @@ msgstr "Заблокировать %s"
msgid "Manage Additional Features"
msgstr "Управление дополнительными возможностями"
-#: src/Module/Admin/Federation.php:75
+#: 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:149 src/Module/Admin/Federation.php:398
+#: src/Module/Admin/Federation.php:154 src/Module/Admin/Federation.php:403
msgid "unknown"
msgstr "неизвестно"
-#: src/Module/Admin/Federation.php:182
+#: src/Module/Admin/Federation.php:187
#, php-format
msgid "%2$s total system"
msgid_plural "%2$s total systems"
@@ -3895,7 +4082,7 @@ msgstr[1] "%2$s системы всего"
msgstr[2] "%2$s систем всего"
msgstr[3] "%2$s систем всего"
-#: src/Module/Admin/Federation.php:183
+#: src/Module/Admin/Federation.php:188
#, php-format
msgid "%2$s active user last month"
msgid_plural "%2$s active users last month"
@@ -3904,7 +4091,7 @@ msgstr[1] "%2$s активных пользователя за месяц"
msgstr[2] "%2$s активных пользователей за месяц"
msgstr[3] "%2$s активных пользователей за месяц"
-#: src/Module/Admin/Federation.php:184
+#: 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"
@@ -3913,7 +4100,7 @@ msgstr[1] "%2$s активных пользователя за полгода"
msgstr[2] "%2$s активных пользователей за полгода"
msgstr[3] "%2$s активных пользователей за полгода"
-#: src/Module/Admin/Federation.php:185
+#: src/Module/Admin/Federation.php:190
#, php-format
msgid "%2$s registered user"
msgid_plural "%2$s registered users"
@@ -3922,7 +4109,7 @@ msgstr[1] "%2$s зарегистрированных пользователя"
msgstr[2] "%2$s зарегистрированных пользователей"
msgstr[3] "%2$s зарегистрированных пользователей"
-#: src/Module/Admin/Federation.php:186
+#: 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"
@@ -3931,7 +4118,7 @@ msgstr[1] "%2$s местных записей и комментариев"
msgstr[2] "%2$s местных записей и комментариев"
msgstr[3] "%2$s местных записей и комментариев"
-#: src/Module/Admin/Federation.php:189
+#: src/Module/Admin/Federation.php:194
#, php-format
msgid "%2$s post per user"
msgid_plural "%2$s posts per user"
@@ -3940,7 +4127,7 @@ msgstr[1] "%2$s записи на пользователя"
msgstr[2] "%2$s записей на пользователя"
msgstr[3] "%2$s записей на пользователя"
-#: src/Module/Admin/Federation.php:194
+#: src/Module/Admin/Federation.php:199
#, php-format
msgid "%2$s user per system"
msgid_plural "%2$s users per system"
@@ -3949,18 +4136,18 @@ msgstr[1] "%2$s пользователя на систему"
msgstr[2] "%2$s пользователей на систему"
msgstr[3] "%2$s пользователей на систему"
-#: src/Module/Admin/Federation.php:204
+#: 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:210 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:214
+#: src/Module/Admin/Federation.php:219
#, php-format
msgid ""
"Currently this node is aware of %2$s node (%3$s active users last month, "
@@ -4155,7 +4342,8 @@ msgstr "Команда"
msgid "Job Parameters"
msgstr "Параметры задания"
-#: src/Module/Admin/Queue.php:78 src/Module/Settings/OAuth.php:74
+#: src/Module/Admin/Queue.php:78 src/Module/Moderation/Reports.php:95
+#: src/Module/Settings/OAuth.php:74
msgid "Created"
msgstr "Создано"
@@ -4168,11 +4356,11 @@ msgstr "Приоритет"
msgid "%s is no valid input for maximum image size"
msgstr "%s недопустимое значение для максимального размера изображений"
-#: src/Module/Admin/Site.php:313 src/Module/Settings/Display.php:169
+#: 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:179
+#: src/Module/Admin/Site.php:330 src/Module/Settings/Display.php:188
#, php-format
msgid "%s - (Experimental)"
msgstr "%s - (экспериментально)"
@@ -4262,7 +4450,7 @@ msgid "Policies"
msgstr "Политики"
#: src/Module/Admin/Site.php:406 src/Module/Calendar/Event/Form.php:252
-#: src/Module/Contact.php:516 src/Module/Profile/Profile.php:276
+#: src/Module/Contact.php:547 src/Module/Profile/Profile.php:276
msgid "Advanced"
msgstr "Дополнительно"
@@ -4459,7 +4647,7 @@ msgstr "Политика регистрация"
#: src/Module/Admin/Site.php:443
msgid "Maximum Users"
-msgstr ""
+msgstr "Максимум пользователей"
#: src/Module/Admin/Site.php:443
msgid ""
@@ -4467,7 +4655,7 @@ msgid ""
"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 ""
+msgstr "Если включено, регистрация будет автоматически закрываться при достижении указанного числа пользователей и вновь открываться, если число пользователей снова снизится. Это работает только, если регистрация установлена как открытая или закрытая, но не когда включено её одобрение."
#: src/Module/Admin/Site.php:444
msgid "Maximum Daily Registrations"
@@ -4592,8 +4780,8 @@ msgstr "Частные сообщения по умолчанию для нов
#: 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:456
msgid "Don't include post content in email notifications"
@@ -5007,14 +5195,14 @@ 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 group when calculating network count"
-msgstr "Показывать счётчики записей по группам при обновлении страницы сети"
+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 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:509
msgid "Maximum number of parallel workers"
@@ -5057,7 +5245,7 @@ msgid ""
"received."
msgstr "Допустимые значения \"all\" или \"tags\". \"all\" означает, что любые публичные записи будут получены. \"tags\" включает приём публичных записей с выбранными тэгами."
-#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:286
+#: src/Module/Admin/Site.php:513 src/Module/Contact/Profile.php:309
#: src/Module/Settings/TwoFactor/Index.php:125
msgid "Disabled"
msgstr "Отключено"
@@ -5252,51 +5440,40 @@ msgid ""
"href=\"%s\">the installation page for help."
msgstr "%s не доступен на вашей системе. Это серьёзная проблема, которая мешает межсерверной коммуникации. Посмотрите страницу установки для помощи."
-#: 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
+#: 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:180
+#: 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:188
+#: 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:199
+#: src/Module/Admin/Summary.php:175
msgid "Message queues"
msgstr "Очереди сообщений"
-#: src/Module/Admin/Summary.php:205
+#: src/Module/Admin/Summary.php:181
msgid "Server Settings"
msgstr "Настройки сервера"
-#: src/Module/Admin/Summary.php:223
+#: src/Module/Admin/Summary.php:199
msgid "Version"
msgstr "Версия"
-#: src/Module/Admin/Summary.php:227
+#: src/Module/Admin/Summary.php:203
msgid "Active addons"
msgstr "Активные дополнения"
@@ -5449,11 +5626,11 @@ msgstr "Пункт не был найден."
msgid "Please login to continue."
msgstr "Пожалуйста, войдите для продолжения."
-#: src/Module/BaseAdmin.php:63 src/Module/BaseModeration.php:86
+#: src/Module/BaseAdmin.php:63
msgid "You don't have access to administration pages."
msgstr "У вас нет доступа к страницам администратора."
-#: src/Module/BaseAdmin.php:67 src/Module/BaseModeration.php:90
+#: src/Module/BaseAdmin.php:67
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
@@ -5463,11 +5640,11 @@ msgstr "Дополнительная учётная запись не имеет
msgid "Overview"
msgstr "Общая информация"
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:111
+#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
msgid "Configuration"
msgstr "Конфигурация"
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:112
+#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
msgid "Additional features"
msgstr "Дополнительные возможности"
@@ -5487,7 +5664,7 @@ msgstr "Посмотреть отложенные задания"
msgid "Inspect worker Queue"
msgstr "Посмотреть очередь заданий"
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:119
+#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
msgid "Diagnostics"
msgstr "Диагностика"
@@ -5515,7 +5692,7 @@ msgstr ""
msgid "Addon Features"
msgstr ""
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:128
+#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:129
msgid "User registrations waiting for confirmation"
msgstr "Регистрации пользователей, ожидающие подтверждения"
@@ -5553,32 +5730,46 @@ msgstr[1] "Месячный лимит в %d записей достигнут.
msgstr[2] "Месячный лимит в%d записей достигнут. Запись была отклонена."
msgstr[3] "Месячный лимит в %d записей достигнут. Запись была отклонена."
-#: src/Module/BaseModeration.php:112 src/Module/Moderation/Users/Index.php:148
+#: 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:114
+#: src/Module/BaseModeration.php:115
msgid "Tools"
msgstr "Инструменты"
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:116
msgid "Contact Blocklist"
msgstr "Чёрный список контактов"
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:117
msgid "Server Blocklist"
msgstr "Чёрный список серверов"
-#: src/Module/BaseModeration.php:117 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
msgid "Delete Item"
msgstr "Удалить запись"
-#: src/Module/BaseModeration.php:120 src/Module/Moderation/Item/Source.php:76
+#: 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:478
+#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507
msgid "Profile Details"
msgstr "Информация о вас"
@@ -5602,15 +5793,15 @@ msgstr "Записи, публикация которых запланирова
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/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139
msgid "No matches"
@@ -5631,36 +5822,40 @@ msgstr[1] ""
msgstr[2] ""
msgstr[3] ""
-#: src/Module/BaseSettings.php:80
+#: src/Module/BaseSettings.php:78
msgid "Account"
msgstr "Аккаунт"
-#: src/Module/BaseSettings.php:87 src/Module/Security/TwoFactor/Verify.php:96
+#: 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:120
+#: src/Module/BaseSettings.php:118
msgid "Display"
msgstr "Внешний вид"
-#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:204
+#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204
msgid "Social Networks"
msgstr "Социальные сети"
-#: src/Module/BaseSettings.php:141 src/Module/Settings/Delegation.php:170
+#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172
msgid "Manage Accounts"
msgstr "Управление учётными записями"
-#: src/Module/BaseSettings.php:148
+#: src/Module/BaseSettings.php:146
msgid "Connected apps"
msgstr "Подключенные приложения"
-#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:98
+#: 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:162
+#: src/Module/BaseSettings.php:167
msgid "Remove account"
msgstr "Удалить аккаунт"
@@ -5675,11 +5870,11 @@ 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 ""
+msgstr "Неверный запрос"
#: src/Module/Calendar/Event/API.php:109
msgid "Event id is missing."
-msgstr ""
+msgstr "Отсутствует id события"
#: src/Module/Calendar/Event/API.php:131
msgid "Failed to remove event"
@@ -5780,10 +5975,113 @@ msgstr "Смотреть"
msgid "Create New Event"
msgstr "Создать новое мероприятие"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:235
+#: 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."
@@ -5793,159 +6091,146 @@ msgstr[1] "%d контакта изменено."
msgstr[2] "%d контактов изменены."
msgstr[3] "%d контактов изменены."
-#: src/Module/Contact.php:341
+#: src/Module/Contact.php:348
msgid "Show all contacts"
msgstr "Показать все контакты"
-#: src/Module/Contact.php:346 src/Module/Contact.php:414
+#: src/Module/Contact.php:353 src/Module/Contact.php:432
#: src/Module/Moderation/BaseUsers.php:85
msgid "Pending"
msgstr "В ожидании"
-#: src/Module/Contact.php:349
+#: src/Module/Contact.php:356
msgid "Only show pending contacts"
msgstr "Показать только контакты \"в ожидании\""
-#: src/Module/Contact.php:354 src/Module/Contact.php:415
+#: src/Module/Contact.php:361 src/Module/Contact.php:435
#: src/Module/Moderation/BaseUsers.php:93
msgid "Blocked"
msgstr "Заблокированы"
-#: src/Module/Contact.php:357
+#: src/Module/Contact.php:364
msgid "Only show blocked contacts"
msgstr "Показать только блокированные контакты"
-#: src/Module/Contact.php:362 src/Module/Contact.php:417
-#: src/Object/Post.php:345
+#: 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:365
+#: src/Module/Contact.php:372
msgid "Only show ignored contacts"
msgstr "Показать только игнорируемые контакты"
-#: src/Module/Contact.php:370 src/Module/Contact.php:418
+#: src/Module/Contact.php:377 src/Module/Contact.php:444
msgid "Collapsed"
msgstr "Свёрнуто"
-#: src/Module/Contact.php:373
+#: src/Module/Contact.php:380
msgid "Only show collapsed contacts"
msgstr "Показать только сворачиваемые контакты"
-#: src/Module/Contact.php:378 src/Module/Contact.php:419
+#: src/Module/Contact.php:385 src/Module/Contact.php:447
msgid "Archived"
msgstr "Архивированные"
-#: src/Module/Contact.php:381
+#: src/Module/Contact.php:388
msgid "Only show archived contacts"
msgstr "Показывать только архивные контакты"
-#: src/Module/Contact.php:386 src/Module/Contact.php:416
+#: src/Module/Contact.php:393 src/Module/Contact.php:438
msgid "Hidden"
msgstr "Скрытые"
-#: src/Module/Contact.php:389
+#: src/Module/Contact.php:396
msgid "Only show hidden contacts"
msgstr "Показывать только скрытые контакты"
-#: src/Module/Contact.php:397
-msgid "Organize your contact groups"
-msgstr "Настроить группы контактов"
+#: src/Module/Contact.php:404
+msgid "Organize your contact circles"
+msgstr "Настроить круги контактов"
-#: src/Module/Contact.php:430
+#: src/Module/Contact.php:459
msgid "Search your contacts"
msgstr "Поиск ваших контактов"
-#: src/Module/Contact.php:431 src/Module/Search/Index.php:207
+#: src/Module/Contact.php:460 src/Module/Search/Index.php:207
#, php-format
msgid "Results for: %s"
msgstr "Результаты для: %s"
-#: src/Module/Contact.php:438
+#: src/Module/Contact.php:467
msgid "Update"
msgstr "Обновление"
-#: src/Module/Contact.php:439 src/Module/Contact/Profile.php:477
+#: 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:440 src/Module/Contact/Profile.php:485
+#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519
msgid "Unignore"
msgstr "Не игнорировать"
-#: src/Module/Contact.php:441 src/Module/Contact/Profile.php:493
+#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527
msgid "Uncollapse"
msgstr "Не сворачивать"
-#: src/Module/Contact.php:443
+#: src/Module/Contact.php:472
msgid "Batch Actions"
msgstr "Пакетные действия"
-#: src/Module/Contact.php:486
+#: src/Module/Contact.php:515
msgid "Conversations started by this contact"
msgstr "Диалоги этого контакта"
-#: src/Module/Contact.php:491
+#: src/Module/Contact.php:520
msgid "Posts and Comments"
msgstr "Записи и комментарии"
-#: src/Module/Contact.php:494
+#: src/Module/Contact.php:523
msgid "Individual Posts and Replies"
msgstr "Отдельные записи и ответы"
-#: src/Module/Contact.php:502
+#: src/Module/Contact.php:531
msgid "Posts containing media objects"
msgstr "Записи с медиа"
-#: src/Module/Contact.php:509
+#: src/Module/Contact.php:539
msgid "View all known contacts"
msgstr "Показать все известные контакты"
-#: src/Module/Contact.php:519
+#: src/Module/Contact.php:550
msgid "Advanced Contact Settings"
msgstr "Дополнительные Настройки Контакта"
-#: src/Module/Contact.php:555
+#: src/Module/Contact.php:586
msgid "Mutual Friendship"
msgstr "Взаимная дружба"
-#: src/Module/Contact.php:559
+#: src/Module/Contact.php:590
msgid "is a fan of yours"
msgstr "является вашим поклонником"
-#: src/Module/Contact.php:563
+#: src/Module/Contact.php:594
msgid "you are a fan of"
msgstr "Вы - поклонник"
-#: src/Module/Contact.php:581
+#: src/Module/Contact.php:612
msgid "Pending outgoing contact request"
msgstr "Исходящий запрос на подписку"
-#: src/Module/Contact.php:583
+#: src/Module/Contact.php:614
msgid "Pending incoming contact request"
msgstr "Входящий запрос на подписку"
-#: src/Module/Contact.php:596 src/Module/Contact/Profile.php:346
+#: 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: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
-#: src/Module/Group.php:97 src/Module/Group.php:106
-msgid "Contact not found."
-msgstr "Контакт не найден."
-
#: src/Module/Contact/Advanced.php:99
msgid "Contact update failed."
msgstr "Обновление контакта неудачное."
@@ -5956,6 +6241,7 @@ 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
@@ -5982,11 +6268,6 @@ msgstr "URL опроса/ленты"
msgid "New photo from this URL"
msgstr "Новое фото из этой URL"
-#: src/Module/Contact/Contacts.php:66 src/Module/Conversation/Network.php:189
-#: src/Module/Group.php:101
-msgid "Invalid contact."
-msgstr "Недопустимый контакт."
-
#: src/Module/Contact/Contacts.php:89
msgid "No known contacts."
msgstr "Нет известных контактов."
@@ -6053,7 +6334,7 @@ msgstr[2] "Контакты (%s)"
msgstr[3] "Контакты (%s)"
#: 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/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
@@ -6091,15 +6372,16 @@ msgstr "Пожалуйста, ответьте следующее:"
msgid "Your Identity Address:"
msgstr "Ваш адрес:"
-#: src/Module/Contact/Follow.php:170 src/Module/Contact/Profile.php:375
+#: 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:387
+#: 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:"
@@ -6125,8 +6407,8 @@ 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:82 src/Module/Media/Photo/Upload.php:87
-#: src/Module/Media/Photo/Upload.php:136
+#: 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 "Неверный запрос."
@@ -6138,248 +6420,312 @@ msgstr "Нет совпадающих ключевых слов. Пожалуй
msgid "Profile Match"
msgstr "Похожие профили"
-#: src/Module/Contact/Profile.php:128
+#: 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:210
+#: src/Module/Contact/Profile.php:222
msgid "Contact has been uncollapsed"
msgstr "Записи контакта не сворачиваются"
-#: src/Module/Contact/Profile.php:214
+#: src/Module/Contact/Profile.php:226
msgid "Contact has been collapsed"
msgstr "Записи контакта сворачиваются"
-#: src/Module/Contact/Profile.php:242
+#: src/Module/Contact/Profile.php:254
#, php-format
msgid "You are mutual friends with %s"
msgstr "У Вас взаимная дружба с %s"
-#: src/Module/Contact/Profile.php:243
+#: src/Module/Contact/Profile.php:255
#, php-format
msgid "You are sharing with %s"
msgstr "Вы делитесь с %s"
-#: src/Module/Contact/Profile.php:244
+#: src/Module/Contact/Profile.php:256
#, php-format
msgid "%s is sharing with you"
msgstr "%s делится с Вами"
-#: src/Module/Contact/Profile.php:260
+#: src/Module/Contact/Profile.php:272
msgid "Private communications are not available for this contact."
msgstr "Приватные коммуникации недоступны для этого контакта."
-#: src/Module/Contact/Profile.php:262
+#: 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:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was not successful)"
msgstr "(Обновление не удалось)"
-#: src/Module/Contact/Profile.php:265
+#: src/Module/Contact/Profile.php:288
msgid "(Update was successful)"
msgstr "(Обновление было успешно)"
-#: src/Module/Contact/Profile.php:267 src/Module/Contact/Profile.php:448
+#: src/Module/Contact/Profile.php:290 src/Module/Contact/Profile.php:482
msgid "Suggest friends"
msgstr "Предложить друзей"
-#: src/Module/Contact/Profile.php:271
+#: src/Module/Contact/Profile.php:294
#, php-format
msgid "Network type: %s"
msgstr "Сеть: %s"
-#: src/Module/Contact/Profile.php:276
+#: src/Module/Contact/Profile.php:299
msgid "Communications lost with this contact!"
msgstr "Связь с контактом утеряна!"
-#: src/Module/Contact/Profile.php:282
+#: src/Module/Contact/Profile.php:305
msgid "Fetch further information for feeds"
msgstr "Получить подробную информацию о фидах"
-#: src/Module/Contact/Profile.php:284
+#: 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:287
+#: src/Module/Contact/Profile.php:310
msgid "Fetch information"
msgstr "Получить информацию"
-#: src/Module/Contact/Profile.php:288
+#: src/Module/Contact/Profile.php:311
msgid "Fetch keywords"
msgstr "Получить ключевые слова"
-#: src/Module/Contact/Profile.php:289
+#: src/Module/Contact/Profile.php:312
msgid "Fetch information and keywords"
msgstr "Получить информацию и ключевые слова"
-#: src/Module/Contact/Profile.php:299 src/Module/Contact/Profile.php:304
-#: src/Module/Contact/Profile.php:309 src/Module/Contact/Profile.php:315
+#: 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:300 src/Module/Contact/Profile.php:310
-#: src/Module/Contact/Profile.php:316
+#: 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:305 src/Module/Contact/Profile.php:311
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334
msgid "Native reshare"
msgstr "Обычный репост"
-#: src/Module/Contact/Profile.php:328
+#: src/Module/Contact/Profile.php:353
msgid "Contact Information / Notes"
msgstr "Информация о контакте / Заметки"
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:354
msgid "Contact Settings"
msgstr "Настройки контакта"
-#: src/Module/Contact/Profile.php:337
+#: src/Module/Contact/Profile.php:362
msgid "Contact"
msgstr "Контакт"
-#: src/Module/Contact/Profile.php:341
+#: src/Module/Contact/Profile.php:366
msgid "Their personal note"
msgstr "Персональная заметка"
-#: src/Module/Contact/Profile.php:343
+#: src/Module/Contact/Profile.php:368
msgid "Edit contact notes"
msgstr "Редактировать заметки контакта"
-#: src/Module/Contact/Profile.php:347
+#: src/Module/Contact/Profile.php:372
msgid "Block/Unblock contact"
msgstr "Блокировать / Разблокировать контакт"
-#: src/Module/Contact/Profile.php:348
+#: src/Module/Contact/Profile.php:373
+#: src/Module/Moderation/Report/Create.php:293
msgid "Ignore contact"
msgstr "Игнорировать контакт"
-#: src/Module/Contact/Profile.php:349
+#: src/Module/Contact/Profile.php:374
msgid "View conversations"
msgstr "Просмотр бесед"
-#: src/Module/Contact/Profile.php:354
+#: src/Module/Contact/Profile.php:379
msgid "Last update:"
msgstr "Последнее обновление: "
-#: src/Module/Contact/Profile.php:356
+#: src/Module/Contact/Profile.php:381
msgid "Update public posts"
msgstr "Обновить публичные сообщения"
-#: src/Module/Contact/Profile.php:358 src/Module/Contact/Profile.php:458
+#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492
msgid "Update now"
msgstr "Обновить сейчас"
-#: src/Module/Contact/Profile.php:360
+#: src/Module/Contact/Profile.php:385
msgid "Awaiting connection acknowledge"
msgstr "Ожидаем подтверждения соединения"
-#: src/Module/Contact/Profile.php:361
+#: src/Module/Contact/Profile.php:386
msgid "Currently blocked"
msgstr "В настоящее время заблокирован"
-#: src/Module/Contact/Profile.php:362
+#: src/Module/Contact/Profile.php:387
msgid "Currently ignored"
msgstr "В настоящее время игнорируется"
-#: src/Module/Contact/Profile.php:363
+#: src/Module/Contact/Profile.php:388
msgid "Currently collapsed"
msgstr "В настоящее время сворачивается"
-#: src/Module/Contact/Profile.php:364
+#: src/Module/Contact/Profile.php:389
msgid "Currently archived"
msgstr "В данный момент архивирован"
-#: src/Module/Contact/Profile.php:367
+#: 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:367
+#: src/Module/Contact/Profile.php:394
msgid ""
"Replies/likes to your public posts may still be visible"
msgstr "Ответы/лайки ваших публичных сообщений будут видимы."
-#: src/Module/Contact/Profile.php:368
+#: src/Module/Contact/Profile.php:395
msgid "Notification for new posts"
msgstr "Уведомление о новых записях"
-#: src/Module/Contact/Profile.php:368
+#: src/Module/Contact/Profile.php:395
msgid "Send a notification of every new post of this contact"
msgstr "Отправлять уведомление о каждом новой записи контакта"
-#: src/Module/Contact/Profile.php:370
+#: src/Module/Contact/Profile.php:397
msgid "Keyword Deny List"
msgstr "Запретный список слов"
-#: src/Module/Contact/Profile.php:370
+#: 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:388
+#: src/Module/Contact/Profile.php:415
#: src/Module/Settings/TwoFactor/Index.php:139
msgid "Actions"
msgstr "Действия"
-#: src/Module/Contact/Profile.php:390
+#: 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:396
+#: src/Module/Contact/Profile.php:423
msgid "Mirror postings from this contact"
msgstr "Зекралировать сообщения от этого контакта"
-#: src/Module/Contact/Profile.php:398
+#: 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:468
+#: 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:479
+#: src/Module/Contact/Profile.php:513
msgid "Toggle Blocked status"
msgstr "Изменить статус блокированности (заблокировать/разблокировать)"
-#: src/Module/Contact/Profile.php:487
+#: src/Module/Contact/Profile.php:521
msgid "Toggle Ignored status"
msgstr "Изменить статус игнорирования"
-#: src/Module/Contact/Profile.php:495
+#: src/Module/Contact/Profile.php:529
msgid "Toggle Collapsed status"
msgstr "Изменить статус сворачивания"
-#: src/Module/Contact/Profile.php:502 src/Module/Contact/Revoke.php:106
+#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106
msgid "Revoke Follow"
msgstr "Отозвать подписку"
-#: src/Module/Contact/Profile.php:504
+#: src/Module/Contact/Profile.php:538
msgid "Revoke the follow from this contact"
msgstr "Отменить подписку этого контакта на вас"
@@ -6391,10 +6737,6 @@ msgstr "Ошибочный запрос."
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 "Контакт удаляется."
@@ -6442,102 +6784,54 @@ msgstr "Подписка успешно удалена"
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr "Не получается отписаться от этого контакта, пожалуйста, свяжитесь с вашим администратором"
-#: src/Module/Conversation/Community.php:74
+#: 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/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:87
-msgid "Local Community"
-msgstr "Местное сообщество"
-
-#: src/Module/Conversation/Community.php:90
-msgid "Posts from local users on this server"
-msgstr "Записи пользователей с этого сервера"
-
-#: src/Module/Conversation/Community.php:98
-msgid "Global Community"
-msgstr "Глобальное сообщество"
-
-#: src/Module/Conversation/Community.php:101
-msgid "Posts from users of the whole federated network"
-msgstr "Записи пользователей со всей федеративной сети"
-
-#: 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 "Нет результатов."
-
-#: 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:175
-msgid "No such group"
-msgstr "Нет такой группы"
+#: src/Module/Conversation/Network.php:218
+msgid "No such circle"
+msgstr "Нет такого круга"
-#: src/Module/Conversation/Network.php:179
+#: src/Module/Conversation/Network.php:222
#, php-format
-msgid "Group: %s"
-msgstr "Группа: %s"
+msgid "Circle: %s"
+msgstr "Круг: %s"
-#: src/Module/Conversation/Network.php:257
-msgid "Latest Activity"
-msgstr "Вся активность"
+#: src/Module/Conversation/Network.php:317
+msgid "Network feed not available."
+msgstr "Лента недоступна"
-#: src/Module/Conversation/Network.php:260
-msgid "Sort by latest activity"
-msgstr "Отсортировать по свежей активности"
+#: src/Module/Conversation/Timeline.php:158
+msgid "Own Contacts"
+msgstr "Свои контакты"
-#: src/Module/Conversation/Network.php:265
-msgid "Latest Posts"
-msgstr "Новые записи"
+#: src/Module/Conversation/Timeline.php:162
+msgid "Include"
+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 "Личные"
-
-#: src/Module/Conversation/Network.php:284
-msgid "Posts that mention or involve you"
-msgstr "Записи, которые упоминают вас или в которых вы участвуете"
-
-#: src/Module/Conversation/Network.php:289 src/Object/Post.php:357
-msgid "Starred"
-msgstr "Избранное"
-
-#: src/Module/Conversation/Network.php:292
-msgid "Favourite Posts"
-msgstr "Избранные записи"
+#: src/Module/Conversation/Timeline.php:163
+msgid "Hide"
+msgstr "Скрыть"
#: src/Module/Credits.php:44
msgid "Credits"
@@ -6757,7 +7051,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:144
+#: src/Module/Settings/Profile/Index.php:177
msgid "You must be logged in to use this module"
msgstr "Вы должны быть залогинены для использования этого модуля"
@@ -6886,138 +7180,58 @@ msgstr "Предложить друзей"
msgid "Suggest a friend for %s"
msgstr "Предложить друга для %s."
-#: src/Module/Friendica.php:64
+#: src/Module/Friendica.php:82
msgid "Installed addons/apps:"
msgstr "Установленные дополнения:"
-#: src/Module/Friendica.php:69
+#: src/Module/Friendica.php:87
msgid "No installed addons/apps"
msgstr "Нет установленных дополнений"
-#: src/Module/Friendica.php:74
+#: src/Module/Friendica.php:92
#, php-format
msgid "Read about the Terms of Service of this node."
msgstr "Ознакомьтесь с Условиями Предоставления Услуг этого узла."
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:99
msgid "On this server the following remote servers are blocked."
msgstr "На этом сервере заблокированы следующие удалённые серверы."
-#: 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 "Причина блокировки"
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:104
msgid "Download this list in CSV format"
msgstr "Скачать этот список в формате CSV"
-#: src/Module/Friendica.php:100
+#: 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:105
+#: 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:106
+#: src/Module/Friendica.php:124
msgid "Bug reports and issues: please visit"
msgstr "Отчет об ошибках и проблемах: пожалуйста, посетите"
-#: src/Module/Friendica.php:106
+#: src/Module/Friendica.php:124
msgid "the bugtracker at github"
msgstr "багтрекер на github"
-#: src/Module/Friendica.php:107
+#: 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 "Нет профиля"
@@ -7311,30 +7525,26 @@ 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/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 "Лента недоступна для этого объекта."
@@ -7390,20 +7600,13 @@ msgstr "Файл превышает лимит размера в %s"
msgid "File upload failed."
msgstr "Загрузка файла не удалась."
-#: src/Module/Media/Photo/Upload.php:153 src/Module/Media/Photo/Upload.php:154
+#: 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:187 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/Media/Photo/Upload.php:205 src/Module/Profile/Photos.php:243
+#: 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 "Загрузка фото неудачная."
@@ -7436,41 +7639,41 @@ msgstr "Удалённые"
msgid "List of pending user deletions"
msgstr "Список ожидающих удаления"
-#: src/Module/Moderation/BaseUsers.php:119 src/Module/Settings/Account.php:491
+#: 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:498
+#: 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:505
-msgid "Public Forum"
-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:512
+#: 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 Forum"
-msgstr "Закрытый форум"
+msgid "Private Group"
+msgstr "Закрытая группа"
-#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:463
+#: 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:470
+#: 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:477
+#: 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:484
-msgid "Community Forum"
-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"
@@ -7528,6 +7731,7 @@ msgid "Block New Remote Contact"
msgstr "Заблокировать новый контакт"
#: src/Module/Moderation/Blocklist/Contact.php:122
+#: src/Module/Moderation/Reports.php:95
msgid "Photo"
msgstr "Фото"
@@ -7605,6 +7809,8 @@ 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 "Имя сервера"
@@ -7895,6 +8101,239 @@ msgstr ""
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 "Обычный аккаунт"
@@ -7904,8 +8343,8 @@ msgid "Automatic Follower Account"
msgstr "\"Автоматический друг\" Аккаунт"
#: src/Module/Moderation/Summary.php:55
-msgid "Public Forum Account"
-msgstr "Публичный форум"
+msgid "Public Group Account"
+msgstr "Публичная группа"
#: src/Module/Moderation/Summary.php:56
msgid "Automatic Friend Account"
@@ -7916,8 +8355,8 @@ msgid "Blog Account"
msgstr "Аккаунт блога"
#: src/Module/Moderation/Summary.php:58
-msgid "Private Forum Account"
-msgstr "Закрытый форум"
+msgid "Private Group Account"
+msgstr "Закрытая группа"
#: src/Module/Moderation/Summary.php:78
msgid "Registered users"
@@ -8227,11 +8666,11 @@ msgstr "Уведомления"
msgid "Show unread"
msgstr "Показать непрочитанные"
-#: src/Module/Notifications/Ping.php:245
+#: src/Module/Notifications/Ping.php:246
msgid "{0} requested registration"
msgstr "{0} запрос на регистрацию"
-#: src/Module/Notifications/Ping.php:254
+#: src/Module/Notifications/Ping.php:255
#, php-format
msgid "{0} and %d others requested registration"
msgstr "{0} и %d других запросов на регистрацию"
@@ -8250,7 +8689,7 @@ msgstr "Вы действительно хотите разрешить этом
msgid "Unsupported or missing response type"
msgstr "Неподдерживаемый или отсутствующий тип отклика"
-#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:77
+#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78
msgid "Incomplete request data"
msgstr "Неполные данные запроса"
@@ -8261,11 +8700,11 @@ msgid ""
"close this window: %s"
msgstr "Пожалуйста, скопируйте следующий код аутентификации в ваше приложение и закройте это окно: %s"
-#: src/Module/OAuth/Token.php:82
+#: src/Module/OAuth/Token.php:83
msgid "Invalid data or unknown client"
msgstr ""
-#: src/Module/OAuth/Token.php:104
+#: src/Module/OAuth/Token.php:108
msgid "Unsupported or missing grant type"
msgstr ""
@@ -8390,21 +8829,21 @@ msgstr ""
msgid "Attributed To: %s
"
msgstr ""
-#: src/Module/Photo.php:129
+#: src/Module/Photo.php:130
msgid "The Photo is not available."
msgstr "Фото недоступно."
-#: src/Module/Photo.php:154
+#: src/Module/Photo.php:155
#, php-format
msgid "The Photo with id %s is not available."
msgstr "Фотография с id %s недоступна."
-#: src/Module/Photo.php:191
+#: src/Module/Photo.php:192
#, php-format
msgid "Invalid external resource with url %s."
msgstr "Проблема с внешним ресурсом по адресу %s."
-#: src/Module/Photo.php:193
+#: src/Module/Photo.php:194
#, php-format
msgid "Invalid photo with id %s."
msgstr "Неправильное фото с id %s."
@@ -8445,7 +8884,7 @@ msgstr "Удалить ключевое слово"
msgid "Select a tag to remove: "
msgstr "Выберите ключевое слово для удаления: "
-#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:178
+#: src/Module/Post/Tag/Remove.php:108 src/Module/Settings/Delegation.php:180
#: src/Module/Settings/TwoFactor/Trusted.php:144
msgid "Remove"
msgstr "Удалить"
@@ -8456,24 +8895,31 @@ msgstr "Нет контактов."
#: 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:1032
-#: src/Protocol/OStatus.php:1007
+#: 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:1036 src/Protocol/OStatus.php:1012
+#: 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:1039 src/Protocol/OStatus.php:1016
+#: 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 "Не получилось загрузить изображение, попробуйте снова"
@@ -8492,7 +8938,7 @@ msgstr "Сервер не принимает новые файлы для заг
msgid "Image file is empty."
msgstr "Файл изображения пуст."
-#: src/Module/Profile/Photos.php:376
+#: src/Module/Profile/Photos.php:356
msgid "View Album"
msgstr "Просмотреть альбом"
@@ -8507,7 +8953,7 @@ msgid ""
"class=\"btn btn-sm pull-right\">Cancel"
msgstr "Сейчас вы видите свой профиль как %s Отмена"
-#: src/Module/Profile/Profile.php:167 src/Module/Settings/Account.php:575
+#: src/Module/Profile/Profile.php:167
msgid "Full Name:"
msgstr "Полное имя:"
@@ -8528,12 +8974,12 @@ msgid "Birthday:"
msgstr "День рождения:"
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
msgid "Age: "
msgstr "Возраст: "
#: src/Module/Profile/Profile.php:190
-#: src/Module/Settings/Profile/Index.php:253 src/Util/Temporal.php:170
+#: src/Module/Settings/Profile/Index.php:291 src/Util/Temporal.php:170
#, php-format
msgid "%d year old"
msgid_plural "%d years old"
@@ -8543,13 +8989,13 @@ msgstr[2] "%dлет"
msgstr[3] "%dлет"
#: src/Module/Profile/Profile.php:195
-#: src/Module/Settings/Profile/Index.php:246
+#: src/Module/Settings/Profile/Index.php:284
msgid "Description:"
msgstr "Описание:"
#: src/Module/Profile/Profile.php:261
-msgid "Forums:"
-msgstr "Форумы:"
+msgid "Groups:"
+msgstr "Группы:"
#: src/Module/Profile/Profile.php:273
msgid "View profile as:"
@@ -8719,7 +9165,7 @@ 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
+#: src/Module/Settings/Account.php:567
msgid "New Password:"
msgstr "Новый пароль:"
@@ -8728,7 +9174,7 @@ 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:567
+#: src/Module/Settings/Account.php:568
msgid "Confirm:"
msgstr "Подтвердите:"
@@ -8755,11 +9201,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:156
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:156
msgid ""
"Please enter the password of the parent account to legitimize your request."
msgstr "Пожалуйста введите пароль от родительского аккаунта для подтверждения запроса."
@@ -8946,24 +9392,24 @@ msgid "Update Password"
msgstr "Изменить пароль"
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: src/Module/Settings/Account.php:569
msgid "Current Password:"
msgstr "Текущий пароль:"
#: src/Module/Security/PasswordTooLong.php:99
-#: src/Module/Settings/Account.php:568
+#: 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:552
+#: 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 "Допустимые символы a-z, A-Z, 0-9 и специальные символы за исключением пробелов и букв с акцентами."
#: src/Module/Security/PasswordTooLong.php:100
-#: src/Module/Settings/Account.php:553
+#: src/Module/Settings/Account.php:554
msgid "Password length is limited to 72 characters."
msgstr "Длина пароля ограничена 72-мя символами."
@@ -9087,99 +9533,99 @@ msgstr "Неправильный адрес почты"
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
+#: 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:363
+#: src/Module/Settings/Account.php:364
msgid "Contact CSV file upload error"
msgstr "Ошибка загрузки CSV с контактами"
-#: src/Module/Settings/Account.php:382
+#: src/Module/Settings/Account.php:383
msgid "Importing Contacts done"
msgstr "Импорт контактов завершён"
-#: src/Module/Settings/Account.php:395
+#: src/Module/Settings/Account.php:396
msgid "Relocate message has been send to your contacts"
msgstr "Перемещённое сообщение было отправлено списку контактов"
-#: src/Module/Settings/Account.php:412
+#: src/Module/Settings/Account.php:413
msgid "Unable to find your profile. Please contact your admin."
msgstr "Не получается найти ваш профиль. Пожалуйста свяжитесь с администратором."
-#: src/Module/Settings/Account.php:454
+#: src/Module/Settings/Account.php:455
msgid "Personal Page Subtypes"
msgstr "Подтипы личной страницы"
-#: src/Module/Settings/Account.php:455
-msgid "Community Forum Subtypes"
-msgstr "Подтипы форума сообщества"
+#: src/Module/Settings/Account.php:456
+msgid "Community Group Subtypes"
+msgstr "Типы групп сообществ"
-#: src/Module/Settings/Account.php:465
+#: src/Module/Settings/Account.php:466
msgid "Account for a personal profile."
msgstr "Личная учётная запись"
-#: src/Module/Settings/Account.php:472
+#: src/Module/Settings/Account.php:473
msgid ""
"Account for an organisation that automatically approves contact requests as "
"\"Followers\"."
msgstr "Учётная запись организации, которая автоматически одобряет новых подписчиков."
-#: src/Module/Settings/Account.php:479
+#: 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:486
+#: src/Module/Settings/Account.php:487
msgid "Account for community discussions."
msgstr "Учётная запись для совместных обсуждений."
-#: src/Module/Settings/Account.php:493
+#: 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:500
+#: 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:507
+#: src/Module/Settings/Account.php:508
msgid "Automatically approves all contact requests."
msgstr "Автоматически одобряет все запросы на подписку."
-#: src/Module/Settings/Account.php:514
+#: 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:519
-msgid "Private Forum [Experimental]"
-msgstr "Личный форум [экспериментально]"
+#: src/Module/Settings/Account.php:520
+msgid "Private Group [Experimental]"
+msgstr "Частная группа [экспериментально]"
-#: src/Module/Settings/Account.php:521
+#: src/Module/Settings/Account.php:522
msgid "Requires manual approval of contact requests."
msgstr "Требует ручного одобрения запросов на подписку."
-#: src/Module/Settings/Account.php:530
+#: src/Module/Settings/Account.php:531
msgid "OpenID:"
msgstr "OpenID:"
-#: src/Module/Settings/Account.php:530
+#: src/Module/Settings/Account.php:531
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "(Необязательно) Разрешить этому OpenID входить в этот аккаунт"
-#: src/Module/Settings/Account.php:538
+#: src/Module/Settings/Account.php:539
msgid "Publish your profile in your local site directory?"
msgstr "Опубликовать ваш профиль в каталоге вашего сервера?"
-#: src/Module/Settings/Account.php:538
+#: src/Module/Settings/Account.php:539
#, php-format
msgid ""
"Your profile will be published in this node's local "
@@ -9187,89 +9633,94 @@ msgid ""
" system settings."
msgstr "Ваш профиль будет опубликован в локальном каталоге этого сервера. Данные вашего профиля могут быть доступны публично в зависимости от настроек."
-#: src/Module/Settings/Account.php:544
+#: 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:557
+#: src/Module/Settings/Account.php:558
msgid "Account Settings"
msgstr "Настройки аккаунта"
-#: src/Module/Settings/Account.php:558
+#: 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:567
+#: src/Module/Settings/Account.php:568
msgid "Leave password fields blank unless changing"
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 "Выберите язык, на котором вы будете видеть интерфейс Friendica и на котором вы будете получать письма"
-#: 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 "
@@ -9277,43 +9728,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
+#: src/Module/Settings/Account.php:589
msgid "Hide your public content from anonymous viewers"
msgstr "Скрыть ваши публичные записи от анонимных посетителей"
-#: src/Module/Settings/Account.php:588
+#: 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:589
+#: 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 "
@@ -9321,233 +9772,241 @@ 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:618
+#: src/Module/Settings/Account.php:620
msgid "Create a desktop notification when:"
msgstr "Показывать уведомление при:"
-#: src/Module/Settings/Account.php:619
+#: src/Module/Settings/Account.php:621
msgid "Someone tagged you"
msgstr "Вас отметили"
-#: src/Module/Settings/Account.php:620
+#: src/Module/Settings/Account.php:622
msgid "Someone directly commented on your post"
msgstr "На вашу запись написали комментарий"
-#: src/Module/Settings/Account.php:621
+#: src/Module/Settings/Account.php:623
msgid "Someone liked your content"
msgstr "Ваша запись кому-то понравилась"
-#: src/Module/Settings/Account.php:621 src/Module/Settings/Account.php:622
+#: 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:622
+#: src/Module/Settings/Account.php:624
msgid "Someone shared your content"
msgstr "Вашей записью поделились"
-#: src/Module/Settings/Account.php:623
+#: src/Module/Settings/Account.php:625
msgid "Someone commented in your thread"
msgstr "В обсуждении вашей записи написали комментарий"
-#: src/Module/Settings/Account.php:624
+#: src/Module/Settings/Account.php:626
msgid "Someone commented in a thread where you commented"
msgstr "Написали в диалоге, где вы оставляли комментарии"
-#: src/Module/Settings/Account.php:625
+#: src/Module/Settings/Account.php:627
msgid "Someone commented in a thread where you interacted"
msgstr "Написали в диалоге, где вы принимали любое участие"
-#: src/Module/Settings/Account.php:627
+#: src/Module/Settings/Account.php:629
msgid "Activate desktop notifications"
msgstr "Активировать уведомления на рабочем столе"
-#: src/Module/Settings/Account.php:627
+#: src/Module/Settings/Account.php:629
msgid "Show desktop popup on new notifications"
msgstr "Показывать уведомления на рабочем столе"
-#: src/Module/Settings/Account.php:631
+#: src/Module/Settings/Account.php:633
msgid "Text-only notification emails"
msgstr "Только текстовые письма"
-#: src/Module/Settings/Account.php:633
+#: src/Module/Settings/Account.php:635
msgid "Send text only notification emails, without the html part"
msgstr "Отправлять только текстовые уведомления, без HTML"
-#: src/Module/Settings/Account.php:637
+#: src/Module/Settings/Account.php:639
msgid "Show detailled notifications"
msgstr "Показывать подробные уведомления"
-#: src/Module/Settings/Account.php:639
+#: 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:643
+#: src/Module/Settings/Account.php:645
msgid "Show notifications of ignored contacts"
msgstr "Показывать уведомления игнорируемых контактов"
-#: src/Module/Settings/Account.php:645
+#: 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:648
+#: src/Module/Settings/Account.php:650
msgid "Advanced Account/Page Type Settings"
msgstr "Расширенные настройки учётной записи"
-#: src/Module/Settings/Account.php:649
+#: src/Module/Settings/Account.php:651
msgid "Change the behaviour of this account for special situations"
msgstr "Измените поведение этого аккаунта в специальных ситуациях"
-#: src/Module/Settings/Account.php:652
+#: src/Module/Settings/Account.php:654
msgid "Import Contacts"
msgstr "Импорт контактов"
-#: src/Module/Settings/Account.php:653
+#: 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:654
+#: src/Module/Settings/Account.php:656
msgid "Upload File"
msgstr "Загрузить файл"
-#: src/Module/Settings/Account.php:657
+#: src/Module/Settings/Account.php:659
msgid "Relocate"
msgstr "Перемещение"
-#: src/Module/Settings/Account.php:658
+#: 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:659
+#: src/Module/Settings/Account.php:661
msgid "Resend relocate message to contacts"
msgstr "Отправить перемещённые сообщения контактам"
@@ -9679,13 +10138,13 @@ msgstr "Если включено, поле \"spoiler_text\" в API будет
#: src/Module/Settings/Connectors.php:226
msgid "API: Automatically links at the end of the post as attached posts"
-msgstr ""
+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 ""
+msgstr "Если включено, ссылки в конце записей будут обрабатываться так же, как ссылки, добавленные через веб-интерфейс."
#: src/Module/Settings/Connectors.php:227
msgid "Your legacy ActivityPub/GNU Social account"
@@ -9756,224 +10215,250 @@ msgstr "Переместить в папку"
msgid "Move to folder:"
msgstr "Переместить в папку:"
-#: src/Module/Settings/Delegation.php:52
+#: src/Module/Settings/Delegation.php:54
msgid "Delegation successfully granted."
msgstr "Делегирование успешно предоставлено."
-#: src/Module/Settings/Delegation.php:54
+#: src/Module/Settings/Delegation.php:56
msgid "Parent user not found, unavailable or password doesn't match."
msgstr "Родительский пользователь не найден, недоступен или пароль не совпадает."
-#: src/Module/Settings/Delegation.php:58
+#: src/Module/Settings/Delegation.php:60
msgid "Delegation successfully revoked."
msgstr "Делегирование успешно отменено."
-#: src/Module/Settings/Delegation.php:80
-#: src/Module/Settings/Delegation.php:102
+#: 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:94
+#: src/Module/Settings/Delegation.php:96
msgid "Delegate user not found."
msgstr "Пользователь-делегат не найден."
-#: src/Module/Settings/Delegation.php:142
+#: src/Module/Settings/Delegation.php:144
msgid "No parent user"
msgstr "Нет родительского пользователя"
-#: src/Module/Settings/Delegation.php:153
-#: src/Module/Settings/Delegation.php:164
+#: src/Module/Settings/Delegation.php:155
+#: src/Module/Settings/Delegation.php:166
msgid "Parent User"
msgstr "Родительский пользователь"
-#: src/Module/Settings/Delegation.php:161
+#: src/Module/Settings/Delegation.php:163
msgid "Additional Accounts"
msgstr "Дополнительные учётные записи"
-#: src/Module/Settings/Delegation.php:162
+#: 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:163
+#: src/Module/Settings/Delegation.php:165
msgid "Register an additional account"
msgstr "Зарегистрируйте дополнительную учётную запись"
-#: src/Module/Settings/Delegation.php:167
+#: 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:171
+#: src/Module/Settings/Delegation.php:173
msgid "Delegates"
msgstr "Делегаты"
-#: src/Module/Settings/Delegation.php:173
+#: 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:174
+#: src/Module/Settings/Delegation.php:176
msgid "Existing Page Delegates"
msgstr "Существующие уполномоченные страницы"
-#: src/Module/Settings/Delegation.php:176
+#: src/Module/Settings/Delegation.php:178
msgid "Potential Delegates"
msgstr "Возможные доверенные лица"
-#: src/Module/Settings/Delegation.php:179
+#: src/Module/Settings/Delegation.php:181
msgid "Add"
msgstr "Добавить"
-#: src/Module/Settings/Delegation.php:180
+#: src/Module/Settings/Delegation.php:182
msgid "No entries."
msgstr "Нет записей."
-#: src/Module/Settings/Display.php:137
+#: src/Module/Settings/Display.php:146
msgid "The theme you chose isn't available."
msgstr "Выбранная вами тема недоступна."
-#: src/Module/Settings/Display.php:177
+#: src/Module/Settings/Display.php:186
#, php-format
msgid "%s - (Unsupported)"
msgstr "%s - (Не поддерживается)"
-#: src/Module/Settings/Display.php:212
+#: src/Module/Settings/Display.php:221
msgid "No preview"
msgstr "Нет предпросмотра"
-#: src/Module/Settings/Display.php:213
+#: src/Module/Settings/Display.php:222
msgid "No image"
msgstr "Без изображения"
-#: src/Module/Settings/Display.php:214
+#: src/Module/Settings/Display.php:223
msgid "Small Image"
msgstr "Маленькое изображение"
-#: src/Module/Settings/Display.php:215
+#: src/Module/Settings/Display.php:224
msgid "Large Image"
msgstr "Большое изображение"
-#: src/Module/Settings/Display.php:246
+#: src/Module/Settings/Display.php:259
msgid "Display Settings"
msgstr "Внешний вид"
-#: src/Module/Settings/Display.php:248
+#: src/Module/Settings/Display.php:261
msgid "General Theme Settings"
msgstr "Общие настройки тем"
-#: src/Module/Settings/Display.php:249
+#: src/Module/Settings/Display.php:262
msgid "Custom Theme Settings"
msgstr "Личные настройки тем"
-#: src/Module/Settings/Display.php:250
+#: src/Module/Settings/Display.php:263
msgid "Content Settings"
msgstr "Настройки контента"
-#: src/Module/Settings/Display.php:251 view/theme/duepuntozero/config.php:86
+#: 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:257
+#: src/Module/Settings/Display.php:265
+msgid "Timelines"
+msgstr "Ленты"
+
+#: src/Module/Settings/Display.php:272
msgid "Display Theme:"
msgstr "Показать тему:"
-#: src/Module/Settings/Display.php:258
+#: src/Module/Settings/Display.php:273
msgid "Mobile Theme:"
msgstr "Мобильная тема:"
-#: src/Module/Settings/Display.php:261
+#: src/Module/Settings/Display.php:276
msgid "Number of items to display per page:"
msgstr "Количество элементов, отображаемых на одной странице:"
-#: src/Module/Settings/Display.php:261 src/Module/Settings/Display.php:262
+#: src/Module/Settings/Display.php:276 src/Module/Settings/Display.php:277
msgid "Maximum of 100 items"
msgstr "Максимум 100 элементов"
-#: src/Module/Settings/Display.php:262
+#: 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:263
+#: src/Module/Settings/Display.php:278
msgid "Update browser every xx seconds"
msgstr "Обновление браузера каждые хх секунд"
-#: src/Module/Settings/Display.php:263
+#: src/Module/Settings/Display.php:278
msgid "Minimum of 10 seconds. Enter -1 to disable it."
msgstr "Минимум 10 секунд. Введите -1 для отключения."
-#: src/Module/Settings/Display.php:264
+#: src/Module/Settings/Display.php:279
msgid "Display emoticons"
msgstr "Показывать смайлики"
-#: src/Module/Settings/Display.php:264
+#: src/Module/Settings/Display.php:279
msgid "When enabled, emoticons are replaced with matching symbols."
msgstr "Когда включено, соответствующие символы отображаются как смайлики."
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:280
msgid "Infinite scroll"
msgstr "Бесконечная прокрутка"
-#: src/Module/Settings/Display.php:265
+#: src/Module/Settings/Display.php:280
msgid "Automatic fetch new items when reaching the page end."
msgstr "Автоматически подгружать новые записи, когда вы оказываетесь в конце страницы."
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:281
msgid "Enable Smart Threading"
msgstr "Включить умное ветвление обсуждений"
-#: src/Module/Settings/Display.php:266
+#: src/Module/Settings/Display.php:281
msgid "Enable the automatic suppression of extraneous thread indentation."
msgstr "Включить автоматическое удаление излишних отступов в ветках обсуждений."
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:282
msgid "Display the Dislike feature"
msgstr "Показывать \"Не нравится\""
-#: src/Module/Settings/Display.php:267
+#: src/Module/Settings/Display.php:282
msgid ""
"Display the Dislike button and dislike reactions on posts and comments."
msgstr "Показывать кнопку \"Не нравится\" и соответствующие реакции на записях и комментариях."
-#: src/Module/Settings/Display.php:268
+#: src/Module/Settings/Display.php:283
msgid "Display the resharer"
msgstr "Показывать поделившегося"
-#: src/Module/Settings/Display.php:268
+#: 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:269
+#: src/Module/Settings/Display.php:284
msgid "Stay local"
msgstr "Оставаться локально"
-#: src/Module/Settings/Display.php:269
+#: 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:270
+#: src/Module/Settings/Display.php:285
msgid "Link preview mode"
msgstr "Предпросмотр ссылок"
-#: src/Module/Settings/Display.php:270
+#: 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:272
+#: 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:273
+#: 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 "Дополнительные возможности"
@@ -9986,155 +10471,151 @@ msgstr "Подключенные приложения"
msgid "Remove authorization"
msgstr "Удалить авторизацию"
-#: src/Module/Settings/Profile/Index.php:84
-msgid "Profile Name is required."
-msgstr "Необходимо имя профиля."
+#: src/Module/Settings/Profile/Index.php:116
+msgid "Display Name is required."
+msgstr "Необходимо указать имя"
-#: src/Module/Settings/Profile/Index.php:134
+#: src/Module/Settings/Profile/Index.php:167
msgid "Profile couldn't be updated."
msgstr "Профиль не получилось обновить."
-#: src/Module/Settings/Profile/Index.php:175
-#: src/Module/Settings/Profile/Index.php:195
+#: src/Module/Settings/Profile/Index.php:205
+#: src/Module/Settings/Profile/Index.php:226
msgid "Label:"
msgstr "Поле:"
-#: src/Module/Settings/Profile/Index.php:176
-#: src/Module/Settings/Profile/Index.php:196
+#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:227
msgid "Value:"
msgstr "Значение:"
-#: src/Module/Settings/Profile/Index.php:186
-#: src/Module/Settings/Profile/Index.php:206
+#: src/Module/Settings/Profile/Index.php:217
+#: src/Module/Settings/Profile/Index.php:238
msgid "Field Permissions"
msgstr "Право просмотра поля"
-#: src/Module/Settings/Profile/Index.php:187
-#: src/Module/Settings/Profile/Index.php:207
+#: 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:193
+#: src/Module/Settings/Profile/Index.php:224
msgid "Add a new profile field"
msgstr "Добавить новое поле профиля"
-#: src/Module/Settings/Profile/Index.php:216
+#: 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:218
+#: 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:228
+#: src/Module/Settings/Profile/Index.php:255
msgid "Profile Actions"
msgstr "Действия профиля"
-#: src/Module/Settings/Profile/Index.php:229
+#: src/Module/Settings/Profile/Index.php:256
msgid "Edit Profile Details"
msgstr "Редактировать детали профиля"
-#: src/Module/Settings/Profile/Index.php:231
+#: src/Module/Settings/Profile/Index.php:258
msgid "Change Profile Photo"
msgstr "Изменить фото профиля"
-#: src/Module/Settings/Profile/Index.php:236
+#: src/Module/Settings/Profile/Index.php:261
msgid "Profile picture"
msgstr "Картинка профиля"
-#: src/Module/Settings/Profile/Index.php:237
+#: src/Module/Settings/Profile/Index.php:262
msgid "Location"
msgstr "Местонахождение"
-#: src/Module/Settings/Profile/Index.php:238 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 "Разное"
-#: src/Module/Settings/Profile/Index.php:239
+#: src/Module/Settings/Profile/Index.php:264
msgid "Custom Profile Fields"
msgstr "Произвольные поля профиля"
-#: src/Module/Settings/Profile/Index.php:241 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:245
-msgid "Display name:"
-msgstr "Отображаемое имя:"
-
-#: src/Module/Settings/Profile/Index.php:248
-msgid "Street Address:"
-msgstr "Адрес:"
-
-#: src/Module/Settings/Profile/Index.php:249
-msgid "Locality/City:"
-msgstr "Город / Населенный пункт:"
-
-#: src/Module/Settings/Profile/Index.php:250
-msgid "Region/State:"
-msgstr "Район / Область:"
-
-#: src/Module/Settings/Profile/Index.php:251
-msgid "Postal/Zip Code:"
-msgstr "Почтовый индекс:"
-
-#: src/Module/Settings/Profile/Index.php:252
-msgid "Country:"
-msgstr "Страна:"
-
-#: src/Module/Settings/Profile/Index.php:254
-msgid "XMPP (Jabber) address:"
-msgstr "Адрес XMPP (Jabber):"
-
-#: src/Module/Settings/Profile/Index.php:254
-msgid ""
-"The XMPP address will be published so that people can follow you there."
-msgstr "Этот адрес XMPP будет виден в профиле, чтобы другие люди могли вас там найти."
-
-#: src/Module/Settings/Profile/Index.php:255
-msgid "Matrix (Element) address:"
-msgstr "Адрес Matrix (Element):"
-
-#: src/Module/Settings/Profile/Index.php:255
-msgid ""
-"The Matrix address will be published so that people can follow you there."
-msgstr "Этот адрес Matrix будет виден в профиле, чтобы другие люди могли вас там найти."
-
-#: src/Module/Settings/Profile/Index.php:256
-msgid "Homepage URL:"
-msgstr "Адрес домашней странички:"
-
-#: src/Module/Settings/Profile/Index.php:257
-msgid "Public Keywords:"
-msgstr "Общественные ключевые слова:"
-
-#: src/Module/Settings/Profile/Index.php:257
-msgid "(Used for suggesting potential friends, can be seen by others)"
-msgstr "(Используется для предложения потенциальным друзьям, могут увидеть другие)"
-
-#: src/Module/Settings/Profile/Index.php:258
-msgid "Private Keywords:"
-msgstr "Личные ключевые слова:"
-
-#: src/Module/Settings/Profile/Index.php:258
-msgid "(Used for searching profiles, never shown to others)"
-msgstr "(Используется для поиска профилей, никогда не показывается другим)"
-
-#: src/Module/Settings/Profile/Index.php:259
+#: src/Module/Settings/Profile/Index.php:266
#, php-format
msgid ""
"Custom fields appear on your profile page.
\n"
"\t\t\t\tYou can use BBCodes in the field values.
\n"
"\t\t\t\tReorder by dragging the field title.
\n"
"\t\t\t\tEmpty the label field to remove a custom field.
\n"
-"\t\t\t\tNon-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\tNon-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
@@ -10246,6 +10727,42 @@ msgstr "Это позволит полностью удалить ваш акк
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
@@ -10567,21 +11084,42 @@ msgid ""
" e.g. Mastodon."
msgstr "Выгрузить список пользователей, на которых вы подписаны, в CSV-файл. Совместимо с 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 "Not Found"
-msgstr "Не найдено"
+msgid ""
+"This node has blocked the top-level author or the author of the shared post."
+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 ""
+"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:"
@@ -10592,7 +11130,7 @@ msgstr ""
msgid "Exception thrown in %s:%d"
msgstr ""
-#: src/Module/Tos.php:57 src/Module/Tos.php:106
+#: 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"
@@ -10603,16 +11141,16 @@ 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:107
+#: 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:108
+#: 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"
@@ -10621,13 +11159,13 @@ msgid ""
"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 ""
+msgstr "В любой момент вошедший в систему пользователь может экспортировать свои данные через настройки. Если пользователь хочет удалить свою учётную запись, они могут сделать это через %1$s/settings/removeme. Удаление данных будет без возможности восстановления. Запрос на удаление данных будет так же передан на узлы партнёров по сети."
-#: src/Module/Tos.php:62 src/Module/Tos.php:105
+#: src/Module/Tos.php:63 src/Module/Tos.php:106
msgid "Privacy Statement"
msgstr "Положение о конфиденциальности"
-#: src/Module/Tos.php:102
+#: src/Module/Tos.php:103
msgid "Rules"
msgstr "Правила"
@@ -10635,6 +11173,10 @@ msgstr "Правила"
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/Import.php:103
msgid "User imports on closed servers can only be done by an administrator."
msgstr "Импорт пользователей на закрытых серверах может быть произведён только администратором."
@@ -10683,11 +11225,11 @@ msgstr "Ошибка! Неправильная версия данных в фа
msgid "User '%s' already exists on this server!"
msgstr "Пользователь '%s' уже существует на этом сервере!"
-#: src/Module/User/Import.php:263
+#: src/Module/User/Import.php:267
msgid "User creation error"
msgstr "Ошибка создания пользователя"
-#: src/Module/User/Import.php:312
+#: src/Module/User/Import.php:316
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
@@ -10696,11 +11238,11 @@ msgstr[1] "%d контакты не импортированы"
msgstr[2] "%d контакты не импортированы"
msgstr[3] "%d контакты не импортированы"
-#: src/Module/User/Import.php:361
+#: src/Module/User/Import.php:365
msgid "User profile creation error"
msgstr "Ошибка создания профиля пользователя"
-#: src/Module/User/Import.php:412
+#: src/Module/User/Import.php:416
msgid "Done. You can now login with your username and password"
msgstr "Завершено. Теперь вы можете войти с вашим логином и паролем"
@@ -10834,15 +11376,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?"
@@ -11349,199 +11891,208 @@ msgstr "Пожалуйста, свяжитесь с отправителем, о
msgid "%s posted an update."
msgstr "%s отправил/а/ обновление."
-#: 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:181
msgid "This entry was edited"
msgstr "Эта запись была отредактирована"
-#: src/Object/Post.php:206
+#: 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 "Редактировать"
-#: 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:265
+#: src/Object/Post.php:268
#, php-format
msgid "Block %s"
msgstr "Заблокировать %s"
-#: src/Object/Post.php:270
+#: src/Object/Post.php:273
#, php-format
msgid "Ignore %s"
msgstr "Игнорировать %s"
-#: src/Object/Post.php:275
+#: src/Object/Post.php:278
+#, php-format
+msgid "Collapse %s"
+msgstr "Сворачивать %s"
+
+#: src/Object/Post.php:282
+msgid "Report post"
+msgstr "Пожаловаться"
+
+#: src/Object/Post.php:293
msgid "Save to folder"
msgstr "Сохранить в папку"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I will attend"
msgstr "Я буду"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I will not attend"
msgstr "Меня не будет"
-#: src/Object/Post.php:310
+#: src/Object/Post.php:333
msgid "I might attend"
msgstr "Возможно"
-#: src/Object/Post.php:340
+#: src/Object/Post.php:363
msgid "Ignore thread"
msgstr "Игнорировать обсуждение"
-#: src/Object/Post.php:341
+#: src/Object/Post.php:364
msgid "Unignore thread"
msgstr "Не игнорировать обсуждение"
-#: src/Object/Post.php:342
+#: src/Object/Post.php:365
msgid "Toggle ignore status"
msgstr "Переключить игнорирование"
-#: src/Object/Post.php:352
+#: src/Object/Post.php:375
msgid "Add star"
msgstr "Добавить в Избранное"
-#: src/Object/Post.php:353
+#: src/Object/Post.php:376
msgid "Remove star"
msgstr "Убрать из Избранного"
-#: src/Object/Post.php:354
+#: src/Object/Post.php:377
msgid "Toggle star status"
msgstr "Добавить/убрать из Избранного"
-#: src/Object/Post.php:365
+#: src/Object/Post.php:388
msgid "Pin"
msgstr "Закрепить"
-#: src/Object/Post.php:366
+#: src/Object/Post.php:389
msgid "Unpin"
msgstr "Открепить"
-#: src/Object/Post.php:367
+#: src/Object/Post.php:390
msgid "Toggle pin status"
msgstr "Закрепить/открепить"
-#: src/Object/Post.php:370
+#: src/Object/Post.php:393
msgid "Pinned"
msgstr "Закреплено"
-#: src/Object/Post.php:375
+#: src/Object/Post.php:398
msgid "Add tag"
msgstr "Добавить тег"
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote share this"
msgstr "Поделиться с комментарием"
-#: src/Object/Post.php:388
+#: src/Object/Post.php:411
msgid "Quote Share"
msgstr "Цитировать"
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare this"
msgstr "Поделиться этим с подписчиками"
-#: src/Object/Post.php:391
+#: src/Object/Post.php:414
msgid "Reshare"
msgstr "Поделиться"
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Cancel your Reshare"
msgstr "Отменить репост"
-#: src/Object/Post.php:392
+#: src/Object/Post.php:415
msgid "Unshare"
msgstr "Отменить репост"
-#: src/Object/Post.php:443
+#: src/Object/Post.php:466
#, php-format
msgid "%s (Received %s)"
msgstr "%s (Получено %s)"
-#: src/Object/Post.php:448
+#: src/Object/Post.php:472
msgid "Comment this item on your system"
msgstr "Прокомментировать это на вашем узле"
-#: src/Object/Post.php:448
+#: src/Object/Post.php:472
msgid "Remote comment"
msgstr "Загруженный комментарий"
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via ..."
msgstr "Отправить в ..."
-#: src/Object/Post.php:469
+#: src/Object/Post.php:494
msgid "Share via external services"
msgstr "Поделиться через сторонние сервисы"
-#: src/Object/Post.php:498
+#: src/Object/Post.php:523
msgid "to"
msgstr "к"
-#: src/Object/Post.php:499
+#: src/Object/Post.php:524
msgid "via"
msgstr "через"
-#: src/Object/Post.php:500
+#: src/Object/Post.php:525
msgid "Wall-to-Wall"
msgstr "Стена-на-Стену"
-#: src/Object/Post.php:501
+#: src/Object/Post.php:526
msgid "via Wall-To-Wall:"
msgstr "через Стена-на-Стену:"
-#: src/Object/Post.php:545
+#: src/Object/Post.php:573
#, php-format
msgid "Reply to %s"
msgstr "Ответ %s"
-#: src/Object/Post.php:548
+#: src/Object/Post.php:576
msgid "More"
msgstr "Ещё"
-#: src/Object/Post.php:566
+#: src/Object/Post.php:595
msgid "Notifier task is pending"
msgstr "Постановка в очередь"
-#: src/Object/Post.php:567
+#: src/Object/Post.php:596
msgid "Delivery to remote servers is pending"
msgstr "Ожидается отправка адресатам"
-#: src/Object/Post.php:568
+#: src/Object/Post.php:597
msgid "Delivery to remote servers is underway"
msgstr "Отправка адресатам в процессе"
-#: src/Object/Post.php:569
+#: src/Object/Post.php:598
msgid "Delivery to remote servers is mostly done"
msgstr "Отправка адресатам почти завершилась"
-#: src/Object/Post.php:570
+#: src/Object/Post.php:599
msgid "Delivery to remote servers is done"
msgstr "Отправка адресатам завершена"
-#: src/Object/Post.php:590
+#: src/Object/Post.php:619
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
@@ -11550,50 +12101,50 @@ msgstr[1] "%d комментариев"
msgstr[2] "%d комментариев"
msgstr[3] "%d комментариев"
-#: src/Object/Post.php:591
+#: src/Object/Post.php:620
msgid "Show more"
msgstr "Показать больше"
-#: src/Object/Post.php:592
+#: src/Object/Post.php:621
msgid "Show fewer"
msgstr "Показать меньше"
-#: src/Object/Post.php:628
+#: src/Object/Post.php:657
#, php-format
msgid "Reshared by: %s"
msgstr "Репост от: %s"
-#: src/Object/Post.php:633
+#: src/Object/Post.php:662
#, php-format
msgid "Viewed by: %s"
msgstr "Просмотрено: %s"
-#: src/Object/Post.php:638
+#: src/Object/Post.php:667
#, php-format
msgid "Liked by: %s"
msgstr "Понравилось: %s"
-#: src/Object/Post.php:643
+#: src/Object/Post.php:672
#, php-format
msgid "Disliked by: %s"
msgstr "Не понравилось: %s"
-#: src/Object/Post.php:648
+#: src/Object/Post.php:677
#, php-format
msgid "Attended by: %s"
msgstr "Присутствуют: %s"
-#: src/Object/Post.php:653
+#: src/Object/Post.php:682
#, php-format
msgid "Maybe attended by: %s"
msgstr "Под вопросом: %s"
-#: src/Object/Post.php:658
+#: src/Object/Post.php:687
#, php-format
msgid "Not attended by: %s"
msgstr "Не присутствуют: %s"
-#: src/Object/Post.php:663
+#: src/Object/Post.php:692
#, php-format
msgid "Reacted with %s by: %s"
msgstr "Отреагировали как %s : %s"
@@ -11602,21 +12153,21 @@ msgstr "Отреагировали как %s : %s"
msgid "(no subject)"
msgstr "(нет темы)"
-#: src/Protocol/OStatus.php:1388
+#: src/Protocol/OStatus.php:1390
#, php-format
msgid "%s is now following %s."
msgstr "%s теперь подписан на %s."
-#: src/Protocol/OStatus.php:1389
+#: src/Protocol/OStatus.php:1391
msgid "following"
msgstr "следует"
-#: src/Protocol/OStatus.php:1392
+#: src/Protocol/OStatus.php:1394
#, php-format
msgid "%s stopped following %s."
msgstr "%s отписался от %s."
-#: src/Protocol/OStatus.php:1393
+#: src/Protocol/OStatus.php:1395
msgid "stopped following"
msgstr "отписка от"
@@ -11974,8 +12525,8 @@ msgid "Textareas font size"
msgstr "Размер шрифта текстовых полей"
#: view/theme/vier/config.php:91
-msgid "Comma separated list of helper forums"
-msgstr "Разделенный запятыми список форумов помощи"
+msgid "Comma separated list of helper groups"
+msgstr "Список групп поддержки через запятую"
#: view/theme/vier/config.php:131
msgid "don't show"
@@ -11993,7 +12544,7 @@ msgstr "Установить стиль"
msgid "Community Pages"
msgstr "Страницы сообщества"
-#: view/theme/vier/config.php:139 view/theme/vier/theme.php:149
+#: view/theme/vier/config.php:139 view/theme/vier/theme.php:148
msgid "Community Profiles"
msgstr "Профили сообщества"
@@ -12001,7 +12552,7 @@ msgstr "Профили сообщества"
msgid "Help or @NewHere ?"
msgstr "Помощь"
-#: view/theme/vier/config.php:141 view/theme/vier/theme.php:320
+#: view/theme/vier/config.php:141 view/theme/vier/theme.php:319
msgid "Connect Services"
msgstr "Подключить службы"
@@ -12009,10 +12560,10 @@ msgstr "Подключить службы"
msgid "Find Friends"
msgstr "Найти друзей"
-#: view/theme/vier/config.php:143 view/theme/vier/theme.php:176
+#: view/theme/vier/config.php:143 view/theme/vier/theme.php:175
msgid "Last users"
msgstr "Последние пользователи"
-#: view/theme/vier/theme.php:235
+#: 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 ce1a3b8514..ded02de008 100644
--- a/view/lang/ru/strings.php
+++ b/view/lang/ru/strings.php
@@ -200,6 +200,26 @@ $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.'] = 'Страница не найдена.';
@@ -217,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';
@@ -268,9 +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['and'] = 'и';
$a->strings['and %d other people'] = 'и еще %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:'] = 'Тег:';
@@ -287,6 +384,8 @@ $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'] = 'Ссылка';
@@ -301,19 +400,14 @@ $a->strings['Categories (comma-separated list)'] = 'Категории (спис
$a->strings['Scheduled at'] = 'Запланировано на';
$a->strings['Permission settings'] = 'Настройки разрешений';
$a->strings['Public post'] = 'Публичная запись';
-$a->strings['Message'] = 'Запись';
+$a->strings['Message'] = 'Написать';
$a->strings['Browser'] = 'Браузер';
$a->strings['Open Compose page'] = 'Развернуть редактор';
-$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['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'] = 'Репост';
@@ -330,14 +424,48 @@ $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';
@@ -346,8 +474,8 @@ $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'] = 'Показывать дату регистрации';
@@ -355,10 +483,11 @@ $a->strings['Display membership date in profile'] = 'Дата вашей рег
$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['Forums'] = 'Форумы';
-$a->strings['External link to forum'] = 'Внешняя ссылка на форум';
+$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'] = 'фото';
@@ -373,12 +502,14 @@ $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'] = 'Вход';
@@ -476,8 +607,9 @@ $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'] = 'Протоколы';
@@ -492,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';
@@ -529,7 +663,7 @@ $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 group to show a filtered list. You can also mention the special groups "Followers" and "Mutuals".'] = 'Начните набирать имя контакта или группы для появления списка. Вы так же можете выбрать специальные группы "Подписаны на вас" и "Взаимные".';
+$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 адреса';
@@ -681,9 +815,18 @@ $a->strings['Unprocessable Entity'] = 'Необрабатываемая сущн
$a->strings['Unauthorized'] = 'Нет авторизации';
$a->strings['Internal Server Error'] = 'Внутренняя ошибка сервера';
$a->strings['Legacy module file not found: %s'] = 'Legacy-модуль не найден: %s';
+$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 отсутствует.';
@@ -720,16 +863,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'] = 'комментарий';
@@ -841,13 +974,66 @@ $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,
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/settings/removeme
+
+ Thank you and welcome to %4$s.'] = '
+ Ваши данные для входа:
+
+ Адрес: %1$s
+ Имя для входа: %2$s
+ Пароль: %3$s
+
+ Вы можете сменить пароль после входа на странице настроек.
+
+
+ Пожалуйста, ознакомьтесь с другими настройками на этой же странице.
+
+ Вы так же можете захотеть добавить некоторую информацию о вас
+ (на странице профиля), чтобы другие смогли легко найти вас.
+
+ Мы рекомендуем указать имя и поставить изображение профиля,
+ добавить несколько ключевых слов (очень полезны для поиска друзей),
+ вероятно, страну вашего проживания, если вы не хотите давать больше деталей.
+
+
+ Мы полностью уважаем вашу приватность и ничто из перечисленного не является обязательным.
+ Если вы новичок и не знаете здесь никого, то эти рекомендации
+ могут помочь найти вам новых интересных друзей.
+
+ Если вы захотите удалить вашу учётную запись, то всегда сможете сделать это на %1$s/settings/removeme
+
+ Спасибо и добро пожаловать на %4$s.';
$a->strings['Registration details for %s'] = 'Подробности регистрации для %s';
$a->strings['
Dear %1$s,
@@ -876,6 +1062,59 @@ $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/settings/removeme
+
+ Thank you and welcome to %2$s.'] = '
+ Ваши данные для входа:
+
+ Адрес: %3$s
+ Имя для входа: %1$s
+ Пароль: %5$s
+
+ Вы можете сменить пароль после входа на странице настроек.
+
+
+ Пожалуйста, ознакомьтесь с другими настройками на этой же странице.
+
+ Вы так же можете захотеть добавить некоторую информацию о вас
+ (на странице профиля), чтобы другие смогли легко найти вас.
+
+ Мы рекомендуем указать имя и поставить изображение профиля,
+ добавить несколько ключевых слов (очень полезны для поиска друзей),
+ вероятно, страну вашего проживания, если вы не хотите давать больше деталей.
+
+
+ Мы полностью уважаем вашу приватность и ничто из перечисленного не является обязательным.
+ Если вы новичок и не знаете здесь никого, то эти рекомендации
+ могут помочь найти вам новых интересных друзей.
+
+ Если вы захотите удалить вашу учётную запись, то всегда сможете сделать это на %3$s/settings/removeme
+
+ Спасибо и добро пожаловать на %2$s.';
$a->strings['Addon not found.'] = 'Дополнение не найдено.';
$a->strings['Addon %s disabled.'] = 'Дополнение %s отключено.';
$a->strings['Addon %s enabled.'] = 'Дополнение %s включено.';
@@ -1062,6 +1301,8 @@ $a->strings['Maximum length in pixels of the longest side of uploaded images. De
$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'] = 'Текст регистрации';
@@ -1086,7 +1327,7 @@ $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.'] = 'Ссылка глобального каталога. Если не указано, то глобальный каталог будет полностью недоступен.';
$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['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.'] = 'Запретить публичный доступ к аддонам, перечисленным в меню приложений.';
@@ -1170,8 +1411,8 @@ $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 group when calculating network count'] = 'Показывать счётчики записей по группам при обновлении страницы сети';
-$a->strings['On systems with users that heavily use contact groups the query can be very expensive.'] = 'Для систем, где активно используются группы контактов, это может быть затратно по ресурсам.';
+$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';
@@ -1272,6 +1513,8 @@ $a->strings['Monthly posting limit of %d post reached. The post was rejected.']
2 => 'Месячный лимит в%d записей достигнут. Запись была отклонена.',
3 => 'Месячный лимит в %d записей достигнут. Запись была отклонена.',
];
+$a->strings['You don\'t have access to moderation pages.'] = 'У вас нет доступа к страницам модераторов.';
+$a->strings['Reports'] = 'Обращения';
$a->strings['Users'] = 'Пользователи';
$a->strings['Tools'] = 'Инструменты';
$a->strings['Contact Blocklist'] = 'Чёрный список контактов';
@@ -1284,7 +1527,7 @@ $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['Group Search - %s'] = 'Поиск по группам - %s';
$a->strings['No matches'] = 'Нет соответствий';
$a->strings['Account'] = 'Аккаунт';
$a->strings['Two-factor authentication'] = 'Двухфакторная аутентификация';
@@ -1292,9 +1535,12 @@ $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.'] = 'Название мероприятия и время начала обязательны для заполнения.';
@@ -1312,6 +1558,29 @@ $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 контакта изменено.',
@@ -1331,7 +1600,7 @@ $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['Organize your contact circles'] = 'Настроить круги контактов';
$a->strings['Search your contacts'] = 'Поиск ваших контактов';
$a->strings['Results for: %s'] = 'Результаты для: %s';
$a->strings['Update'] = 'Обновление';
@@ -1351,7 +1620,6 @@ $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 not found.'] = 'Контакт не найден.';
$a->strings['Contact update failed.'] = 'Обновление контакта неудачное.';
$a->strings['Return to contact editor'] = 'Возврат к редактору контакта';
$a->strings['Name'] = 'Имя';
@@ -1359,7 +1627,6 @@ $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)'] = [
@@ -1422,6 +1689,7 @@ $a->strings['You are mutual friends with %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)'] = '(Обновление было успешно)';
@@ -1452,6 +1720,7 @@ $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'] = 'Уведомление о новых записях';
@@ -1462,6 +1731,17 @@ $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'] = 'Изменить статус игнорирования';
@@ -1470,7 +1750,6 @@ $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.'] = 'Вы действительно хотите отозвать подписку этого контакта на вас? Это нельзя будет отменить позже, им потребуется снова подписаться на вас.';
@@ -1481,29 +1760,17 @@ $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['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['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['No results.'] = 'Нет результатов.';
-$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['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['Error'] = [
@@ -1551,26 +1818,6 @@ $a->strings['Please visit Friendi.ca to learn m
$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:'] = 'Помощь:';
@@ -1636,7 +1883,6 @@ $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 requested item doesn\'t exist or has been deleted.'] = 'Запрошенная запись не существует или была удалена.';
$a->strings['The feed for this item is unavailable.'] = 'Лента недоступна для этого объекта.';
$a->strings['Unable to follow this item.'] = 'Не получается подписаться на эту запись.';
$a->strings['System down for maintenance'] = 'Система закрыта на техническое обслуживание';
@@ -1650,7 +1896,6 @@ $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 exceeds size limit of %s'] = 'Изображение превышает лимит размера в %s';
$a->strings['Image upload failed.'] = 'Загрузка фото неудачная.';
$a->strings['List of all users'] = 'Все пользователи';
$a->strings['Active'] = 'Активные';
@@ -1661,13 +1906,13 @@ $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'] = [
@@ -1794,12 +2039,64 @@ $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['Private Group Account'] = 'Закрытая группа';
$a->strings['Registered users'] = 'Зарегистрированные пользователи';
$a->strings['Pending registrations'] = 'Ожидающие регистрации';
$a->strings['%s user blocked'] = [
@@ -1929,6 +2226,7 @@ $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'] = 'Сервер не принимает новые файлы для загрузки в настоящий момент, пожалуйста, свяжитесь с администратором';
@@ -1949,7 +2247,7 @@ $a->strings['%d year old'] = [
3 => '%dлет',
];
$a->strings['Description:'] = 'Описание:';
-$a->strings['Forums:'] = 'Форумы:';
+$a->strings['Groups:'] = 'Группы:';
$a->strings['View profile as:'] = 'Посмотреть профиль как:';
$a->strings['View as'] = 'Посмотреть как';
$a->strings['Profile unavailable.'] = 'Профиль недоступен.';
@@ -2072,7 +2370,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".'] = 'Учётная запись новостной ленты, которая автоматически одобряет новых подписчиков.';
@@ -2081,7 +2379,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 входить в этот аккаунт';
@@ -2096,6 +2394,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:'] = 'Ваш язык:';
@@ -2122,6 +2421,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:'] = 'Автоматическое истекание срока действия сообщения после стольких дней:';
@@ -2193,6 +2494,8 @@ $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';
@@ -2237,6 +2540,7 @@ $a->strings['General Theme Settings'] = 'Общие настройки тем';
$a->strings['Custom Theme Settings'] = 'Личные настройки тем';
$a->strings['Content Settings'] = 'Настройки контента';
$a->strings['Theme settings'] = 'Настройки темы';
+$a->strings['Timelines'] = 'Ленты';
$a->strings['Display Theme:'] = 'Показать тему:';
$a->strings['Mobile Theme:'] = 'Мобильная тема:';
$a->strings['Number of items to display per page:'] = 'Количество элементов, отображаемых на одной странице:';
@@ -2258,12 +2562,16 @@ $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['Timelines for the network page:'] = 'Ленты для основной страницы:';
+$a->strings['Select all the timelines that you want to see on your network page.'] = 'Выберите все ленты, которые вы хотите видеть на вашей основной странице.';
+$a->strings['Channel languages:'] = 'Языки каналов:';
+$a->strings['Select all languages that you want to see in your channels.'] = 'Выберите все языки, которые вы хотите видеть в своих каналах.';
$a->strings['Beginning of week:'] = 'Начало недели:';
$a->strings['Default calendar view:'] = 'Вид календаря по-умолчанию:';
$a->strings['Additional Features'] = 'Дополнительные возможности';
$a->strings['Connected Apps'] = 'Подключенные приложения';
$a->strings['Remove authorization'] = 'Удалить авторизацию';
-$a->strings['Profile Name is required.'] = 'Необходимо имя профиля.';
+$a->strings['Display Name is required.'] = 'Необходимо указать имя';
$a->strings['Profile couldn\'t be updated.'] = 'Профиль не получилось обновить.';
$a->strings['Label:'] = 'Поле:';
$a->strings['Value:'] = 'Значение:';
@@ -2280,7 +2588,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:'] = 'Район / Область:';
@@ -2295,15 +2611,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'] = 'Не удается обработать изображение';
@@ -2328,6 +2635,14 @@ $a->strings['Your user 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.'] = 'Создание пароля приложения не удалось: такое описание уже есть.';
@@ -2422,10 +2737,21 @@ $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['Not Found'] = 'Не найдено';
+$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['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['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.';
@@ -2468,8 +2794,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'] = 'Получить помощь';
@@ -2581,6 +2907,8 @@ $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'] = 'Меня не будет';
@@ -2722,7 +3050,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 67f1b89939..bf9f5324c6 100644
--- a/view/lang/sv/messages.po
+++ b/view/lang/sv/messages.po
@@ -14,7 +14,7 @@ msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2023-02-18 20:49+0000\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-2023\n"
"Language-Team: Swedish (http://app.transifex.com/Friendica/friendica/language/sv/)\n"
@@ -24,46 +24,46 @@ msgstr ""
"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-#: mod/item.php:102 mod/item.php:105 mod/item.php:171 mod/item.php:174
+#: 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:139
+#: mod/item.php:138
msgid "Post updated."
msgstr "Inlägget uppdaterades."
-#: mod/item.php:204 mod/item.php:208
+#: mod/item.php:203 mod/item.php:207
msgid "Item wasn't stored."
msgstr "Objektet lagrades inte."
-#: mod/item.php:218
+#: mod/item.php:217
msgid "Item couldn't be fetched."
msgstr "Objektet kunde inte hämtas."
-#: mod/item.php:256 mod/item.php:260
+#: mod/item.php:255 mod/item.php:259
msgid "Empty post discarded."
msgstr "Tomt inlägg. Inte sparat."
-#: mod/item.php:412 src/Module/Admin/Themes/Details.php:39
+#: 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 "Hittar inte."
-#: mod/item.php:436 mod/message.php:69 mod/message.php:114 mod/notes.php:45
-#: mod/photos.php:152 mod/photos.php:669 src/Model/Event.php:522
-#: src/Module/Attach.php:55 src/Module/BaseApi.php:95
-#: src/Module/BaseNotifications.php:98 src/Module/BaseSettings.php:52
+#: 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/Contact/Advanced.php:60 src/Module/Contact/Follow.php:86
-#: src/Module/Contact/Follow.php:159 src/Module/Contact/MatchInterests.php:86
+#: 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/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/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
@@ -73,9 +73,9 @@ msgstr "Hittar inte."
#: 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:69
-#: src/Module/Settings/Display.php:69 src/Module/Settings/Display.php:151
+#: 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
@@ -153,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:161
+#: mod/lostpass.php:130 src/Module/Security/Login.php:160
msgid "Nickname or Email: "
msgstr "Användarnamn eller e-post:"
@@ -161,7 +161,7 @@ msgstr "Användarnamn eller e-post:"
msgid "Reset"
msgstr "Skicka"
-#: mod/lostpass.php:146 src/Module/Security/Login.php:173
+#: mod/lostpass.php:146 src/Module/Security/Login.php:172
msgid "Password Reset"
msgstr "Glömt lösenordet?"
@@ -221,90 +221,90 @@ msgstr ""
msgid "Your password has been changed at %s"
msgstr "Ditt lösenord ändrades den %s"
-#: mod/message.php:46 mod/message.php:129 src/Content/Nav.php:321
+#: mod/message.php:46 mod/message.php:128 src/Content/Nav.php:321
msgid "New Message"
msgstr "Nytt meddelande"
-#: 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 "Ingen mottagare har valts."
-#: mod/message.php:88
+#: mod/message.php:87
msgid "Unable to locate contact information."
msgstr "Det gick inte att hitta kontaktuppgifterna."
-#: 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 "Det gick inte att skicka meddelandet."
-#: 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 "Insamling av meddelanden misslyckades."
-#: 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 "Ta bort"
-#: mod/message.php:136 src/Content/Nav.php:318 view/theme/frio/theme.php:241
+#: mod/message.php:135 src/Content/Nav.php:318 view/theme/frio/theme.php:241
msgid "Messages"
msgstr "Meddelanden"
-#: mod/message.php:149
+#: mod/message.php:148
msgid "Conversation not found."
msgstr "Konversationen hittades inte."
-#: mod/message.php:154
+#: mod/message.php:153
msgid "Message was not deleted."
msgstr "Meddelandet togs inte bort."
-#: mod/message.php:169
+#: mod/message.php:168
msgid "Conversation was not removed."
msgstr "Konversationen togs inte bort."
-#: 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 "Ange en länk (URL):"
-#: 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 "Skicka personligt meddelande"
-#: mod/message.php:193 mod/message.php:349
+#: mod/message.php:191 mod/message.php:346
msgid "To:"
msgstr "Till:"
-#: mod/message.php:194 mod/message.php:350
+#: mod/message.php:192 mod/message.php:347
msgid "Subject:"
msgstr "Rubrik:"
-#: 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 "Meddelande:"
-#: mod/message.php:201 mod/message.php:357 src/Content/Conversation.php:352
-#: src/Module/Post/Edit.php:128
+#: 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:202 mod/message.php:358 src/Module/Post/Edit.php:132
-#: src/Module/Profile/UnkMail.php:154
+#: 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:203 mod/message.php:360 mod/photos.php:1291
-#: src/Content/Conversation.php:381 src/Content/Conversation.php:727
-#: src/Module/Item/Compose.php:204 src/Module/Post/Edit.php:142
-#: src/Module/Profile/UnkMail.php:155 src/Object/Post.php:545
+#: 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:204 mod/message.php:359 mod/photos.php:702
-#: mod/photos.php:819 mod/photos.php:1097 mod/photos.php:1138
-#: mod/photos.php:1194 mod/photos.php:1268
+#: 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:340
+#: 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
@@ -312,59 +312,64 @@ msgstr "Var god vänta"
#: 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:156
-#: src/Module/Settings/Profile/Index.php:231 src/Object/Post.php:1058
+#: 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:225
+#: mod/message.php:223
msgid "No messages."
msgstr "Inga meddelanden."
-#: mod/message.php:281
+#: mod/message.php:279
msgid "Message not available."
msgstr "Meddelandet är inte tillgängligt."
-#: mod/message.php:326
+#: mod/message.php:323
msgid "Delete message"
msgstr "Ta bort meddelande"
-#: 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 "Ta bort konversation"
-#: 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 "Inga säkra kommunikationer tillgängliga. Du
upload_max_filesize
is set to %s (%s byte)"
msgstr ""
-#: src/Module/Admin/Site.php:431
+#: src/Module/Admin/Site.php:439
msgid "Maximum image length"
msgstr "Maximal bildlängd"
-#: src/Module/Admin/Site.php:431
+#: 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:432
+#: src/Module/Admin/Site.php:440
msgid "JPEG image quality"
msgstr "Kvalité för JPEG-bilden"
-#: src/Module/Admin/Site.php:432
+#: 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:434
+#: src/Module/Admin/Site.php:442
msgid "Register policy"
msgstr "Registrera policy"
-#: src/Module/Admin/Site.php:435
+#: 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:435
+#: 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:436
+#: src/Module/Admin/Site.php:445
msgid "Register text"
msgstr "Registrera text"
-#: src/Module/Admin/Site.php:436
+#: 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:437
+#: src/Module/Admin/Site.php:446
msgid "Forbidden Nicknames"
msgstr "Förbjudna smeknamn"
-#: src/Module/Admin/Site.php:437
+#: 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:438
+#: src/Module/Admin/Site.php:447
msgid "Accounts abandoned after x days"
msgstr "Konton som övergavs efter x dagar"
-#: src/Module/Admin/Site.php:438
+#: 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:439
+#: src/Module/Admin/Site.php:448
msgid "Allowed friend domains"
msgstr "Tillåtna vän-domäner"
-#: src/Module/Admin/Site.php:439
+#: 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:440
+#: src/Module/Admin/Site.php:449
msgid "Allowed email domains"
msgstr "Tillåtna e-postdomäner"
-#: src/Module/Admin/Site.php:440
+#: 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:441
+#: src/Module/Admin/Site.php:450
msgid "No OEmbed rich content"
msgstr ""
-#: src/Module/Admin/Site.php:441
+#: 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:442
+#: src/Module/Admin/Site.php:451
msgid "Trusted third-party domains"
msgstr ""
-#: src/Module/Admin/Site.php:442
+#: 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:443
+#: src/Module/Admin/Site.php:452
msgid "Block public"
msgstr "Blockera publik"
-#: src/Module/Admin/Site.php:443
+#: 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:444
+#: src/Module/Admin/Site.php:453
msgid "Force publish"
msgstr "Tvinga publicering"
-#: src/Module/Admin/Site.php:444
+#: 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:444
+#: src/Module/Admin/Site.php:453
msgid "Enabling this may violate privacy laws like the GDPR"
msgstr ""
-#: src/Module/Admin/Site.php:445
+#: src/Module/Admin/Site.php:454
msgid "Global directory URL"
msgstr ""
-#: src/Module/Admin/Site.php:445
+#: 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:446
+#: 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:446
+#: 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:447
+#: 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:447
+#: 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:448
+#: src/Module/Admin/Site.php:457
msgid "Disallow public access to addons listed in the apps menu."
msgstr ""
-#: src/Module/Admin/Site.php:448
+#: 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:449
+#: src/Module/Admin/Site.php:458
msgid "Don't embed private images in posts"
msgstr ""
-#: src/Module/Admin/Site.php:449
+#: 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 "
@@ -4458,11 +4743,11 @@ msgid ""
"while."
msgstr ""
-#: src/Module/Admin/Site.php:450
+#: src/Module/Admin/Site.php:459
msgid "Explicit Content"
msgstr ""
-#: src/Module/Admin/Site.php:450
+#: 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 "
@@ -4471,267 +4756,267 @@ msgid ""
"will be shown at the user registration page."
msgstr ""
-#: src/Module/Admin/Site.php:451
+#: src/Module/Admin/Site.php:460
msgid "Proxify external content"
msgstr ""
-#: src/Module/Admin/Site.php:451
+#: 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:452
+#: src/Module/Admin/Site.php:461
msgid "Cache contact avatars"
msgstr ""
-#: src/Module/Admin/Site.php:452
+#: 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:453
+#: src/Module/Admin/Site.php:462
msgid "Allow Users to set remote_self"
msgstr ""
-#: src/Module/Admin/Site.php:453
+#: 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:454
+#: src/Module/Admin/Site.php:463
msgid "Enable multiple registrations"
msgstr ""
-#: src/Module/Admin/Site.php:454
+#: src/Module/Admin/Site.php:463
msgid "Enable users to register additional accounts for use as pages."
msgstr ""
-#: src/Module/Admin/Site.php:455
+#: src/Module/Admin/Site.php:464
msgid "Enable OpenID"
msgstr ""
-#: src/Module/Admin/Site.php:455
+#: src/Module/Admin/Site.php:464
msgid "Enable OpenID support for registration and logins."
msgstr ""
-#: src/Module/Admin/Site.php:456
+#: src/Module/Admin/Site.php:465
msgid "Enable Fullname check"
msgstr ""
-#: src/Module/Admin/Site.php:456
+#: 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:457
+#: src/Module/Admin/Site.php:466
msgid "Email administrators on new registration"
msgstr ""
-#: src/Module/Admin/Site.php:457
+#: 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:458
+#: src/Module/Admin/Site.php:467
msgid "Community pages for visitors"
msgstr ""
-#: src/Module/Admin/Site.php:458
+#: 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:459
+#: src/Module/Admin/Site.php:468
msgid "Posts per user on community page"
msgstr ""
-#: src/Module/Admin/Site.php:459
+#: 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:461
+#: src/Module/Admin/Site.php:470
msgid "Enable Mail support"
msgstr ""
-#: src/Module/Admin/Site.php:461
+#: 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:462
+#: 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:463
+#: src/Module/Admin/Site.php:472
msgid "Enable OStatus support"
msgstr ""
-#: src/Module/Admin/Site.php:463
+#: 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:465
+#: 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:466
+#: src/Module/Admin/Site.php:475
msgid "Enable Diaspora support"
msgstr "Aktivera Diaspora-support"
-#: src/Module/Admin/Site.php:466
+#: src/Module/Admin/Site.php:475
msgid ""
"Enable built-in Diaspora network compatibility for communicating with "
"diaspora servers."
msgstr ""
-#: src/Module/Admin/Site.php:467
+#: src/Module/Admin/Site.php:476
msgid "Verify SSL"
msgstr "Bekräfta SSL"
-#: src/Module/Admin/Site.php:467
+#: 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:468
+#: src/Module/Admin/Site.php:477
msgid "Proxy user"
msgstr "Proxy-användare"
-#: src/Module/Admin/Site.php:468
+#: src/Module/Admin/Site.php:477
msgid "User name for the proxy server."
msgstr ""
-#: src/Module/Admin/Site.php:469
+#: src/Module/Admin/Site.php:478
msgid "Proxy URL"
msgstr "URL för proxy"
-#: src/Module/Admin/Site.php:469
+#: 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:470
+#: src/Module/Admin/Site.php:479
msgid "Network timeout"
msgstr "Tidsgräns för nätverket"
-#: src/Module/Admin/Site.php:470
+#: 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:471
+#: src/Module/Admin/Site.php:480
msgid "Maximum Load Average"
msgstr ""
-#: src/Module/Admin/Site.php:471
+#: 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:472
+#: src/Module/Admin/Site.php:481
msgid "Minimal Memory"
msgstr ""
-#: src/Module/Admin/Site.php:472
+#: 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:473
+#: src/Module/Admin/Site.php:482
msgid "Periodically optimize tables"
msgstr ""
-#: src/Module/Admin/Site.php:473
+#: src/Module/Admin/Site.php:482
msgid "Periodically optimize tables like the cache and the workerqueue"
msgstr ""
-#: src/Module/Admin/Site.php:475
+#: src/Module/Admin/Site.php:484
msgid "Discover followers/followings from contacts"
msgstr ""
-#: src/Module/Admin/Site.php:475
+#: src/Module/Admin/Site.php:484
msgid ""
"If enabled, contacts are checked for their followers and following contacts."
msgstr ""
-#: src/Module/Admin/Site.php:476
+#: src/Module/Admin/Site.php:485
msgid "None - deactivated"
msgstr ""
-#: src/Module/Admin/Site.php:477
+#: 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:478
+#: 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:480
+#: src/Module/Admin/Site.php:489
msgid "Synchronize the contacts with the directory server"
msgstr ""
-#: src/Module/Admin/Site.php:480
+#: 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:482
+#: src/Module/Admin/Site.php:491
msgid "Days between requery"
msgstr ""
-#: src/Module/Admin/Site.php:482
+#: 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:483
+#: src/Module/Admin/Site.php:492
msgid "Discover contacts from other servers"
msgstr ""
-#: src/Module/Admin/Site.php:483
+#: 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:484
+#: src/Module/Admin/Site.php:493
msgid "Search the local directory"
msgstr ""
-#: src/Module/Admin/Site.php:484
+#: 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:486
+#: src/Module/Admin/Site.php:495
msgid "Publish server information"
msgstr ""
-#: src/Module/Admin/Site.php:486
+#: 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 "
@@ -4739,50 +5024,50 @@ msgid ""
" href=\"http://the-federation.info/\">the-federation.info for details."
msgstr ""
-#: src/Module/Admin/Site.php:488
+#: src/Module/Admin/Site.php:497
msgid "Check upstream version"
msgstr ""
-#: src/Module/Admin/Site.php:488
+#: 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:489
+#: src/Module/Admin/Site.php:498
msgid "Suppress Tags"
msgstr ""
-#: src/Module/Admin/Site.php:489
+#: 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:490
+#: src/Module/Admin/Site.php:499
msgid "Clean database"
msgstr ""
-#: src/Module/Admin/Site.php:490
+#: 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:491
+#: src/Module/Admin/Site.php:500
msgid "Lifespan of remote items"
msgstr ""
-#: src/Module/Admin/Site.php:491
+#: 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:492
+#: src/Module/Admin/Site.php:501
msgid "Lifespan of unclaimed items"
msgstr ""
-#: src/Module/Admin/Site.php:492
+#: 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. "
@@ -4790,144 +5075,144 @@ msgid ""
"items if set to 0."
msgstr ""
-#: src/Module/Admin/Site.php:493
+#: src/Module/Admin/Site.php:502
msgid "Lifespan of raw conversation data"
msgstr ""
-#: src/Module/Admin/Site.php:493
+#: 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:494
+#: src/Module/Admin/Site.php:503
msgid "Maximum numbers of comments per post"
msgstr ""
-#: src/Module/Admin/Site.php:494
+#: 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:495
+#: src/Module/Admin/Site.php:504
msgid "Maximum numbers of comments per post on the display page"
msgstr ""
-#: src/Module/Admin/Site.php:495
+#: 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:496
+#: src/Module/Admin/Site.php:505
msgid "Temp path"
msgstr "Tillfällig genväg"
-#: src/Module/Admin/Site.php:496
+#: 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:497
+#: src/Module/Admin/Site.php:506
msgid "Only search in tags"
msgstr "Sök endast i taggar"
-#: src/Module/Admin/Site.php:497
+#: 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:498
-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:498
+#: src/Module/Admin/Site.php:507
msgid ""
-"On systems with users that heavily use contact groups the query can be very "
-"expensive."
+"On systems with users that heavily use contact circles the query can be very"
+" expensive."
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: src/Module/Admin/Site.php:509
msgid "Maximum number of parallel workers"
msgstr ""
-#: src/Module/Admin/Site.php:500
+#: 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:501
+#: src/Module/Admin/Site.php:510
msgid "Enable fastlane"
msgstr ""
-#: src/Module/Admin/Site.php:501
+#: 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:503
+#: src/Module/Admin/Site.php:512
msgid "Direct relay transfer"
msgstr ""
-#: src/Module/Admin/Site.php:503
+#: 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:504
+#: src/Module/Admin/Site.php:513
msgid "Relay scope"
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: 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:504 src/Module/Contact/Profile.php:287
+#: 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:504
+#: src/Module/Admin/Site.php:513
msgid "all"
msgstr ""
-#: src/Module/Admin/Site.php:504
+#: src/Module/Admin/Site.php:513
msgid "tags"
msgstr ""
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:514
msgid "Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:505
+#: src/Module/Admin/Site.php:514
msgid "Comma separated list of tags for the \"tags\" subscription."
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:515
msgid "Deny Server tags"
msgstr ""
-#: src/Module/Admin/Site.php:506
+#: src/Module/Admin/Site.php:515
msgid "Comma separated list of tags that are rejected."
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: src/Module/Admin/Site.php:516
msgid "Allow user tags"
msgstr ""
-#: src/Module/Admin/Site.php:507
+#: 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:510
+#: src/Module/Admin/Site.php:519
msgid "Start Relocation"
msgstr ""
@@ -4973,7 +5258,13 @@ 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 ""
@@ -5077,51 +5368,40 @@ msgid ""
"href=\"%s\">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
+#: 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:180
+#: 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:188
+#: 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:199
+#: src/Module/Admin/Summary.php:175
msgid "Message queues"
msgstr "Meddelandeköer"
-#: src/Module/Admin/Summary.php:205
+#: src/Module/Admin/Summary.php:181
msgid "Server Settings"
msgstr ""
-#: src/Module/Admin/Summary.php:223
+#: src/Module/Admin/Summary.php:199
msgid "Version"
msgstr "Version"
-#: src/Module/Admin/Summary.php:227
+#: src/Module/Admin/Summary.php:203
msgid "Active addons"
msgstr ""
@@ -5161,16 +5441,16 @@ 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]"
@@ -5274,11 +5554,11 @@ msgstr "Objektet hittades inte."
msgid "Please login to continue."
msgstr "Vänligen logga in för att fortsätta."
-#: src/Module/BaseAdmin.php:63 src/Module/BaseModeration.php:86
+#: src/Module/BaseAdmin.php:63
msgid "You don't have access to administration pages."
msgstr ""
-#: src/Module/BaseAdmin.php:67 src/Module/BaseModeration.php:90
+#: src/Module/BaseAdmin.php:67
msgid ""
"Submanaged account can't access the administration pages. Please log back in"
" as the main account."
@@ -5288,11 +5568,11 @@ msgstr ""
msgid "Overview"
msgstr ""
-#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:111
+#: src/Module/BaseAdmin.php:89 src/Module/BaseModeration.php:112
msgid "Configuration"
msgstr ""
-#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:112
+#: src/Module/BaseAdmin.php:94 src/Module/BaseSettings.php:110
msgid "Additional features"
msgstr "Ytterligare funktioner"
@@ -5312,7 +5592,7 @@ msgstr ""
msgid "Inspect worker Queue"
msgstr ""
-#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:119
+#: src/Module/BaseAdmin.php:106 src/Module/BaseModeration.php:120
msgid "Diagnostics"
msgstr ""
@@ -5340,23 +5620,23 @@ msgstr ""
msgid "Addon Features"
msgstr ""
-#: src/Module/BaseAdmin.php:121 src/Module/BaseModeration.php:128
+#: 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:266 src/Module/BaseApi.php:282
-#: src/Module/BaseApi.php:298
+#: src/Module/BaseApi.php:451 src/Module/BaseApi.php:467
+#: src/Module/BaseApi.php:483
msgid "Too Many Requests"
msgstr ""
-#: src/Module/BaseApi.php:267
+#: 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:283
+#: src/Module/BaseApi.php:468
#, php-format
msgid "Weekly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -5364,7 +5644,7 @@ 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:299
+#: src/Module/BaseApi.php:484
#, php-format
msgid "Monthly posting limit of %d post reached. The post was rejected."
msgid_plural ""
@@ -5372,32 +5652,46 @@ msgid_plural ""
msgstr[0] ""
msgstr[1] ""
-#: src/Module/BaseModeration.php:112 src/Module/Moderation/Users/Index.php:148
+#: 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:114
+#: src/Module/BaseModeration.php:115
msgid "Tools"
msgstr ""
-#: src/Module/BaseModeration.php:115
+#: src/Module/BaseModeration.php:116
msgid "Contact Blocklist"
msgstr ""
-#: src/Module/BaseModeration.php:116
+#: src/Module/BaseModeration.php:117
msgid "Server Blocklist"
msgstr ""
-#: src/Module/BaseModeration.php:117 src/Module/Moderation/Item/Delete.php:62
+#: src/Module/BaseModeration.php:118 src/Module/Moderation/Item/Delete.php:62
msgid "Delete Item"
msgstr "Ta bort objekt"
-#: src/Module/BaseModeration.php:120 src/Module/Moderation/Item/Source.php:76
+#: 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:479
+#: src/Module/BaseProfile.php:52 src/Module/Contact.php:507
msgid "Profile Details"
msgstr "Profildetaljer"
@@ -5409,7 +5703,7 @@ msgstr ""
msgid "Only You Can See This"
msgstr "Endast du kan se det här"
-#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:82
+#: src/Module/BaseProfile.php:116 src/Module/Profile/Schedule.php:81
msgid "Scheduled Posts"
msgstr ""
@@ -5421,50 +5715,67 @@ msgstr ""
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/BaseSearch.php:119 src/Module/Contact/MatchInterests.php:139
+#: src/Module/BaseSearch.php:121 src/Module/Contact/MatchInterests.php:139
msgid "No matches"
msgstr "Ingen träff"
-#: src/Module/BaseSettings.php:80
+#: 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:87 src/Module/Security/TwoFactor/Verify.php:96
+#: 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:120
+#: src/Module/BaseSettings.php:118
msgid "Display"
msgstr "Skärm"
-#: src/Module/BaseSettings.php:127 src/Module/Settings/Connectors.php:202
+#: src/Module/BaseSettings.php:125 src/Module/Settings/Connectors.php:204
msgid "Social Networks"
msgstr "Sociala nätverk"
-#: src/Module/BaseSettings.php:141 src/Module/Settings/Delegation.php:170
+#: src/Module/BaseSettings.php:139 src/Module/Settings/Delegation.php:172
msgid "Manage Accounts"
msgstr ""
-#: src/Module/BaseSettings.php:148
+#: src/Module/BaseSettings.php:146
msgid "Connected apps"
msgstr "Anslutna appar"
-#: src/Module/BaseSettings.php:155 src/Module/Settings/UserExport.php:98
+#: 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:162
+#: src/Module/BaseSettings.php:167
msgid "Remove account"
msgstr "Ta bort konto"
@@ -5584,10 +5895,113 @@ msgstr "Visa"
msgid "Create New Event"
msgstr "Skapa nytt evenemang"
-#: src/Module/Calendar/Show.php:132 src/Module/Settings/Display.php:235
+#: 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."
@@ -5595,159 +6009,146 @@ msgid_plural "%d contacts edited."
msgstr[0] ""
msgstr[1] ""
-#: src/Module/Contact.php:342
+#: src/Module/Contact.php:348
msgid "Show all contacts"
msgstr "Visa alla kontakter"
-#: src/Module/Contact.php:347 src/Module/Contact.php:415
+#: 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:350
+#: src/Module/Contact.php:356
msgid "Only show pending contacts"
msgstr ""
-#: src/Module/Contact.php:355 src/Module/Contact.php:416
+#: src/Module/Contact.php:361 src/Module/Contact.php:435
#: src/Module/Moderation/BaseUsers.php:93
msgid "Blocked"
msgstr "Blockerad"
-#: src/Module/Contact.php:358
+#: src/Module/Contact.php:364
msgid "Only show blocked contacts"
msgstr "Visa endast blockerade kontakter"
-#: src/Module/Contact.php:363 src/Module/Contact.php:418
-#: src/Object/Post.php:344
+#: 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:366
+#: src/Module/Contact.php:372
msgid "Only show ignored contacts"
msgstr "Visa endast ignorerade kontakter"
-#: src/Module/Contact.php:371 src/Module/Contact.php:419
+#: src/Module/Contact.php:377 src/Module/Contact.php:444
msgid "Collapsed"
msgstr ""
-#: src/Module/Contact.php:374
+#: src/Module/Contact.php:380
msgid "Only show collapsed contacts"
msgstr ""
-#: src/Module/Contact.php:379 src/Module/Contact.php:420
+#: src/Module/Contact.php:385 src/Module/Contact.php:447
msgid "Archived"
msgstr "Arkiverat"
-#: src/Module/Contact.php:382
+#: src/Module/Contact.php:388
msgid "Only show archived contacts"
msgstr "Visa endast arkiverade kontakter"
-#: src/Module/Contact.php:387 src/Module/Contact.php:417
+#: src/Module/Contact.php:393 src/Module/Contact.php:438
msgid "Hidden"
msgstr "Gömda"
-#: src/Module/Contact.php:390
+#: src/Module/Contact.php:396
msgid "Only show hidden contacts"
msgstr "Visa endast gömda kontakter"
-#: src/Module/Contact.php:398
-msgid "Organize your contact groups"
+#: src/Module/Contact.php:404
+msgid "Organize your contact circles"
msgstr ""
-#: src/Module/Contact.php:431
+#: src/Module/Contact.php:459
msgid "Search your contacts"
msgstr "Sök dina kontakter"
-#: src/Module/Contact.php:432 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:439
+#: src/Module/Contact.php:467
msgid "Update"
msgstr "Uppdatera"
-#: src/Module/Contact.php:440 src/Module/Contact/Profile.php:478
+#: 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:441 src/Module/Contact/Profile.php:486
+#: src/Module/Contact.php:469 src/Module/Contact/Profile.php:519
msgid "Unignore"
msgstr "Sluta ignorera"
-#: src/Module/Contact.php:442 src/Module/Contact/Profile.php:494
+#: src/Module/Contact.php:470 src/Module/Contact/Profile.php:527
msgid "Uncollapse"
msgstr ""
-#: src/Module/Contact.php:444
+#: src/Module/Contact.php:472
msgid "Batch Actions"
msgstr ""
-#: src/Module/Contact.php:487
+#: src/Module/Contact.php:515
msgid "Conversations started by this contact"
msgstr ""
-#: src/Module/Contact.php:492
+#: src/Module/Contact.php:520
msgid "Posts and Comments"
msgstr ""
-#: src/Module/Contact.php:495
+#: src/Module/Contact.php:523
msgid "Individual Posts and Replies"
msgstr ""
-#: src/Module/Contact.php:503
+#: src/Module/Contact.php:531
msgid "Posts containing media objects"
msgstr ""
-#: src/Module/Contact.php:510
+#: src/Module/Contact.php:539
msgid "View all known contacts"
msgstr ""
-#: src/Module/Contact.php:520
+#: src/Module/Contact.php:550
msgid "Advanced Contact Settings"
msgstr ""
-#: src/Module/Contact.php:556
+#: src/Module/Contact.php:586
msgid "Mutual Friendship"
msgstr "Ömsesidig vänskap"
-#: src/Module/Contact.php:560
+#: src/Module/Contact.php:590
msgid "is a fan of yours"
msgstr "är ett fan till dig"
-#: src/Module/Contact.php:564
+#: src/Module/Contact.php:594
msgid "you are a fan of"
msgstr "du är fan till"
-#: src/Module/Contact.php:582
+#: src/Module/Contact.php:612
msgid "Pending outgoing contact request"
msgstr "Väntande utgående kontaktbegäran"
-#: src/Module/Contact.php:584
+#: src/Module/Contact.php:614
msgid "Pending incoming contact request"
msgstr "Väntande inkommande kontaktbegäran"
-#: src/Module/Contact.php:597 src/Module/Contact/Profile.php:347
+#: 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]"
-#: 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
-#: src/Module/Group.php:97 src/Module/Group.php:106
-msgid "Contact not found."
-msgstr "Kontakten hittades inte."
-
#: src/Module/Contact/Advanced.php:99
msgid "Contact update failed."
msgstr "Det gick inte att uppdatera kontakt."
@@ -5758,13 +6159,14 @@ 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:71
+#: 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:73
+#: src/Module/Moderation/Users/Pending.php:99 src/Module/Settings/OAuth.php:72
msgid "Name"
msgstr "Namn"
@@ -5784,11 +6186,6 @@ msgstr ""
msgid "New photo from this URL"
msgstr "Nytt foto från den här webbadressen"
-#: src/Module/Contact/Contacts.php:66 src/Module/Conversation/Network.php:189
-#: src/Module/Group.php:101
-msgid "Invalid contact."
-msgstr "Ogiltig kontakt."
-
#: src/Module/Contact/Contacts.php:89
msgid "No known contacts."
msgstr "Inga kända kontakter."
@@ -5797,28 +6194,28 @@ msgstr "Inga kända kontakter."
msgid "No common contacts."
msgstr "Inga gemensamma kontakter."
-#: src/Module/Contact/Contacts.php:115 src/Module/Profile/Contacts.php:132
+#: 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:119 src/Module/Profile/Contacts.php:135
+#: 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:123 src/Module/Profile/Contacts.php:138
+#: 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:125 src/Module/Profile/Contacts.php:140
+#: 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 ""
@@ -5837,15 +6234,15 @@ msgid ""
"contacts (follow, comment or likes on public posts)."
msgstr ""
-#: src/Module/Contact/Contacts.php:139 src/Module/Profile/Contacts.php:146
+#: 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:69 src/Module/Contact/Redir.php:62
-#: src/Module/Contact/Redir.php:222 src/Module/Conversation/Community.php:194
+#: 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
@@ -5854,71 +6251,72 @@ msgstr[1] ""
msgid "Access denied."
msgstr "Åtkomst nekad."
-#: src/Module/Contact/Follow.php:104 src/Module/Contact/Unfollow.php:125
+#: 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:114
+#: 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:129
+#: 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:137
+#: 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:142
+#: 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:167 src/Module/Profile/RemoteFollow.php:132
+#: 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:168 src/Module/Contact/Unfollow.php:123
+#: 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:169 src/Module/Contact/Profile.php:376
+#: 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:170 src/Module/Contact/Profile.php:388
+#: 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:181
+#: src/Module/Contact/Follow.php:182
#, php-format
msgid "%s knows you"
msgstr "%s känner dig"
-#: src/Module/Contact/Follow.php:182
+#: src/Module/Contact/Follow.php:183
msgid "Add a personal note:"
msgstr "Lägg till ett personligt meddelande:"
-#: src/Module/Contact/Follow.php:191 src/Module/Contact/Unfollow.php:138
+#: src/Module/Contact/Follow.php:192 src/Module/Contact/Unfollow.php:138
msgid "Posts and Replies"
msgstr ""
-#: src/Module/Contact/Follow.php:220
+#: 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:79
-#: src/Module/Media/Attachment/Upload.php:84
-#: src/Module/Media/Photo/Upload.php:83 src/Module/Media/Photo/Upload.php:88
-#: src/Module/Media/Photo/Upload.php:137
+#: 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."
@@ -5930,248 +6328,312 @@ msgstr ""
msgid "Profile Match"
msgstr "Matcha profiler"
-#: src/Module/Contact/Profile.php:128
+#: 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:178
+#: src/Module/Contact/Profile.php:190
msgid "Contact has been unblocked"
msgstr "Kontakten är inte längre spärrad"
-#: src/Module/Contact/Profile.php:182
+#: src/Module/Contact/Profile.php:194
msgid "Contact has been blocked"
msgstr "Kontakten har spärrats"
-#: src/Module/Contact/Profile.php:194
+#: src/Module/Contact/Profile.php:206
msgid "Contact has been unignored"
msgstr "Kontakten ignoreras inte längre"
-#: src/Module/Contact/Profile.php:198
+#: src/Module/Contact/Profile.php:210
msgid "Contact has been ignored"
msgstr "Kontakten ignoreras"
-#: src/Module/Contact/Profile.php:210
+#: src/Module/Contact/Profile.php:222
msgid "Contact has been uncollapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:214
+#: src/Module/Contact/Profile.php:226
msgid "Contact has been collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:243
+#: 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:244
+#: src/Module/Contact/Profile.php:255
#, php-format
msgid "You are sharing with %s"
msgstr "Du delar med %s"
-#: src/Module/Contact/Profile.php:245
+#: src/Module/Contact/Profile.php:256
#, php-format
msgid "%s is sharing with you"
msgstr "%s delar med dig"
-#: src/Module/Contact/Profile.php:261
+#: 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:263
+#: 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:266
+#: src/Module/Contact/Profile.php:288
msgid "(Update was not successful)"
msgstr "(Uppdateringen lyckades inte)"
-#: src/Module/Contact/Profile.php:266
+#: src/Module/Contact/Profile.php:288
msgid "(Update was successful)"
msgstr "(Uppdateringen lyckades)"
-#: src/Module/Contact/Profile.php:268 src/Module/Contact/Profile.php:449
+#: 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:272
+#: src/Module/Contact/Profile.php:294
#, php-format
msgid "Network type: %s"
msgstr "Nätverkstyp: %s"
-#: src/Module/Contact/Profile.php:277
+#: 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:283
+#: src/Module/Contact/Profile.php:305
msgid "Fetch further information for feeds"
msgstr ""
-#: src/Module/Contact/Profile.php:285
+#: 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:288
+#: src/Module/Contact/Profile.php:310
msgid "Fetch information"
msgstr "Hämta information"
-#: src/Module/Contact/Profile.php:289
+#: src/Module/Contact/Profile.php:311
msgid "Fetch keywords"
msgstr ""
-#: src/Module/Contact/Profile.php:290
+#: src/Module/Contact/Profile.php:312
msgid "Fetch information and keywords"
msgstr ""
-#: src/Module/Contact/Profile.php:300 src/Module/Contact/Profile.php:305
-#: src/Module/Contact/Profile.php:310 src/Module/Contact/Profile.php:316
+#: 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:301 src/Module/Contact/Profile.php:311
-#: src/Module/Contact/Profile.php:317
+#: 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:306 src/Module/Contact/Profile.php:312
+#: src/Module/Contact/Profile.php:328 src/Module/Contact/Profile.php:334
msgid "Native reshare"
msgstr ""
-#: src/Module/Contact/Profile.php:329
+#: src/Module/Contact/Profile.php:353
msgid "Contact Information / Notes"
msgstr "Kontaktuppgifter/Anteckningar"
-#: src/Module/Contact/Profile.php:330
+#: src/Module/Contact/Profile.php:354
msgid "Contact Settings"
msgstr ""
-#: src/Module/Contact/Profile.php:338
+#: src/Module/Contact/Profile.php:362
msgid "Contact"
msgstr "Kontakt"
-#: src/Module/Contact/Profile.php:342
+#: src/Module/Contact/Profile.php:366
msgid "Their personal note"
msgstr "Deras personliga anteckning"
-#: src/Module/Contact/Profile.php:344
+#: src/Module/Contact/Profile.php:368
msgid "Edit contact notes"
msgstr "Redigera kontaktanteckningar"
-#: src/Module/Contact/Profile.php:348
+#: src/Module/Contact/Profile.php:372
msgid "Block/Unblock contact"
msgstr "Spärra kontakt eller häv spärr"
-#: src/Module/Contact/Profile.php:349
+#: src/Module/Contact/Profile.php:373
+#: src/Module/Moderation/Report/Create.php:293
msgid "Ignore contact"
msgstr "Ignorera kontakt"
-#: src/Module/Contact/Profile.php:350
+#: src/Module/Contact/Profile.php:374
msgid "View conversations"
msgstr "Visa konversationer"
-#: src/Module/Contact/Profile.php:355
+#: src/Module/Contact/Profile.php:379
msgid "Last update:"
msgstr "Senaste uppdatering:"
-#: src/Module/Contact/Profile.php:357
+#: src/Module/Contact/Profile.php:381
msgid "Update public posts"
msgstr "Uppdatera publika inlägg"
-#: src/Module/Contact/Profile.php:359 src/Module/Contact/Profile.php:459
+#: src/Module/Contact/Profile.php:383 src/Module/Contact/Profile.php:492
msgid "Update now"
msgstr "Updatera nu"
-#: src/Module/Contact/Profile.php:361
+#: src/Module/Contact/Profile.php:385
msgid "Awaiting connection acknowledge"
msgstr ""
-#: src/Module/Contact/Profile.php:362
+#: src/Module/Contact/Profile.php:386
msgid "Currently blocked"
msgstr "Spärrad"
-#: src/Module/Contact/Profile.php:363
+#: src/Module/Contact/Profile.php:387
msgid "Currently ignored"
msgstr "Ignoreras"
-#: src/Module/Contact/Profile.php:364
+#: src/Module/Contact/Profile.php:388
msgid "Currently collapsed"
msgstr ""
-#: src/Module/Contact/Profile.php:365
+#: src/Module/Contact/Profile.php:389
msgid "Currently archived"
msgstr ""
-#: src/Module/Contact/Profile.php:368
+#: 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:368
+#: src/Module/Contact/Profile.php:394
msgid ""
"Replies/likes to your public posts may still be visible"
msgstr ""
-#: src/Module/Contact/Profile.php:369
+#: src/Module/Contact/Profile.php:395
msgid "Notification for new posts"
msgstr "Avisering för nya inlägg"
-#: src/Module/Contact/Profile.php:369
+#: src/Module/Contact/Profile.php:395
msgid "Send a notification of every new post of this contact"
msgstr ""
-#: src/Module/Contact/Profile.php:371
+#: src/Module/Contact/Profile.php:397
msgid "Keyword Deny List"
msgstr ""
-#: src/Module/Contact/Profile.php:371
+#: 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:389
+#: src/Module/Contact/Profile.php:415
#: src/Module/Settings/TwoFactor/Index.php:139
msgid "Actions"
msgstr ""
-#: src/Module/Contact/Profile.php:391
+#: 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:397
+#: src/Module/Contact/Profile.php:423
msgid "Mirror postings from this contact"
msgstr ""
-#: src/Module/Contact/Profile.php:399
+#: 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:469
+#: 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:480
+#: src/Module/Contact/Profile.php:513
msgid "Toggle Blocked status"
msgstr ""
-#: src/Module/Contact/Profile.php:488
+#: src/Module/Contact/Profile.php:521
msgid "Toggle Ignored status"
msgstr ""
-#: src/Module/Contact/Profile.php:496
+#: src/Module/Contact/Profile.php:529
msgid "Toggle Collapsed status"
msgstr ""
-#: src/Module/Contact/Profile.php:503 src/Module/Contact/Revoke.php:106
+#: src/Module/Contact/Profile.php:536 src/Module/Contact/Revoke.php:106
msgid "Revoke Follow"
msgstr ""
-#: src/Module/Contact/Profile.php:505
+#: src/Module/Contact/Profile.php:538
msgid "Revoke the follow from this contact"
msgstr ""
@@ -6183,10 +6645,6 @@ msgstr "Dålig begäran."
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 ""
@@ -6234,102 +6692,54 @@ msgstr "Avföljningen av kontakten lyckades"
msgid "Unable to unfollow this contact, please contact your administrator"
msgstr ""
-#: src/Module/Conversation/Community.php:74
+#: 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/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:87
-msgid "Local Community"
-msgstr ""
-
-#: src/Module/Conversation/Community.php:90
-msgid "Posts from local users on this server"
-msgstr ""
-
-#: src/Module/Conversation/Community.php:98
-msgid "Global Community"
-msgstr ""
-
-#: src/Module/Conversation/Community.php:101
-msgid "Posts from users of the whole federated network"
-msgstr ""
-
-#: src/Module/Conversation/Community.php:134
-msgid "Own Contacts"
-msgstr "Egna kontakter"
-
-#: src/Module/Conversation/Community.php:138
-msgid "Include"
-msgstr "Inkludera"
-
-#: src/Module/Conversation/Community.php:139
-msgid "Hide"
-msgstr "Dölj"
-
-#: src/Module/Conversation/Community.php:156 src/Module/Search/Index.php:152
-#: src/Module/Search/Index.php:194
-msgid "No results."
-msgstr "Inga resultat."
-
-#: 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 "Inte tillgängligt."
-#: src/Module/Conversation/Network.php:175
-msgid "No such group"
-msgstr "Gruppen finns inte"
+#: src/Module/Conversation/Network.php:218
+msgid "No such circle"
+msgstr ""
-#: src/Module/Conversation/Network.php:179
+#: src/Module/Conversation/Network.php:222
#, php-format
-msgid "Group: %s"
-msgstr "Grupp: %s"
-
-#: src/Module/Conversation/Network.php:257
-msgid "Latest Activity"
+msgid "Circle: %s"
msgstr ""
-#: src/Module/Conversation/Network.php:260
-msgid "Sort by latest activity"
+#: src/Module/Conversation/Network.php:317
+msgid "Network feed not available."
msgstr ""
-#: src/Module/Conversation/Network.php:265
-msgid "Latest Posts"
-msgstr ""
+#: src/Module/Conversation/Timeline.php:158
+msgid "Own Contacts"
+msgstr "Egna kontakter"
-#: src/Module/Conversation/Network.php:268
-msgid "Sort by post received date"
-msgstr ""
+#: src/Module/Conversation/Timeline.php:162
+msgid "Include"
+msgstr "Inkludera"
-#: 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:236
-msgid "Personal"
-msgstr "Privat"
-
-#: src/Module/Conversation/Network.php:284
-msgid "Posts that mention or involve you"
-msgstr "Inlägg som nämnde eller involverade dig"
-
-#: src/Module/Conversation/Network.php:289 src/Object/Post.php:356
-msgid "Starred"
-msgstr "Stjärnmärkt"
-
-#: src/Module/Conversation/Network.php:292
-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"
@@ -6547,7 +6957,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:144
+#: 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"
@@ -6676,138 +7086,58 @@ msgstr "Föreslå vänner"
msgid "Suggest a friend for %s"
msgstr "Föreslå en vän till %s"
-#: src/Module/Friendica.php:64
+#: src/Module/Friendica.php:82
msgid "Installed addons/apps:"
msgstr ""
-#: src/Module/Friendica.php:69
+#: src/Module/Friendica.php:87
msgid "No installed addons/apps"
msgstr ""
-#: src/Module/Friendica.php:74
+#: src/Module/Friendica.php:92
#, php-format
msgid "Read about the Terms of Service of this node."
msgstr ""
-#: src/Module/Friendica.php:81
+#: src/Module/Friendica.php:99
msgid "On this server the following remote servers are blocked."
msgstr ""
-#: 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 "Anledning för blockeringen"
-#: src/Module/Friendica.php:86
+#: src/Module/Friendica.php:104
msgid "Download this list in CSV format"
msgstr ""
-#: src/Module/Friendica.php:100
+#: 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:105
+#: src/Module/Friendica.php:123
msgid ""
"Please visit Friendi.ca to learn more "
"about the Friendica project."
msgstr ""
-#: src/Module/Friendica.php:106
+#: 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:106
+#: src/Module/Friendica.php:124
msgid "the bugtracker at github"
msgstr ""
-#: src/Module/Friendica.php:107
+#: 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 "Det gick inte att skapa gruppen."
-
-#: src/Module/Group.php:67 src/Module/Group.php:213 src/Module/Group.php:237
-msgid "Group not found."
-msgstr "Gruppen hittades inte."
-
-#: 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 "Spara grupp"
-
-#: src/Module/Group.php:170
-msgid "Filter"
-msgstr ""
-
-#: src/Module/Group.php:176
-msgid "Create a group of contacts/friends."
-msgstr "Skapa en grupp med kontakter/vänner."
-
-#: src/Module/Group.php:218
-msgid "Unable to remove group."
-msgstr "Det gick inte att ta bort gruppen."
-
-#: 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 "Medlemmar"
-
-#: src/Module/Group.php:292
-msgid "Group is empty"
-msgstr "Gruppen är tom"
-
-#: 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 "Klicka på en kontakt för att lägga till eller ta bort."
-
-#: src/Module/Group.php:340
-msgid "Add contact to group"
-msgstr ""
-
#: src/Module/HCard.php:45
msgid "No profile"
msgstr "Ingen profil"
@@ -7099,30 +7429,26 @@ 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/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 "Flödet för det här föremålet är otillgängligt."
@@ -7161,37 +7487,30 @@ msgstr "Filer"
msgid "Upload"
msgstr "Ladda upp"
-#: src/Module/Media/Attachment/Upload.php:99
+#: 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:99
+#: 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:106
+#: 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:116
+#: src/Module/Media/Attachment/Upload.php:114
msgid "File upload failed."
msgstr "Uppladdning av filen misslyckades."
-#: src/Module/Media/Photo/Upload.php:154 src/Module/Media/Photo/Upload.php:155
+#: 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:188 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/Media/Photo/Upload.php:206 src/Module/Profile/Photos.php:243
+#: 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."
@@ -7224,40 +7543,40 @@ msgstr "Ta bort"
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:491
+#: 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:498
+#: 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:505
-msgid "Public Forum"
-msgstr "Publikt forum"
+#: 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:512
+#: 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 Forum"
-msgstr "Privat forum"
+msgid "Private Group"
+msgstr ""
-#: src/Module/Moderation/BaseUsers.php:126 src/Module/Settings/Account.php:463
+#: 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:470
+#: 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:477
+#: 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:484
-msgid "Community Forum"
+#: src/Module/Moderation/BaseUsers.php:129 src/Module/Settings/Account.php:485
+msgid "Community Group"
msgstr ""
#: src/Module/Moderation/BaseUsers.php:130
@@ -7314,6 +7633,7 @@ msgid "Block New Remote Contact"
msgstr ""
#: src/Module/Moderation/Blocklist/Contact.php:122
+#: src/Module/Moderation/Reports.php:95
msgid "Photo"
msgstr "Foto"
@@ -7387,6 +7707,8 @@ 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"
@@ -7669,6 +7991,237 @@ msgstr ""
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"
@@ -7678,7 +8231,7 @@ msgid "Automatic Follower Account"
msgstr ""
#: src/Module/Moderation/Summary.php:55
-msgid "Public Forum Account"
+msgid "Public Group Account"
msgstr ""
#: src/Module/Moderation/Summary.php:56
@@ -7690,7 +8243,7 @@ msgid "Blog Account"
msgstr "Blogg-konto"
#: src/Module/Moderation/Summary.php:58
-msgid "Private Forum Account"
+msgid "Private Group Account"
msgstr ""
#: src/Module/Moderation/Summary.php:78
@@ -7833,19 +8386,19 @@ msgstr "Ny användare"
msgid "Add User"
msgstr "Lägg till användare"
-#: src/Module/Moderation/Users/Create.php:71
+#: 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:72
+#: src/Module/Moderation/Users/Create.php:71
msgid "Nickname"
msgstr "Smeknamn"
-#: src/Module/Moderation/Users/Create.php:72
+#: 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:73
+#: src/Module/Moderation/Users/Create.php:72
msgid "Email address of the new user."
msgstr "E-postadress för den nya användaren."
@@ -7991,11 +8544,11 @@ msgstr "Hem-aviseringar"
msgid "Show unread"
msgstr ""
-#: src/Module/Notifications/Ping.php:245
+#: src/Module/Notifications/Ping.php:246
msgid "{0} requested registration"
msgstr "{0} bad om registrering"
-#: src/Module/Notifications/Ping.php:254
+#: src/Module/Notifications/Ping.php:255
#, php-format
msgid "{0} and %d others requested registration"
msgstr "{0} och %d andra bad om registrering"
@@ -8014,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:77
+#: src/Module/OAuth/Authorize.php:59 src/Module/OAuth/Token.php:78
msgid "Incomplete request data"
msgstr ""
@@ -8025,11 +8578,11 @@ 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:104
+#: src/Module/OAuth/Token.php:108
msgid "Unsupported or missing grant type"
msgstr ""
@@ -8098,67 +8651,77 @@ msgstr "ignorerades"
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: %sCustom fields appear on your profile page.
\n" "\t\t\t\tYou can use BBCodes in the field values.
\n" "\t\t\t\tReorder by dragging the field title.
\n" "\t\t\t\tEmpty the label field to remove a custom field.
\n" -"\t\t\t\tNon-public fields can only be seen by the selected Friendica contacts or the Friendica contacts in the selected groups.
" +"\t\t\t\tNon-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 "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 @@ -9988,6 +10603,42 @@ msgstr "Detta kommer att ta bort kontot helt och hållet. Efter att det är gjor 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 @@ -10309,20 +10960,41 @@ msgid "" " 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 "Not Found" +msgid "" +"This node has blocked the top-level author or the author of the shared post." msgstr "" #: src/Module/Special/DisplayNotFound.php:38 msgid "" -"Unfortunately, the requested conversation isn't available to you.
\n" -"Possible reasons include:
\n" -"{{$frequency_description}}
+ {{/if}} + {{/if}} diff --git a/view/templates/content/image.tpl b/view/templates/content/image.tpl deleted file mode 100644 index 00b1aac100..0000000000 --- a/view/templates/content/image.tpl +++ /dev/null @@ -1,5 +0,0 @@ -{{if $image.preview}} - -{{else}} - -{{/if}} diff --git a/view/templates/content/image_grid.tpl b/view/templates/content/image/grid.tpl similarity index 62% rename from view/templates/content/image_grid.tpl rename to view/templates/content/image/grid.tpl index 95e49ee3e1..091e69e8e2 100644 --- a/view/templates/content/image_grid.tpl +++ b/view/templates/content/image/grid.tpl @@ -1,12 +1,12 @@- +
diff --git a/view/templates/moderation/report/overview.tpl b/view/templates/moderation/report/overview.tpl new file mode 100644 index 0000000000..38fd603474 --- /dev/null +++ b/view/templates/moderation/report/overview.tpl @@ -0,0 +1,56 @@ +
{{$description nofilter}}
+ ++ {{$th}} + | + {{/foreach}} +||||||
---|---|---|---|---|---|---|
+ {{$report.created}} + | ++ |
+ {{$report.name}}> + {{if $report.addr}}{{$report.addr}}{{else}}{{$report.url}}{{/if}} + |
+ {{if $report.comment}}{{$report.comment}}{{else}}N/A{{/if}} | +{{if $report.category}}{{$report.category}}{{else}}N/A{{/if}} | +||
+
|
+
{{$no_data}}
+ {{/if}} +{{$l10n.intro}}
+{{$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}} | +