diff --git a/CHANGELOG.md b/CHANGELOG.md index a7502c85..27cbce8f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,25 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [3.7.0] - 2025-10-20 + +### Added + +* Add bulk editing support for Co-Authors in the admin interface by @mattradford-sage in https://github.com/Automattic/Co-Authors-Plus/pull/1120 +* Filter author label during selection by @Ritesh-patel in https://github.com/Automattic/Co-Authors-Plus/pull/1121 + +### Fixed + +* fix: avoid posts without authors on CLI and REST by @leogermani in https://github.com/Automattic/Co-Authors-Plus/pull/1137 + +### Maintenance + +* refactor: Update create_post method to allow nullable WP_User parameter by @GaryJones in https://github.com/Automattic/Co-Authors-Plus/pull/1122 + +### Documentation + +* Update README.md by @GaryJones in https://github.com/Automattic/Co-Authors-Plus/pull/1130 + ## [3.6.6] - 2025-05-27 ### Fixed @@ -538,6 +557,7 @@ Props to the many people who helped make this release possible: [catchmyfame](ht **1.1.0 (Apr. 14, 2009)** * Initial beta release. +[3.7.0]: https://github.com/automattic/co-authors-plus/compare/3.6.6...3.7.0 [3.6.6]: https://github.com/automattic/co-authors-plus/compare/3.6.5...3.6.6 [3.6.5]: https://github.com/automattic/co-authors-plus/compare/3.6.4...3.6.5 [3.6.4]: https://github.com/automattic/co-authors-plus/compare/3.6.3...3.6.4 diff --git a/README.md b/README.md index 41e87e7e..7c21b1f2 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ # Co-Authors Plus -Stable tag: 3.6.6 -Requires at least: 5.9 -Tested up to: 6.6 -Requires PHP: 7.4 -License: GPLv2 or later -License URI: https://www.gnu.org/licenses/gpl-2.0.html -Tags: authors, users, multiple authors, co-authors, multi-author, publishing -Contributors: batmoo, danielbachhuber, automattic, GaryJ +Stable tag: 3.7.0 +Requires at least: 5.9 +Tested up to: 6.8 +Requires PHP: 7.4 +License: GPLv2 or later +License URI: https://www.gnu.org/licenses/gpl-2.0.html +Tags: authors, users, multiple authors, co-authors, multi-author, publishing +Contributors: batmoo, danielbachhuber, automattic, GaryJ Assign multiple bylines to posts, pages, and custom post types with a search-as-you-type input box. diff --git a/co-authors-plus.php b/co-authors-plus.php index 213e92d9..f72a0a25 100755 --- a/co-authors-plus.php +++ b/co-authors-plus.php @@ -11,7 +11,7 @@ * Plugin Name: Co-Authors Plus * Plugin URI: https://wordpress.org/plugins/co-authors-plus/ * Description: Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter. - * Version: 3.6.6 + * Version: 3.7.0 * Requires at least: 5.9 * Requires PHP: 7.4 * Author: Mohammad Jangda, Daniel Bachhuber, Automattic @@ -21,7 +21,7 @@ * License URI: http://www.gnu.org/licenses/gpl-2.0.txt */ -const COAUTHORS_PLUS_VERSION = '3.6.6'; +const COAUTHORS_PLUS_VERSION = '3.7.0'; const COAUTHORS_PLUS_FILE = __FILE__; require_once __DIR__ . '/template-tags.php'; diff --git a/composer.json b/composer.json index efee0bc8..b968a833 100644 --- a/composer.json +++ b/composer.json @@ -32,6 +32,7 @@ "phpcompatibility/phpcompatibility-wp": "^2.1", "phpunit/phpunit": "^9", "wp-cli/extension-command": "^2.0", + "wp-cli/i18n-command": "^2.6", "wp-cli/wp-cli-tests": "^v4", "wp-coding-standards/wpcs": "^3.1", "yoast/wp-test-utils": "^1.2" @@ -61,6 +62,9 @@ "cbf": [ "@php ./vendor/bin/phpcbf" ], + "i18n": [ + "wp i18n make-pot . languages/co-authors-plus.pot" + ], "lint": [ "@php ./vendor/php-parallel-lint/php-parallel-lint/parallel-lint . -e php --exclude vendor --exclude .git" ], diff --git a/css/co-authors-plus.css b/css/co-authors-plus.css index 908a03b8..6c11a57f 100644 --- a/css/co-authors-plus.css +++ b/css/co-authors-plus.css @@ -6,6 +6,15 @@ margin-left: 5em; } +#bulk-edit label.bulk-edit-group { + clear: both; + margin-top: .5em; +} + +#bulk-edit #coauthors-list { + padding: 0; +} + #coauthors-list { width: 100%; padding: 0 5px; diff --git a/js/co-authors-plus.js b/js/co-authors-plus.js index 3709866c..39a568c5 100755 --- a/js/co-authors-plus.js +++ b/js/co-authors-plus.js @@ -186,6 +186,13 @@ jQuery( document ).ready(function () { .on( 'blur', function(){ $co.val( coAuthorsPlusStrings.search_box_text ) } ) ; + if ( coauthors_initialized_on_bulk_edit ) + $co.attr({ + 'aria-labelledby': 'coauthors-bulk-edit-label', + 'aria-describedby': 'coauthors-bulk-edit-desc' + }) + ; + return $co; } @@ -395,6 +402,7 @@ jQuery( document ).ready(function () { var wpInlineEdit = inlineEditPost.edit; + // Inline editing inlineEditPost.edit = function( id ) { wpInlineEdit.apply( this, arguments ) @@ -429,6 +437,32 @@ jQuery( document ).ready(function () { } } + + // Bulk editing + var coauthors_initialized_on_bulk_edit = false; + var wpBulkEdit = inlineEditPost.setBulk; + + inlineEditPost.setBulk = function() { + + wpBulkEdit.apply( this, arguments ); + + // Initialize co-authors, but only on the first 'Bulk edit' interaction. + if ( ! coauthors_initialized_on_bulk_edit ) { + var bulk_right_column = jQuery( '#bulk-edit .inline-edit-col-right' ); + var coauthors_authors_label = jQuery( '#bulk-edit .bulk-edit-coauthors' ); + + // Move the Co-Authors section to the right-hand column of the Bulk section. + coauthors_authors_label.appendTo( bulk_right_column ); + // Give the right-hand column its 'real' height because of float:left; + // The Post Format dropdown does not help positioning the Co-Authors section. + bulk_right_column.find( 'div.inline-edit-col' ).addClass( 'wp-clearfix' ); + // Move the autosuggest input box under the Co-Authors label. + jQuery( '#coauthors-edit' ).appendTo( coauthors_authors_label ); + + coauthors_initialized_on_bulk_edit = true; + coauthors_initialize( [] ); + } + } } }); diff --git a/languages/co-authors-plus-da_DK.po b/languages/co-authors-plus-da_DK.po deleted file mode 100644 index 35c2a391..00000000 --- a/languages/co-authors-plus-da_DK.po +++ /dev/null @@ -1,639 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Plugins - Co-Authors Plus - Stable (latest release)\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-09-18T17:14:46+00:00\n" -"PO-Revision-Date: 2023-10-27 17:44+0200\n" -"Last-Translator: \n" -"Language-Team: \n" -"Language: da_DK\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Poedit 3.4.1\n" - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "Mohammad Jangda, Daniel Bachhuber, Automattic" - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "Tillader at et indlæg tildeles flere forfattere. Dette plugin er en udvidet version af det Co-Authors-plugin, som er udviklet af Weston Ruter." - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "Co-Authors Plus" - -#. translators: Author display name. -#: template-tags.php:409 template-tags.php:419 -msgid "Visit %s’s website" -msgstr "Besøg %ss hjemmeside" - -#. translators: Author display name. -#: template-tags.php:239 template-tags.php:635 -msgid "Posts by %s" -msgstr "Indlæg af %s" - -#: template-tags.php:91 -msgid " and " -msgstr " og " - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "Navn" - -#: php/class-coauthors-plus.php:567 php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "Indlæg" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "Slet" - -#: php/class-coauthors-plus.php:1395 php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "Rediger" - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "Gem" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "Fjern" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "Marker som spam: %s" - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "Angiv et gyldigt medforfatter-login" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "Angiv et gyldigt user_login" - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "Filtrer" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "Vis indlæg" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "Vis alle" - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "Uden tilknyttet konto" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "Med tilknyttet konto" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "Medforfatter" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "Medforfattere" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "Opret profil" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "Rediger profil" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "Ingen brugere eksisterer med det ID" - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "Medforfatteren som du vil overføre til findes ikke" - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "Gæsteforfatter eksisterer ikke" - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "user_login kan ikke duplikere eksisterende gæsteforfatter eller tilknyttede bruger" - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s er et obligatorisk felt" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "Biografisk info" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "Jabber / Google Talk" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "Yahoo IM" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "AIM" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "Hjemmeside" - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "Tilknyttet konto" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "E-mail" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "Kortlink" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "Efternavn" - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "Fornavn" - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "Visningsnavn" - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "ID" - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "Gæsteforfattere kan ikke oprettes uden visningsnavn." - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "-- Ikke tilknyttet --" - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "Tilføj ny" - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "WordPress brugertilknytning" - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "Bekræft sletning" - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "Fjern byline fra indlæggene (men lad hvert indlæg beholde sin nuværende status)." - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "Overfør til en anden medforfatter:" - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "Bemærk: Hvis du gerne vil slette en gæsteforfatter og alle dennes indlæg, bør du slette indlæggene først og derefter slette gæsteforfatteren." - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "Du har markeret denne gæsteforfatter til sletning:" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "Kontaktinfo" - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "Entydig korttitel" - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr "Gæsteforfatter slettet." - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "Sørg for at vælge en af valgmulighederne." - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "Medforfatter eksisterer ikke. Prøv igen?" - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "Gæsteforfatteren kan ikke slettes fordi den ikke eksisterer." - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "Du har ikke tilladelse til at udføre denne handling." - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "Har du gang i noget fy fy?" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "Gæsteforfatter opdateret. Forhåndsvis profil" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "Gæsteforfatter planlagt til: %1$s . Forhåndsvis profil" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "Gæsteforfatter tilføjet. Forhåndsvis profil" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "Gæsteforfatter gemt." - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "Gæsteforfatter tilbageført til revisionen fra %s" - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "Gæsteforfatter opdateret." - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "Tilpasset felt slettet." - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "Tilpasset felt opdateret." - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "Gæsteforfatter opdateret. Se profil" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "Tilføj ny" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "Om gæsteforfatteren" - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "Opdater gæsteforfatter" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "Ingen gæsteforfattere blev fundet i papirkurven" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "Ingen gæsteforfattere fundet" - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "Søg i gæsteforfattere" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "Vis gæsteforfatter" - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "Ny gæsteforfatter" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "Rediger gæsteforfatter" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "Tilføj ny gæsteforfatter" - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "Alle gæsteforfattere" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "Gæsteforfattere" - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "Gæsteforfatter" - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "Slet den: %s" - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "Nyt pingback til dit indlæg \"%s\"" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] Trackback: \"%2$s\"" - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "Du kan se alle trackbacks til dette indlæg her: " - -#: co-authors-plus.php:110 co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "Uddrag: " - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "Hjemmeside: %1$s (IP: %2$s , %3$s)" - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "Ny trackback til dit indlæg \"%s\"" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] Kommentar: \"%2$s\"" - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "Du kan se alle kommentarerne til dette indlæg her: " - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "Kommentar: " - -#. translators: Comment author URL. -#: co-authors-plus.php:96 co-authors-plus.php:109 co-authors-plus.php:120 -msgid "URL : %s" -msgstr "URL : %s" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "Forfatter : %1$s (IP: %2$s , %3$s)" - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "Ny kommentar til dit indlæg \"%s\"" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "Min" - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "Søg efter en forfatter" - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "Klik for at ændre denne forfatter eller træk for at ændre placeringen" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "Er du sikker på at du vil fjerne denne forfatter?" - -#: php/class-coauthors-plus.php:649 php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "Ingen medforfatter eksisterer for denne term" - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "Vis indlæg af denne forfatter" - -#: php/class-coauthors-plus.php:472 php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "Klik på en forfatter for at ændre denne. Træk for at ændre rækkefølgen. Klik på Fjern for at fjerne dem." - -#: php/class-coauthors-plus.php:197 php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 build/index.js:1 src/index.js:20 -msgid "Authors" -msgstr "Forfattere" - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "j. F Y, k\\l H:i" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "Smid i papirkurven: %s" - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "Permanent link: %s" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] Pingback: \"%2$s\"" - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "Du kan se alle pingbacks til dette indlæg her: " - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "Visningsnavn er i konflikt med en anden gæsteforfatters visningsnavn." - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "Lad indlæggene forblive knyttet til den tilknyttede bruger, %s." - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "https://wordpress.org/plugins/co-authors-plus/" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "https://automattic.com" - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "Email : %s" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "Whois : https://whois.arin.net/rest/ip/%s" - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "Tekst som der skal søges i." - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "Navne på medforfattere, som skal udelukkes fra søgeresultater." - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "Navne på medforfattere, som skal gemmes." - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "Profilbillede" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "Vælg profilbillede" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "Brug profilbillede" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "Fjern profilbillede" - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "Slet gæsteforfattere" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "Der er ingen indlæg knyttet til denne gæsteforfatter." - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "Der er %d indlæg knyttet til denne gæsteforfatter. Hvad skal der ske med dette indlæg?" -msgstr[1] "Der er %d indlæg knyttet til denne gæsteforfatter. Hvad skal der ske med disse indlæg?" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "Der er en Wordpress-bruger med samme brugernavn som denne gæsteforfatter. Du skal gå tilbage og knytte den til hinanden for at kunne opdatere." - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "Loginnavn" - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "Email" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "Alle forfattere" - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "Bemærk: For at redigere indlægsforfattere skal javascript være aktivt, eller du skal bruge en browser som understøtter javascript" - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "Forfatter: %s" - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "Ingen matchende gæsteforfattere blev fundet." - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "Springer over - Indlægget #%d har allerede tilknyttede medforfattere: %s" - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "Opdaterer - Tilføjer %1$ss byline til indlægget #%2$d" - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "Færdig! %d indlæg blev ændret." -msgstr[1] "Færdig! %d indlæg blev ændret." - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "-- Forfatter findes allerede (ID #%s). Springer over." - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "-- Ikke fundet. Opretter profil." - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "-- Der opstod en fejl med at oprette gæsteforfatteren: %s" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "-- Oprettet som gæsteforfatter #%s" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "Skrevet af" - -#: build/index.js:1 src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "Flyt op" - -#: build/index.js:1 src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "Flyt ned" - -#: build/index.js:1 src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "Fjern forfatter" - -#: build/index.js:1 src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "Vælg forfatter" diff --git a/languages/co-authors-plus-de_DE-1fdf421c05c1140f6d71444ea2b27638.json b/languages/co-authors-plus-de_DE-1fdf421c05c1140f6d71444ea2b27638.json deleted file mode 100644 index 0be4c5e3..00000000 --- a/languages/co-authors-plus-de_DE-1fdf421c05c1140f6d71444ea2b27638.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2023-01-25 23:50:57+0000","generator":"WP-CLI\/2.8.1","source":"src\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=n != 1;"},"Authors":["Autoren"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-de_DE-dfbff627e6c248bcb3b61d7d06da9ca9.json b/languages/co-authors-plus-de_DE-dfbff627e6c248bcb3b61d7d06da9ca9.json deleted file mode 100644 index bbc60a35..00000000 --- a/languages/co-authors-plus-de_DE-dfbff627e6c248bcb3b61d7d06da9ca9.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2023-01-25 23:50:57+0000","generator":"WP-CLI\/2.8.1","source":"build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"de","plural-forms":"nplurals=2; plural=n != 1;"},"Authors":["Autoren"],"Move Up":[""],"Move down":[""],"Remove Author":[""],"Select An Author":[""]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-de_DE.mo b/languages/co-authors-plus-de_DE.mo deleted file mode 100644 index dbc476c3..00000000 Binary files a/languages/co-authors-plus-de_DE.mo and /dev/null differ diff --git a/languages/co-authors-plus-de_DE.po b/languages/co-authors-plus-de_DE.po deleted file mode 100644 index 3e11421d..00000000 --- a/languages/co-authors-plus-de_DE.po +++ /dev/null @@ -1,657 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Plugins - Co-Authors Plus - Stable (latest release)\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-09-18T17:14:46+00:00\n" -"PO-Revision-Date: 2023-01-25 23:50:57+0000\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: GlotPress/4.0.0-alpha.7\n" - -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" -msgstr "Artikel von %s" - -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" -msgstr "Besuche %s’s Website" - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "Co-Authors Plus" - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "Erlaubt es mehrere Autoren einem Artikel zuzuweisen. Dieses Plugin ist eine erweiterte Version des Co-Authors Plugins, dass von Weston Ruter entwickelt wurde." - -#: template-tags.php:91 -msgid " and " -msgstr " und " - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "Mohammad Jangda, Daniel Bachhuber, Automattic" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "Post anzeigen" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "Meins" - -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "Hierfür gibt es keinen Co-Autor" - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "Neuer Kommentar zu deinem Post \"%s\"" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "Autor : %1$s (IP: %2$s , %3$s)" - -#. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 -msgid "URL : %s" -msgstr "URL: %s" - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "Kommentar:" - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "Du kannst alle Kommentare zu diesem Post hier anschauen:" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] Kommentar: \"%2$s\"" - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "Neuer Trackback zu deinem Post \"%s\"" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "Website: %1$s (IP: %2$s , %3$s)" - -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "Auszug:" - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "Du kannst alle Trackback zu diesem Post hier sehen:" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] Trackback: \"%2$s\"" - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "Neuer Pingback zu deinem Post \"%s\"" - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "Du kannst alle Pingbacks zu deinem Post hier sehen:" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] Pingback: \"%2$s\"" - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "Permalink: %s" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "In den Papierkorb: %s" - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "Löschen: %s" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "Als Spam markieren: %s" - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "Gastautor" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "Gastautoren" - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "Alle Gastautoren" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "Einen neuen Gastautoren hinaufügen" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "Gastautor bearbeiten" - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "Neuer Gastautor" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "Gastautor anzeigen" - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "Gastautor suchen" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "Dieser Gastautor konnte nicht gefunden werden" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "Keinen Gastautoren im Papierkorb gefunden" - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "Gastautor aktualisieren" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "Über diesen Gastautoren" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "Gastautor aktualisiert. Profil ansehen" - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "Benutzerdefiniertes Feld aktualisiert." - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "Benutzerdefiniertes Feld entfernt." - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "Gastautor aktualisiert." - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "Gastautor aus der Revision von %s wiederhergestellt" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "Gastautor gespeichert" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "Gastautor erstellt. Profilvorschau " - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "Gastautor geplant fü %1$s. Profilvorschau" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "Gastautor aktualisiert. Profilvorschau" - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "Ähm, was hast du vor?" - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "Du hast nicht die nötigen Rechte, um das zu tun." - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "Der Gastautor kann nicht gelöscht werden, weil er nicht existiert." - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "Diesen Co-Autor gibt es nicht. Nochmal versuchen?" - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "Bitte wähle eine Option." - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr " Gastautor gelöscht" - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "Eindeutiger Slug" - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "Name" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "Kontakt Info" - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "Du hast diesen Gastautor zum löschen ausgewählt:" - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "Beachte: Wenn du den Gastautor und alle seine Posts löschen mötest, solltest du zuerst seine Artikel löschen und dann hierher zurückkommen, um den Gastautor zu löschen." - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "Einem anderen Autoren zuweisen:" - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "Die Posts dem Verbundenen WordPress user %s zuweisen." - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "Entferne den Namen von den Post, aber belasse die Posts in ihrem aktuellen Zustand." - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "Löschen bestätigen" - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "WordPress User verbinden" - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "– Nicht verbunden –" - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "Gastautoren können nicht ohne Öffentlichen Namen erstellt werden." - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "Der Öffentliche Name dieses Gastautoren steht im Konflikt mit einem anderen." - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "Vorname" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "Nachname" - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "Verbundener Account" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "Website" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "AIM" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "Yahoo IM" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "Jabber / Google Talk" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "Biographische Angaben" - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s ist ein Pflichtfeld" - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "user_login kann nicht mit einem existierenden Gastautoren oder verbundenen Benutzer übereinstimmen" - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "Gastautor existiert nicht" - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "Dieser Co-Autor existiert nicht" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "Es gibt keinen Nutzer mit dieser ID" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "Profil bearbeiten" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "Profil erstellen" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "Co-Autoren" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "Co-Autor" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "Mit verbundenem Account" - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "Ohne verbundenen Account" - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "Filter" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "Bitte gib einen validen user_login an" - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "Bitte gib einen validen co-author login an" - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "ID" - -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "Klicke auf einen Autor um sie zu ändern. Durch verschieben änderst du ihre Reihenfolge. Klicke auf Entfernen um sie zu entfernen." - -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 -#: build/index.js:1 -#: src/index.js:20 -msgid "Authors" -msgstr "Autoren" - -#: php/class-coauthors-plus.php:567 -#: php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "Artikel" - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "Schaue dir Artikel von diesem Autor an" - -#: php/class-coauthors-plus.php:1395 -#: php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "Bearbeiten" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "Entfernen" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "Bist du sicher, dass du diesen Autor entfernen möchtest?" - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "Klicken um diesen Autor zu ändern oder verschiebe sie um ihre Position zu ändern" - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "Suche nach einem Autor" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "Hinzufügen" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "E-Mail" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "Löschen" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "Titelform" - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "Erstellen" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "Alle anzeigen" - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "Speichern" - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "j. M. Y \\u\\m G:i \\U\\h\\r" - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "Anzeigename" - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "" - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "" - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "" - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "" - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "" - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "" - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "" -msgstr[1] "" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "" - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "" - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "" - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "" - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "" - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "" - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "" - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "" -msgstr[1] "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "" - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "" - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "" - -#: build/index.js:1 -#: src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "" diff --git a/languages/co-authors-plus-en_CA-1fdf421c05c1140f6d71444ea2b27638.json b/languages/co-authors-plus-en_CA-1fdf421c05c1140f6d71444ea2b27638.json deleted file mode 100644 index 9982e1f8..00000000 --- a/languages/co-authors-plus-en_CA-1fdf421c05c1140f6d71444ea2b27638.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2017-02-28 02:12:23+0000","generator":"WP-CLI\/2.8.1","source":"src\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en_CA","plural-forms":"nplurals=2; plural=n != 1;"},"Authors":["Authors"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-en_CA-dfbff627e6c248bcb3b61d7d06da9ca9.json b/languages/co-authors-plus-en_CA-dfbff627e6c248bcb3b61d7d06da9ca9.json deleted file mode 100644 index fa46b59c..00000000 --- a/languages/co-authors-plus-en_CA-dfbff627e6c248bcb3b61d7d06da9ca9.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2017-02-28 02:12:23+0000","generator":"WP-CLI\/2.8.1","source":"build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en_CA","plural-forms":"nplurals=2; plural=n != 1;"},"Authors":["Authors"],"Move Up":[""],"Move down":[""],"Remove Author":[""],"Select An Author":[""]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-en_CA.mo b/languages/co-authors-plus-en_CA.mo deleted file mode 100644 index 617142e6..00000000 Binary files a/languages/co-authors-plus-en_CA.mo and /dev/null differ diff --git a/languages/co-authors-plus-en_CA.po b/languages/co-authors-plus-en_CA.po deleted file mode 100644 index 1f9be00d..00000000 --- a/languages/co-authors-plus-en_CA.po +++ /dev/null @@ -1,657 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Plugins - Co-Authors Plus - Stable (latest release)\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-09-18T17:14:46+00:00\n" -"PO-Revision-Date: 2017-02-28 02:12:23+0000\n" -"Language: en_CA\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: GlotPress/4.0.0-alpha.7\n" - -#: template-tags.php:91 -msgid " and " -msgstr " and " - -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" -msgstr "Posts by %s" - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "Mohammad Jangda, Daniel Bachhuber, Automattic" - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "Co-Authors Plus" - -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" -msgstr "Visit %s’s website" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "Delete" - -#: php/class-coauthors-plus.php:1395 -#: php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "Edit" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "Slug" - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "ID" - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "Name" - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "Display Name" - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "First Name" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "Last Name" - -#: php/class-coauthors-plus.php:567 -#: php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "Posts" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "Website" - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "Add New" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "Remove" - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "Custom field updated." - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "Custom field deleted." - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s is a required field" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "View Posts" - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "Save" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "E-mail" - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G:i" - -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 -#: build/index.js:1 -#: src/index.js:20 -msgid "Authors" -msgstr "Authors" - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "Filter" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "Contact Info" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "Biographical Info" - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "Please specify a valid co-author login" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "Please specify a valid user_login" - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "Without linked account" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "With linked account" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "Show all" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "Co-Author" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "Co-Authors" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "Create Profile" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "Edit Profile" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "No user exists with that ID" - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "Reassignment co-author does not exist" - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "Guest author does not exist" - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "user_login cannot duplicate existing guest author or mapped user" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "Jabber / Google Talk" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "Yahoo IM" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "AIM" - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "Linked Account" - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "Display name conflicts with another guest author display name." - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "Guest authors cannot be created without display names." - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "-- Not mapped --" - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "WordPress User Mapping" - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "Confirm Deletion" - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "Remove byline from posts (but leave each post in its current status)." - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "Leave posts assigned to the mapped user, %s." - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "Reassign to another co-author:" - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "You have specified this guest author for deletion:" - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "Unique Slug" - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr "Guest author deleted." - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "Please make sure to pick an option." - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "Co-author does not exists. Try again?" - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "Guest author can't be deleted because it doesn't exist." - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "You don't have permission to perform this action." - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "Doin' something fishy, huh?" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "Guest author updated. Preview profile" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "Guest author scheduled for: %1$s. Preview profile" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "Guest author submitted. Preview profile" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "Guest author saved." - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "Guest author restored to revision from %s" - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "Guest author updated." - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "Guest author updated. View profile" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "Add New" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "About the guest author" - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "Update Guest Author" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "No guest authors found in Trash" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "No guest authors found" - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "Search Guest Authors" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "View Guest Author" - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "New Guest Author" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "Edit Guest Author" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "Add New Guest Author" - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "All Guest Authors" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "Guest Authors" - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "Guest Author" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "Spam it: %s" - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "Delete it: %s" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "Trash it: %s" - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "Permalink: %s" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] Pingback: \"%2$s\"" - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "You can see all pingbacks on this post here: " - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "New pingback on your post \"%s\"" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] Trackback: \"%2$s\"" - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "You can see all trackbacks on this post here: " - -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "Excerpt: " - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "Website: %1$s (IP: %2$s , %3$s)" - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "New trackback on your post \"%s\"" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] Comment: \"%2$s\"" - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "You can see all comments on this post here: " - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "Comment: " - -#. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 -msgid "URL : %s" -msgstr "URL : %s" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "Author : %1$s (IP: %2$s , %3$s)" - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "New comment on your post \"%s\"" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "Mine" - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "Search for an author" - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "Click to change this author, or drag to change their position" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "Are you sure you want to remove this author?" - -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "No co-author exists for that term" - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "View posts by this author" - -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "Click on an author to change them. Drag to change their order. Click on Remove to remove them." - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "" - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "" - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "" - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "" - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "" - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "" - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "" -msgstr[1] "" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "" - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "" - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "" - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "" - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "" - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "" - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "" - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "" -msgstr[1] "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "" - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "" - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "" - -#: build/index.js:1 -#: src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "" diff --git a/languages/co-authors-plus-en_GB-1fdf421c05c1140f6d71444ea2b27638.json b/languages/co-authors-plus-en_GB-1fdf421c05c1140f6d71444ea2b27638.json deleted file mode 100644 index 915004a0..00000000 --- a/languages/co-authors-plus-en_GB-1fdf421c05c1140f6d71444ea2b27638.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2023-09-03 09:02:28+0000","generator":"WP-CLI\/2.8.1","source":"src\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en_GB","plural-forms":"nplurals=2; plural=n != 1;"},"Authors":["Authors"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-en_GB-dfbff627e6c248bcb3b61d7d06da9ca9.json b/languages/co-authors-plus-en_GB-dfbff627e6c248bcb3b61d7d06da9ca9.json deleted file mode 100644 index 6093af3a..00000000 --- a/languages/co-authors-plus-en_GB-dfbff627e6c248bcb3b61d7d06da9ca9.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2023-09-03 09:02:28+0000","generator":"WP-CLI\/2.8.1","source":"build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"en_GB","plural-forms":"nplurals=2; plural=n != 1;"},"Select An Author":["Select An Author"],"Remove Author":["Remove Author"],"Move down":["Move down"],"Move Up":["Move Up"],"Authors":["Authors"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-en_GB.mo b/languages/co-authors-plus-en_GB.mo deleted file mode 100644 index 691947f6..00000000 Binary files a/languages/co-authors-plus-en_GB.mo and /dev/null differ diff --git a/languages/co-authors-plus-en_GB.po b/languages/co-authors-plus-en_GB.po deleted file mode 100644 index 2eba6fe7..00000000 --- a/languages/co-authors-plus-en_GB.po +++ /dev/null @@ -1,657 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Plugins - Co-Authors Plus - Stable (latest release)\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-09-18T17:14:46+00:00\n" -"PO-Revision-Date: 2023-09-03 09:02:28+0000\n" -"Language: en_GB\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: GlotPress/4.0.0-alpha.7\n" - -#: build/index.js:1 -#: src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "Select An Author" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "Remove Author" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "Move down" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "Move Up" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "Written by" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "-- Created as guest author #%s" - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "-- Failed to create guest author: %s" - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "-- Not found; creating profile." - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "-- Author already exists (ID #%s); skipping." - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "Email" - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "Login Name" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgstr[1] "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "There are no posts associated with this guest author." - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "Delete Guest Authors" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "Remove Avatar" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "Use Avatar" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "Set Avatar" - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "Avatar" - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "Names of co-authors to save." - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "Text to search." - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "Author: %s" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "All Authors" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "https://automattic.com" - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "Mohammad Jangda, Daniel Bachhuber, Automattic" - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "http://en-gb.wordpress.org/plugins/co-authors-plus/" - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "Co-Authors Plus" - -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" -msgstr "Visit %s’s website" - -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" -msgstr "Posts by %s" - -#: template-tags.php:91 -msgid " and " -msgstr " and " - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "All done! %d post was affected." -msgstr[1] "All done! %d posts were affected." - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "Updating - Adding %1$s's byline to post #%2$d" - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "Skipping - Post #%1$d already has co-authors assigned: %2$s" - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "Please specify a valid co-author login" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "Please specify a valid user_login" - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "Filter" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "View Posts" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "Delete" - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "No matching co-authors were found." - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "Without linked account" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "With linked account" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "Show All" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "Co-Author" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "Co-Authors" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "Create Profile" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "Edit Profile" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "No user exists with that ID" - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "Reassignment co-author does not exist" - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "Guest author does not exist" - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "user_login cannot duplicate existing guest author or mapped user" - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s is a required field" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "Biographical Info" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "Jabber / Google Talk" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "Yahoo IM" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "AIM" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "Website" - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "Linked Account" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "Email" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "Slug" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "Last Name" - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "First Name" - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "Display Name" - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "ID" - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "Display name conflicts with another guest author display name." - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "Guest authors cannot be created without display names." - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "-- Not mapped --" - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "WordPress User Mapping" - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "Add New" - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "Confirm Deletion" - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "Remove byline from posts (but leave each post in its current status)." - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "Leave posts assigned to the mapped user, %s." - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "Reassign to another co-author:" - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "You have specified this guest author for deletion:" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "Contact Info" - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "Name" - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "Unique Slug" - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "Save" - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr "Guest author deleted." - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "Please make sure to pick an option." - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "Co-author does not exists. Try again?" - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "Guest author can't be deleted because it doesn't exist." - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "You don't have permission to perform this action." - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "Doin' something fishy, huh?" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "Guest author updated. Preview profile" - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G:i" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "Guest author scheduled for: %1$s. Preview profile" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "Guest author submitted. Preview profile" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "Guest author saved." - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "Guest author restored to revision from %s" - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "Guest author updated." - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "Custom field deleted." - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "Custom field updated." - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "Guest author updated. View profile" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "Add New" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "About the guest author" - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "Update Guest Author" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "No guest authors found in the Bin" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "No guest authors found" - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "Search Guest Authors" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "View Guest Author" - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "New Guest Author" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "Edit Guest Author" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "Add New Guest Author" - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "All Guest Authors" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "Guest Authors" - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "Guest Author" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "Spam it: %s" - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "Delete it: %s" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "Bin it: %s" - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "Permalink: %s" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] Pingback: \"%2$s\"" - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "You can see all pingbacks on this post here: " - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "New pingback on your post \"%s\"" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] Trackback: \"%2$s\"" - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "You can see all trackbacks on this post here: " - -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "Excerpt: " - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "Website: %1$s (IP: %2$s , %3$s)" - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "New trackback on your post \"%s\"" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] Comment: \"%2$s\"" - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "You can see all comments on this post here: " - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "Comment: " - -#. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 -msgid "URL : %s" -msgstr "URL : %s" - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "Email : %s" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "Author : %1$s (IP: %2$s , %3$s)" - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "New comment on your post \"%s\"" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "Mine" - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "Search for an author" - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "Click to change this author, or drag to change their position" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "Are you sure you want to remove this author?" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "Remove" - -#: php/class-coauthors-plus.php:1395 -#: php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "Edit" - -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "No co-author exists for that term" - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "View posts by this author" - -#: php/class-coauthors-plus.php:567 -#: php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "Posts" - -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "Click on an author to change them. Drag to change their order. Click on Remove to remove them." - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" - -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 -#: build/index.js:1 -#: src/index.js:20 -msgid "Authors" -msgstr "Authors" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "Whois : https://whois.arin.net/rest/ip/%s" - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "Names of existing co-authors to exclude from search results." diff --git a/languages/co-authors-plus-es_CL-1fdf421c05c1140f6d71444ea2b27638.json b/languages/co-authors-plus-es_CL-1fdf421c05c1140f6d71444ea2b27638.json deleted file mode 100644 index e12b5c4f..00000000 --- a/languages/co-authors-plus-es_CL-1fdf421c05c1140f6d71444ea2b27638.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2016-05-19 15:21:48+0000","generator":"WP-CLI\/2.8.1","source":"src\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"es_CL","plural-forms":"nplurals=2; plural=n != 1;"},"Authors":["Autores"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-es_CL-dfbff627e6c248bcb3b61d7d06da9ca9.json b/languages/co-authors-plus-es_CL-dfbff627e6c248bcb3b61d7d06da9ca9.json deleted file mode 100644 index b46769e1..00000000 --- a/languages/co-authors-plus-es_CL-dfbff627e6c248bcb3b61d7d06da9ca9.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2016-05-19 15:21:48+0000","generator":"WP-CLI\/2.8.1","source":"build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"es_CL","plural-forms":"nplurals=2; plural=n != 1;"},"Authors":["Autores"],"Move Up":[""],"Move down":[""],"Remove Author":[""],"Select An Author":[""]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-es_CL.mo b/languages/co-authors-plus-es_CL.mo deleted file mode 100644 index c5c890f1..00000000 Binary files a/languages/co-authors-plus-es_CL.mo and /dev/null differ diff --git a/languages/co-authors-plus-es_CL.po b/languages/co-authors-plus-es_CL.po deleted file mode 100644 index 17074554..00000000 --- a/languages/co-authors-plus-es_CL.po +++ /dev/null @@ -1,657 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Plugins - Co-Authors Plus - Stable (latest release)\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-09-18T17:14:46+00:00\n" -"PO-Revision-Date: 2016-05-19 15:21:48+0000\n" -"Language: es_CL\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: GlotPress/4.0.0-alpha.7\n" - -#: template-tags.php:91 -msgid " and " -msgstr "y" - -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" -msgstr "Publicaciones de %s" - -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" -msgstr "Visitar el sitio web de %s" - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "Co-Autores Plus" - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "Permite asignar múltiples autores a una entrada. Este plugin es una versión extendida del plugin de autores desarrollado por Weston Ruter." - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "Mohammad Jangda, Daniel Bachhuber, Automattic" - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "Guardar" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "Mostrar todos" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "Información de contacto" - -#: php/class-coauthors-plus.php:567 -#: php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "Entradas" - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "Añadir nuevo" - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "Campo personalizado actualizado." - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "Campo personalizado borrado." - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "j F Y G:i a" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "Web" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "Correo electrónico" - -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 -#: build/index.js:1 -#: src/index.js:20 -msgid "Authors" -msgstr "Autores" - -#: php/class-coauthors-plus.php:1395 -#: php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "Editar" - -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "Haz clic en un autor para cambiarlo. Arrástralos para cambiar su orden. Haz clic en eliminar para eliminarlos." - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "Ver las entradas de este usuario" - -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "No existe coautor para dicho termino" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "Eliminar" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "¿Estás seguro que deseas eliminar este autor?" - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "Clic para cambiar este autor, o arrástralo para cambiar su posición" - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "Buscar un autor" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "Mío" - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "Nuevo comentario en tu entrada \"%s\"" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "Autor: %1$s (IP: %2$s , %3$s)" - -#. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 -msgid "URL : %s" -msgstr "Enlace : %s" - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "Comentario:" - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "Puedes ver todos los comentarios de esta entrada aquí:" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] Comentario: \"%2$s\"" - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "Nuevo trackback en tu entrada \"%s\"" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "Sitio web: %1$s (IP: %2$s , %3$s)" - -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "Extracto:" - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "Puedes ver todos los trackbacks de esta entrada aquí:" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] Trackback: “%2$s”" - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "Nuevo pingback en tu entrada \"%s\"" - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "Puedes ver todos los pingbacks de esta entrada aquí:" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] Pingback: \"%2$s\"" - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "Enlace permanente: %s" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "A la papelera: %s" - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "Elimínalo: %s" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "Márcalo como spam: %s" - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "Autor Invitado" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "Autores Invitados" - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "Todos los Autores Invitados" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "Añadir un Autor Invitado" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "Editar Autor Invitado" - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "Nuevo Autor Invitado" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "Ver Autor Invitado" - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "Buscar Autor Invitado" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "No se encontraron autores invitados" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "No se encontraron autores invitados en la Papelera" - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "Actualizar Autor Invitado" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "Acerca del autor invitado" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "Agregar Nuevo" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "Autor invitado actualizado. Ver el perfil" - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "Autor invitado actualizado." - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "Autor invitado restaurado a la revisión de %s" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "Autor invitado guardado." - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "Autor invitado enviado. Revisa el perfil" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "Autor invitado anegado para: %1$s. Revisa el perfil" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "Autor invitado actualizado. Revisar el Perfil" - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "Así que estás haciendo algo sospechoso… ¿ah?" - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "No tienes permiso para realizar esta acción." - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "No se puede eliminar el Autor Invitado porque no existe." - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "Uno de los autores no existe. ¿Volver a intentarlo?" - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "Por favor, asegúrate de elegir una opción." - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr "Autor invitado eliminado." - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "Slug único" - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "Nombre" - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "Especificaste este autor invitado para ser eliminado:" - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "Nota: Si deseas eliminar al autor invitado y todos sus entradas, primero debes eliminar sus entradas y luego volver a borrar el autor invitado." - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "Reasignar a otro autor:" - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "Dejar entradas asignadas al usuario, %s." - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "Quitar la firma de mensajes (pero dejar cada post en su estado actual)." - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "Confirmar Eliminación" - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "Mapeo de Usuarios de WordPress" - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "—No asignado—" - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "No se puede crear Autores Invitados sin nombre a mostrar." - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "El nombre a mostrar tiene un conflicto con el de otro usuario invitado." - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "ID" - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "Nombre a Mostrar" - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "Nombre" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "Apellidos" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "Slug" - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "Cuenta Enlazada" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "AIM" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "Yahoo IM" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "Jabber / Google Talk" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "Info biográfica" - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s es un campo obligatorio" - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "El valor user_login no puede duplicarse en autor invitado o usuario asignado" - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "No existe el Autor invitado" - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "El co-autor reasignado no existe" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "No existe ningún usuario con ese ID" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "Editar Perfil" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "Crear Perfil" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "Co-Autores" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "Co-Autor" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "Con cuenta vinculada" - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "Sin cuenta vinculada" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "Eliminar" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "Ver Entradas" - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "Filtrar" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "Por favor especifique un user_login válido" - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "Por favor especifique un inicio de sesión válido para co-autor" - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "" - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "" - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "" - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "" - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "" - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "" - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "" -msgstr[1] "" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "" - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "" - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "" - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "" - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "" - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "" - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "" - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "" -msgstr[1] "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "" - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "" - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "" - -#: build/index.js:1 -#: src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "" diff --git a/languages/co-authors-plus-es_ES-1fdf421c05c1140f6d71444ea2b27638.json b/languages/co-authors-plus-es_ES-1fdf421c05c1140f6d71444ea2b27638.json deleted file mode 100644 index ab25fd10..00000000 --- a/languages/co-authors-plus-es_ES-1fdf421c05c1140f6d71444ea2b27638.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2023-08-28 11:25:37+0000","generator":"WP-CLI\/2.8.1","source":"src\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"es","plural-forms":"nplurals=2; plural=n != 1;"},"Authors":["Autores"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-es_ES-dfbff627e6c248bcb3b61d7d06da9ca9.json b/languages/co-authors-plus-es_ES-dfbff627e6c248bcb3b61d7d06da9ca9.json deleted file mode 100644 index df84441d..00000000 --- a/languages/co-authors-plus-es_ES-dfbff627e6c248bcb3b61d7d06da9ca9.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2023-08-28 11:25:37+0000","generator":"WP-CLI\/2.8.1","source":"build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"es","plural-forms":"nplurals=2; plural=n != 1;"},"Authors":["Autores"],"Move Up":[""],"Move down":[""],"Remove Author":[""],"Select An Author":[""]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-es_ES.mo b/languages/co-authors-plus-es_ES.mo deleted file mode 100644 index 917627ac..00000000 Binary files a/languages/co-authors-plus-es_ES.mo and /dev/null differ diff --git a/languages/co-authors-plus-es_ES.po b/languages/co-authors-plus-es_ES.po deleted file mode 100644 index 3b619909..00000000 --- a/languages/co-authors-plus-es_ES.po +++ /dev/null @@ -1,657 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Plugins - Co-Authors Plus - Stable (latest release)\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-09-18T17:14:46+00:00\n" -"PO-Revision-Date: 2023-08-28 11:25:37+0000\n" -"Language: es\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: GlotPress/4.0.0-alpha.7\n" - -#: template-tags.php:91 -msgid " and " -msgstr " y " - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "Co-Authors Plus" - -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" -msgstr "Visita la web %s’s" - -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" -msgstr "Entradas de %s" - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "Mohammad Jangda, Daniel Bachhuber, Automattic" - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "Permite asignar varios autores a una entrada. Este plugin es una versión extendida del plugin Co-Authors desarrollado por Weston Ruter." - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "https://es.wordpress.org/plugins/co-authors-plus/" - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "¡Todo listo! %d entrada afectada." -msgstr[1] "¡Todo listo! %d entradas afectadas." - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "Actualizando - Añadiendo información de %1$s a la entrada #%2$d" - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "Omitiendo - La entrada #%1$d ya tiene co-autores asignados: %2$s" - -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 -#: build/index.js:1 -#: src/index.js:20 -msgid "Authors" -msgstr "Autores" - -#: php/class-coauthors-plus.php:567 -#: php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "Entradas" - -#: php/class-coauthors-plus.php:1395 -#: php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "Editar" - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "Buscar un autor" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "Míos" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "Autor : %1$s (IP: %2$s , %3$s)" - -#. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 -msgid "URL : %s" -msgstr "URL : %s" - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "Comentario: " - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "Borrarlo: %s" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "No se encontraron autores invitados" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "No se encontraron autores invitados en la papelera" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "Acerca de este autor invitado" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "Autor invitado actualizado. Ver perfil" - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "Campo personalizado actualizado." - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "Autor invitado actualizado" - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "Autor invitado restaurado desde la revisión con fecha %s" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "Autor invitado enviado. Vista previa del perfil" - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G:i" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "Autor invitado actualizado. Vista previa del perfil" - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "No tienes suficientes permisos para realizar esta acción." - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "Guardar" - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "URL única" - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "Nombre" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "Información de contacto" - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "Reasignar a otro co-autor:" - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "Asignación de usuarios de WordPress" - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "-- Sin asignación --" - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "Nombre visible ya está en uso por otro autor invitado." - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "ID" - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "Nombre visible" - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "Nombre" - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "Cuenta vinculada" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "AIM" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "Yahoo IM" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "Jabber / Google Talk" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "Información biográfica" - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s es un campo obligatorio" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "Mostrar todos" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "Con cuenta vinculada" - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "Sin cuenta vinculada" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "Borrar" - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "Filtrar" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "Añadir nuevo" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "Correo electrónico" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "Web" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "Apellidos" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "Slug" - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "Añadir nuevo" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "Eliminar" - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "Por favor, especifica la información de acceso válida para el coautor" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "Por favor, especifica un user_login válido" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "Ver entradas" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "Crear perfil" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "Editar perfil" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "No existe ningún usuario con ese ID" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "Co-autor" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "Co-autores" - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "El usuario co-autor para la reasignación no existe" - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "El autor invitado no existe" - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "user_login no puede duplicar un usuario asignado o un autor invitado ya existentes" - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "No se pueden crear autores invitados sin nombre visible." - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "Confirmar borrado" - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "Borrar información del autor desde las entradas (pero deja cada entrada en su estado actual)." - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "Dejar entradas asignadas al autor indicado, %s." - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "Nota: si quieres borrar este autor invitado y todas sus entradas, primero debes eliminar las entradas y luego volver aquí para borrar el autor invitado." - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "Seleccionaste este autor invitado para borrarlo:" - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr "Autor invitado borrado." - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "Por favor, selecciona una opción." - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "El co-autor no existe. ¿Intentarlo otra vez?" - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "Este autor invitado no puede borrarse porque no existe." - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "¿Haciendo trampas?" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "Autor invitado programado para: %1$s. Vista previa del perfil" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "Autor invitado guardado." - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "Campo personalizado borrado." - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "Actualizar autor Invitado" - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "Buscar autores invitados" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "Ver autor invitado" - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "Nuevo autor invitado" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "Editar autor invitado" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "Añadir nuevo autor invitado" - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "Todos los autores invitados" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "Autores invitados" - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "Autor invitado" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "Marcar como SPAM: %s" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "Enviarlo a la papelera: %s" - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "Enlace permanente: %s" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] Pingback: «%2$s»" - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "Puedes ver todos los pingbacks de esta entrada aquí: " - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "Nuevo pingback en tu entrada «%s»" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] Trackback: «%2$s»" - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "Puedes ver todos los trackbacks de esta entrada aquí: " - -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "Extracto:" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "Web: %1$s (IP: %2$s, %3$s)" - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "Nuevo trackback en tu entrada «%s»" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] Comentario: «%2$s»" - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "Puedes ver todos los comentarios de esta entrada aquí: " - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "Nuevo comentario en tu entrada «%s»" - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "Haz clic para cambiar este autor o arrastra para cambiar su posición" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "¿Seguro que quieres eliminar este autor?" - -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "No hay co-autores para ese término" - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "Ver las entradas de este autor" - -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "Haz clic en un autor para cambiarlo. Arrastra para cambiar su orden. Haz clic en Eliminar para eliminarlos." - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "No se encontraron co-autores que coincidan." - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "Correo electrónico : %s" - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "Nota: Para editar autores de la entrada, por favor, activa JavaScript o usa un navegador compatible" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "" - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "" - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "" - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "" - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "" - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "" -msgstr[1] "" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "" - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "" - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "" - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "" - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "" - -#: build/index.js:1 -#: src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "" diff --git a/languages/co-authors-plus-fa_IR-1fdf421c05c1140f6d71444ea2b27638.json b/languages/co-authors-plus-fa_IR-1fdf421c05c1140f6d71444ea2b27638.json deleted file mode 100644 index a5b43b20..00000000 --- a/languages/co-authors-plus-fa_IR-1fdf421c05c1140f6d71444ea2b27638.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2019-11-02 08:54:58+0000","generator":"WP-CLI\/2.8.1","source":"src\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"fa","plural-forms":"nplurals=1; plural=0;"},"Authors":["\u0646\u0648\u06cc\u0633\u0646\u062f\u0647"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-fa_IR-dfbff627e6c248bcb3b61d7d06da9ca9.json b/languages/co-authors-plus-fa_IR-dfbff627e6c248bcb3b61d7d06da9ca9.json deleted file mode 100644 index 8a6edb14..00000000 --- a/languages/co-authors-plus-fa_IR-dfbff627e6c248bcb3b61d7d06da9ca9.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2019-11-02 08:54:58+0000","generator":"WP-CLI\/2.8.1","source":"build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"fa","plural-forms":"nplurals=1; plural=0;"},"Authors":["\u0646\u0648\u06cc\u0633\u0646\u062f\u0647"],"Move Up":[""],"Move down":[""],"Remove Author":[""],"Select An Author":[""]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-fa_IR.mo b/languages/co-authors-plus-fa_IR.mo deleted file mode 100644 index faec22bf..00000000 Binary files a/languages/co-authors-plus-fa_IR.mo and /dev/null differ diff --git a/languages/co-authors-plus-fa_IR.po b/languages/co-authors-plus-fa_IR.po deleted file mode 100644 index 444e9593..00000000 --- a/languages/co-authors-plus-fa_IR.po +++ /dev/null @@ -1,655 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Plugins - Co-Authors Plus - Stable (latest release)\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-09-18T17:14:46+00:00\n" -"PO-Revision-Date: 2019-11-02 08:54:58+0000\n" -"Language: fa\n" -"Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: GlotPress/4.0.0-alpha.7\n" - -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" -msgstr "ارسال شده توسط %s" - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "اجازه می دهد چندین نویسنده به یک پست اختصاص داده شود. " - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "نویسنده همکار" - -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" -msgstr "مشاهده %s’ وبسایت" - -#: template-tags.php:91 -msgid " and " -msgstr "و " - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "محمد جندا، دانیال باچبور، اتوماتیک" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "وبسایت" - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "افزودن" - -#: php/class-coauthors-plus.php:1395 -#: php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "ویرایش" - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "ذخیره" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "حذف" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "حذف" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "ایمیل" - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "شناسه" - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "شما اجازه انجام این عمل را ندارید." - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "شما میتوانید تمام بازتاب های این مطلب را از اینجا مشاهده کنید:" - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "شما می توانید تمام بازتاب هایی را که روی این مطلب فرستاده شده را مشاهده نمایید:" - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "شما می توانید تمام نظرات این مطلب را در اینجا ببینید:" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "سطل زباله آن: %s" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "درباره نویسنده مهمان" - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "دیدگاه جدید برای مطلب شما \"%s\"" - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "دنبالک جدیدی در پست خود \"%s\"" - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "حساب کاربری مرتبط" - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "حذف عنوان نویسنده از مطلب ها (اما در هر پست وضعیت فعلی خودرا ترک میکند)." - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "جستجوی نویسنده مهمان" - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "جستجو برای یک نویسنده" - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "تغییر نویسنده همکار وجود ندارد" - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "ترک پست اختصاص داده شده به کاربران نقشه برداری، %s." - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "تایید حذف" - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "برای تغییر این نویسنده کلیک کنید یا با درگ کردن و کشیدن آنها موقعیتشان را تغییر دهید." - -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "برای تغییر نویسنده ها روی یکی از آنها کلیک کنید. برای تغییر ترتیب آنها را با کشیدن جابجا کنید. برای حذف هرکدام روی حذف کردن کلیک کنید." - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "بروزرسانی نویسنده مهمان" - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "بازتاب جدی روی مطلب شما \"%s\"" - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "اظهار نظر:" - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "اطلاعات شخصی" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "اطلاعات زندگینامه" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "اطلاعات تماس" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "اسپم آن: %s" - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "اختصاص به یکی دیگر از نویسنده همکار:" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "ایجاد پروفایل" - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "این نویسنده مهمان را برای حذف مشخص کرده اید:" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "افزودن نویسنده مهمان" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "افزودن" - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "آیا در چیزی مثل ماهی، متعجب شدید؟" - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "آن را حذف کنید: %s" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] دیدگاه : \"%2$s\"" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] بازتاب: \"%2$s\"" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] پینگ بک : \"%2$s\"" - -#: php/class-coauthors-plus.php:567 -#: php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "پست ها" - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "پیوند سفارشی" - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "پیوند یکتا: %s" - -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "گلچین:" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "وبسایت : %1$s (IP: %2$s , %3$s)" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "ویرایش پروفایل" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "ویرایش نویسنده مهمان" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "هیچ کاربری با آن شناسه وجود ندارد" - -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "هیچ نویسنده همکاری برای آن وجود ندارد." - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "همه نویسندگان مهمان" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "نامک" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "نام خانوادگی" - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "نام نمایشی با یکی دیگر از نویسندگان مهمان در تضاد است." - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "نام نمایشی" - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "نام" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "نویسندگان همکار" - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "نویسندگان مهمان نمی توانند بدون نامهای نمایشی ایجاد شوند." - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "نویسنده: %1$s (IP: %2$s , %3$s)" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "نویسنده ی مهمانی در سطل زباله پیدا نشد" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "نویسنده ی مهمانی پیدا نشد" - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "نویسنده همکار وجود ندارد. دوباره امتحان می کنید؟" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "نویسنده همکار" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "نویسنده مهمان ذخیره شد." - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr "نویسنده مهمان حذف شد." - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "نویسنده مهمان جدید" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "نویسنده مهمان ثبت شد. مشاهده پروفایل" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "نویسنده مهمان بروزرسانی شد. مشاهده پروفایل" - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "نویسنده مهمان بروزرسانی شد." - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "نویسنده مهمان برنامه ریزی شده برای: %1$s. مشاهده پروفایل" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "نویسنده مهمان به روز شد. مشاهده پروفایل " - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "نویسنده مهمان به نسخه %s بازگردانی شد" - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "نویسنده مهمان نمی تواند حذف شود زیرا وجود ندارد." - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "نویسنده مهمان" - -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 -#: build/index.js:1 -#: src/index.js:20 -msgid "Authors" -msgstr "نویسنده" - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "نمایش ارسال های این کاربر" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "نمایش همه" - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "نقش کاربر وردپرس" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "مطمئنید که می خواهید این نویسنده را حذف کنید ؟" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "مشاهده نویسنده مهمان" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "لطفا یک user_login معتبر وارد کنید" - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "لطفا ورود یک نویسنده همکار مشخص کنید" - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "لطفا مطمئن شوید که یک گزینه را انتخاب کرده اید." - -#. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 -msgid "URL : %s" -msgstr "لینک : %s" - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "فیلد سفارشی حذف شد." - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "فیلد سفارشی بروزرسانی شد." - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "فیلتر" - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "- بدون نقش -" - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s یک فیلد ضروری است" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "مال من" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "جابر / گوگل تالک" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "یاهو مسنجر" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "AIM" - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "توجه: اگر می خواهید نویسنده مهمان و همه پستهایش را حذف کنید، ابتدا باید پست های آن را حذف کنید و سپس نویسنده را حذف کنید." - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "M j، Y @ G:i" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "مشاهده نوشته‌ها" - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "بدون اکانت متصل" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "با اکانت متصل" - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "نویسنده همکار وجود ندارد" - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "user_login نمی تواند نویسنده همکار موجود و یا نقشه کاربران را تکثیر کند" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "نویسندگان مهمان" - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "" - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "" - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "" - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "" - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "" - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "" - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "" - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "" - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "" - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "" - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "" - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "" - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "" - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "" - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "" - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "" - -#: build/index.js:1 -#: src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "" diff --git a/languages/co-authors-plus-fr_FR-1fdf421c05c1140f6d71444ea2b27638.json b/languages/co-authors-plus-fr_FR-1fdf421c05c1140f6d71444ea2b27638.json deleted file mode 100644 index ea3eafa7..00000000 --- a/languages/co-authors-plus-fr_FR-1fdf421c05c1140f6d71444ea2b27638.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2020-12-26 09:47:15+0000","generator":"WP-CLI\/2.8.1","source":"src\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"fr","plural-forms":"nplurals=2; plural=n > 1;"},"Authors":["Auteurs"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-fr_FR-dfbff627e6c248bcb3b61d7d06da9ca9.json b/languages/co-authors-plus-fr_FR-dfbff627e6c248bcb3b61d7d06da9ca9.json deleted file mode 100644 index 309ee618..00000000 --- a/languages/co-authors-plus-fr_FR-dfbff627e6c248bcb3b61d7d06da9ca9.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2020-12-26 09:47:15+0000","generator":"WP-CLI\/2.8.1","source":"build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"fr","plural-forms":"nplurals=2; plural=n > 1;"},"Authors":["Auteurs"],"Move Up":[""],"Move down":[""],"Remove Author":[""],"Select An Author":[""]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-fr_FR.mo b/languages/co-authors-plus-fr_FR.mo deleted file mode 100644 index 091f5a75..00000000 Binary files a/languages/co-authors-plus-fr_FR.mo and /dev/null differ diff --git a/languages/co-authors-plus-fr_FR.po b/languages/co-authors-plus-fr_FR.po deleted file mode 100644 index 345eecf2..00000000 --- a/languages/co-authors-plus-fr_FR.po +++ /dev/null @@ -1,657 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Plugins - Co-Authors Plus - Stable (latest release)\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-09-18T17:14:46+00:00\n" -"PO-Revision-Date: 2020-12-26 09:47:15+0000\n" -"Language: fr\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: GlotPress/4.0.0-alpha.7\n" - -#: template-tags.php:91 -msgid " and " -msgstr " et " - -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" -msgstr "Articles par %s" - -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" -msgstr "Visiter le site de %s" - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "Co-Authors Plus" - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "Permettre à plusieurs auteurs d'être associé à un même article. Ce plugin est une version étendue du plugin Co-Authors développé par Weston Ruter." - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "Mohammad Jangda, Daniel Bachhuber, Automattic" - -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 -#: build/index.js:1 -#: src/index.js:20 -msgid "Authors" -msgstr "Auteurs" - -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "Cliquer sur un auteur pour en changer. Glisser-déposer pour modifier l'ordre. Cliquer sur Retirer pour le retirer." - -#: php/class-coauthors-plus.php:567 -#: php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "Articles" - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "Voir les articles de cet auteur" - -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "Aucun co-auteur n'existe pour ce terme" - -#: php/class-coauthors-plus.php:1395 -#: php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "Éditer" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "Retirer" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "Souhaitez-vous vraiment retirer cet auteur ?" - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "Cliquer pour changer cet auteur ou glisser-déposer pour modifier sa position" - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "Rechercher un auteur" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "Le mien" - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "Nouveau commentaire à votre article « %s »" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "Auteur : %1$s (IP : %2$s , %3$s)" - -#. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 -msgid "URL : %s" -msgstr "URL : %s" - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "Commentaire :" - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "Vous pouvez voir tous les commentaires pour cet article ici :" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] Commentaire : « %2$s »" - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "Nouveau trackback pour votre article « %s »" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "Site Web : %1$s (IP : %2$s , %3$s)" - -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "Extrait :" - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "Vous pouvez voir tous les trackbacks pour cet article ici :" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] Trackback : « %2$s »" - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "Nouveau pingback pour votre article « %s »" - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "Vous pouvez voir tous les pingbacks pour cet article ici :" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] Pingback : « %2$s »" - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "Permalien : %s" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "Mettre à la corbeille %s" - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "Supprimer %s" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "Considérer comme indésirable %s" - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "Auteur invité" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "Auteurs invités" - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "Tous les auteurs invités" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "Ajouter un nouvel auteur invité" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "Éditer l'auteur invité" - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "Nouvel auteur invité" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "Afficher l'auteur invité" - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "Rechercher des auteurs invités" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "Aucun auteur invité trouvé" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "Aucun auteur invité trouvé dans la corbeille" - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "Mettre à jour l'auteur invité" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "À propos de l'auteur invité" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "Auteur invité mis à jour. Voir le profil" - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "Champ personnalisé mis à jour" - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "Cahmp personnalisé supprimé." - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "Auteur invité mis à jour." - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "Auteur invité rétabli à la révision datant du %s" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "Auteur invité enregistré." - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "Auteur invité enregistré. Aperçu du pofil" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "Auteur invité prévu pour : %1$s. Aperçu du profil" - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "j M Y à G:i" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "Auteur invité mis à jour. Aperçu du profil" - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "On fait des choses bizarres ?" - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "Vous n'êtes pas autorisé à faire cela." - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "L'auteur invité ne peut être supprimé car il n'existe pas." - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "Le co-auteur n'existe pas. Essayer à nouveau ?" - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "Veuillez choisir une option." - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr "Auteur invité supprimé." - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "Enregistrer" - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "Slug unique" - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "Nom" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "Infos de contact" - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "Vous avez indiqué vouloir supprimer cet auteur invité :" - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "Remarque : si vous souhaitez supprimer l'auteur invité et tous ses articles, vous devriez d'abord supprimer tous ses articles puis revenir pour supprimer l'auteur invité." - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "Réassoicer à un nouveau co-auteur :" - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "Liasser les articles associés à l'utilisateur %s." - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "Supprimer les infos sur l'article (mais laisser chaque article dans sin état actuel)" - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "Confirmer la suppression" - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "Correspondance des utilisateurs WordPress" - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "-- Non associé --" - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "Les auteurs invités ne peuvent être créés sans noms à afficher." - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "Le nom affiché est en conflit avec le nom d'un autre auteur invité." - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "ID" - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "Nom affiché" - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "Prénom" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "Nom" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "Slug" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "E-mail" - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "Compte lié" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "Site Web" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "AIM" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "MI Yahoo" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "Jabber / Google Talk" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "Infos biographiques" - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s est un champ obligatoire" - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "L'identifiant ne peut être le même que celui d'un auteur invité existant ou de l'utilisateur associé" - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "L'auteur invité n'existe pas" - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "Réassociation à un auteur inexistant" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "Aucun utilisateur ne possède cette ID" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "Modifier le profil" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "Créer un profil" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "Co-Auteurs" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "Co-Auteur" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "Tout afficher" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "Avec compte lié" - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "Sans compte lié" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "Supprimer" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "Articles" - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "Filtrer" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "Veuillez indiquer un identifiant valide" - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "Veuillez indiquer un identifiant de co-auteur valide" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "Ajouter" - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "Ajouter" - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "" - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "" - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "" - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "" - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "" - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "" - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "" -msgstr[1] "" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "" - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "" - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "" - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "" - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "" - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "" - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "" - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "" -msgstr[1] "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "" - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "" - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "" - -#: build/index.js:1 -#: src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "" diff --git a/languages/co-authors-plus-he_IL-1fdf421c05c1140f6d71444ea2b27638.json b/languages/co-authors-plus-he_IL-1fdf421c05c1140f6d71444ea2b27638.json deleted file mode 100644 index 22c02a42..00000000 --- a/languages/co-authors-plus-he_IL-1fdf421c05c1140f6d71444ea2b27638.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2019-01-07 16:19+0200","generator":"WP-CLI\/2.8.1","source":"src\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"he_IL","plural-forms":"nplurals=4; plural=(n==1 ? 0 : n==2 ? 1 : n>10 && n%10==0 ? 2 : 3);"},"Authors":["\u05de\u05d7\u05d1\u05e8\u05d9\u05dd"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-he_IL-dfbff627e6c248bcb3b61d7d06da9ca9.json b/languages/co-authors-plus-he_IL-dfbff627e6c248bcb3b61d7d06da9ca9.json deleted file mode 100644 index 0b719fde..00000000 --- a/languages/co-authors-plus-he_IL-dfbff627e6c248bcb3b61d7d06da9ca9.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2019-01-07 16:19+0200","generator":"WP-CLI\/2.8.1","source":"build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"he_IL","plural-forms":"nplurals=4; plural=(n==1 ? 0 : n==2 ? 1 : n>10 && n%10==0 ? 2 : 3);"},"Authors":["\u05de\u05d7\u05d1\u05e8\u05d9\u05dd"],"Move Up":[""],"Move down":[""],"Remove Author":[""],"Select An Author":[""]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-he_IL.mo b/languages/co-authors-plus-he_IL.mo deleted file mode 100644 index 1271d76e..00000000 Binary files a/languages/co-authors-plus-he_IL.mo and /dev/null differ diff --git a/languages/co-authors-plus-he_IL.po b/languages/co-authors-plus-he_IL.po deleted file mode 100644 index d186439a..00000000 --- a/languages/co-authors-plus-he_IL.po +++ /dev/null @@ -1,661 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Co-Authors Plus 3.1-beta\n" -"Report-Msgid-Bugs-To: http://wordpress.org/tag/co-authors-plus\n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2014-03-17 15:59:18+00:00\n" -"PO-Revision-Date: 2019-01-07 16:19+0200\n" -"Language: he_IL\n" -"X-Generator: Poedit 2.1.1\n" -"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : n==2 ? 1 : n>10 && n%10==0 ? 2 : 3);\n" - -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 -#: build/index.js:1 -#: src/index.js:20 -msgid "Authors" -msgstr "מחברים" - -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "לחצו על מחבר כדי לשנות אותו. גררו מחברים כדי לשנות את הסדר שלהם. לחצו על הסרה כדי למחוק אותם." - -#: php/class-coauthors-plus.php:567 -#: php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "פוסטים" - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "הצגת פוסטים לפי מחבר" - -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "לא נמצאו מחברים" - -#: php/class-coauthors-plus.php:1395 -#: php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "עריכה" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "הסרה" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "האם באמת להסיר את המחבר הזה?" - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "לחצו לעריכת המחבר, או גררו לשינוי המיקום שלו" - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "חיפוש מחברים" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "שלי" - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "תגובות חדשות על הפוסט שלך \"%s\"" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "מחבר : %1$s (IP: %2$s , %3$s)" - -#. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 -msgid "URL : %s" -msgstr "כתובת URL: %s" - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "תגובה:" - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "כאן ניתן לראות את כל התגובות לפוסט זה:" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] תגובות: \"%2$s\"" - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "טראקבקים חדשים על הפוסט שלך \" %s\"" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "אתר:%1$s (IP:%2$s,%3$s)" - -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "תקציר:" - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "כאן ניתן לראות את כל הטראקבקים לפוסט זה:" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] טראקבקים: \"%2$s\"" - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "פינגבק חדש בפוסט שלך \" %s\"" - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "כאן ניתן לראות את כל הפינגבקים לפוסט זה:" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] פינגבקים: \"%2$s\"" - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "קישור: %s" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "אשפה: %s" - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "מחיקה: %s" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "ספאם: %s" - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "מחבר אורח" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "מחברים אורחים" - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "כל המחברים האורחים" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "הוספת מחבר אורח" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "עריכת מחבר אורח" - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "מחבר אורח חדש" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "צפיה במחבר אורח" - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "חיפוש מחברים אורחים" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "לא נמצאו מחברים אורחים" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "לא נמצאו מחברים אורחים באשפה" - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "עדכון מחבר אורח" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "אודות המחבר" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "חדש" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "מחבר אורח עודכן בהצלחה. צפייה בפרופיל" - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "שדה מותאם עודכן בהצלחה." - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "שדה מותאם נמחק." - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "מחבר אורח עודכן בהצלחה." - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "מחבר אורח שיחזר לעותק שמור מ-%s" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "מחבר אורח נשמר." - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "מחבר אורח נשמר. תצוגה מקדימה" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "מחבר אורח מתוזמן ל: %1$s. תצוגה מקדימה" - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "מחבר אורח עודכן. תצוגה מקדימה" - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "מה אתה זומם הא?" - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "אין לך הרשאה לבצע פעולה זו." - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "המחבר-אורח לא קיים ולכן לא ניתן למחוק אותו." - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "מחבר-אורח לא קיים. לנסות שוב?" - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "נא לבחור אפשרות." - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr "מחבר-אורח נמחק." - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "שמירה" - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "כינוי ייחודי" - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "שם" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "יצירת קשר" - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "המחבר האורח הבא מיועד למחיקה:" - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "שימו לב: על מנת למחוק את המחבר-אורח וכל הפוסטים שלו, יש קודם כל למחוק את כל הפוסטים שלו, ואז לחזור לכן ולמחוק את המחבר-אורח" - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "שיוך למחבר-אורח אחר:" - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "השאר פוסטים משוייכים למשתמש מקושר, %s" - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "הסרת שותפויות מהפוסט (הפוסט ישמור על הסטטוס שלו)" - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "אישור מחיקה" - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "חדש" - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "קישור משתמשים" - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "-- לא מקושר --" - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "מחבר-אורח לא יכול להיות ללא שם תצוגה." - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "שם תצוגה מתנגש עם שם תצוגה של מחבר-אורח אחר." - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "שם תצוגה" - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "שם פרטי" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "שם משפחה" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "כינוי ייחודי (slug)" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "דוא\\\"ל" - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "חשבון מקושר" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "אתר" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "מידע ביוגרפי" - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s הוא שדה חובה." - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "כינוי חייב להיות ייחודי ולא להיות זהה לשם-משתמש שקושר או למחבר-אורח אחר." - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "מחבר אורח לא קיים" - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "מחבר אורח משוייך לא קיים" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "לא קיים משתמש עם ID זה" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "עריכת פרופיל" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "יצירת פרופיל" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "מחברים שותפים" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "מחבר שותף" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "הצג הכל" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "עם חשבונות מקושרים" - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "ללא חשבונות מקושרים" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "מחיקה" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "הצגת פוסטים" - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "סינון" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "שם משתמש לא תקין" - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "מחבר אורח לא תקין" - -#: template-tags.php:91 -msgid " and " -msgstr " ו" - -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" -msgstr "כתבות מאת %s" - -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" -msgstr "מעבר לאתר של %s" - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "מחברים שותפים פלוס" - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "מאפשר שיוך מספר מחברים לכל פוסט. התוסף הוא שדרוג של התוסף הישן Co-Authors מאתר Weston Ruter." - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "" - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "" - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "" - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "" - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "" - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "" - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "" - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "" - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "" - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "" - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "" - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "" - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "" - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "" - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" -msgstr[3] "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "" - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "" - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "" - -#: build/index.js:1 -#: src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "" diff --git a/languages/co-authors-plus-is_IS-1fdf421c05c1140f6d71444ea2b27638.json b/languages/co-authors-plus-is_IS-1fdf421c05c1140f6d71444ea2b27638.json deleted file mode 100644 index 8e9587e9..00000000 --- a/languages/co-authors-plus-is_IS-1fdf421c05c1140f6d71444ea2b27638.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2016-12-28 12:17:54+0000","generator":"WP-CLI\/2.8.1","source":"src\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"is","plural-forms":"nplurals=2; plural=n % 10 != 1 || n % 100 == 11;"},"Authors":["H\u00f6fundar"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-is_IS-dfbff627e6c248bcb3b61d7d06da9ca9.json b/languages/co-authors-plus-is_IS-dfbff627e6c248bcb3b61d7d06da9ca9.json deleted file mode 100644 index e820d87e..00000000 --- a/languages/co-authors-plus-is_IS-dfbff627e6c248bcb3b61d7d06da9ca9.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2016-12-28 12:17:54+0000","generator":"WP-CLI\/2.8.1","source":"build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"is","plural-forms":"nplurals=2; plural=n % 10 != 1 || n % 100 == 11;"},"Authors":["H\u00f6fundar"],"Move Up":[""],"Move down":[""],"Remove Author":[""],"Select An Author":[""]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-is_IS.mo b/languages/co-authors-plus-is_IS.mo deleted file mode 100644 index 77cf5831..00000000 Binary files a/languages/co-authors-plus-is_IS.mo and /dev/null differ diff --git a/languages/co-authors-plus-is_IS.po b/languages/co-authors-plus-is_IS.po deleted file mode 100644 index f2308036..00000000 --- a/languages/co-authors-plus-is_IS.po +++ /dev/null @@ -1,657 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Plugins - Co-Authors Plus - Stable (latest release)\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-09-18T17:14:46+00:00\n" -"PO-Revision-Date: 2016-12-28 12:17:54+0000\n" -"Language: is\n" -"Plural-Forms: nplurals=2; plural=n % 10 != 1 || n % 100 == 11;\n" -"X-Generator: GlotPress/4.0.0-alpha.7\n" - -#: template-tags.php:91 -msgid " and " -msgstr " og " - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "Gerir kleift að skilgreina marga höfunda fyrir hverja færslu. Þessi viðbót er útvíkkuð útgáfa af Co-Authors viðbótinni sem þróuð var af Weston Ruter." - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "Co-Authors Plus" - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "Mohammad Jangda, Daniel Bachhuber, Automattic" - -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" -msgstr "Færslur eftir þennan höfund: %s" - -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" -msgstr "Skoða vef höfundar: %s" - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "Nafn" - -#: php/class-coauthors-plus.php:1395 -#: php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "Breyta" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "Eyða" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "Fjarlægja" - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "Vista" - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s krefst útfyllingar" - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "-- Ekki tengt --" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "AIM" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "Um gestahöfundinn" - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "Bæta nýjum" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "Bæta við nýjum gestahöfund" - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "Allir gestahöfundar" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "Ertu viss um að þú viljir fjarlægja þennan höfund?" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "Höfundur : %1$s (IP: %2$s , %3$s)" - -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 -#: build/index.js:1 -#: src/index.js:20 -msgid "Authors" -msgstr "Höfundar" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "Persónuupplýsingar" - -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "Smelltu á höfund til þess að gera breytingar. Dragðu til þess að breyta staðsetningu þeirra. Smelltu á fjarlægja til þess að fjarlægja þá." - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "Smelltu til þess að breyta þessum höfund eða dragðu hann til að breyta staðsetningu" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "Meðhöfundur" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "Meðhöfundar" - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "Meðhöfundur er ekki til. Reyna aftur?" - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "Athugasemd : " - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "Staðfesta eyðingu" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "Hvar má ná sambandi við þig?" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "Búa til prófíl" - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "Sérreiti eytt" - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "Sérsniðinn reitur uppfærður." - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "Eyða: %s" - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "Nafn til að sýna" - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "Birtingarnafn rekst á við birtingarnafn annars gestahöfundar." - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "Ertu að gera eitthvað grunsamlegt, ha?" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "Tölvupóstfang" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "Breyta gestahöfundi" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "Breyta prófíl" - -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "Útdráttur:" - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "Sía" - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "Eiginnafn" - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "Gestahöfundur" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "Gestahöfundar" - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "Ekki er hægt að eyða gestahöfundi þar sem hann er ekki til." - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr "Gestahöfundi eytt." - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "Gestahöfundur er ekki til" - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "Gestahöfundur endurvakinn samkvæmt útgáfu %s" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "Gestahöfundur vistaður" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "Gestahöfundur skipulagður fyrir: %1$s. Forskoða prófíl" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "Gestahöfundur sendi inn. Skoða prófíl" - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "Gestahöfundur uppfærður" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "Gestahöfundur uppfærður. Skoða prófíl" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "Gestahöfundur uppfærður. Forskoða prófíl" - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "Ekki er hægt að stofna gestahöfund án þess að skilgreina nafn til birtingar." - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "ID" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "Jabber / Google-tal" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "Kenninafn" - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "Hafa færslur áfram tengdar við notandann, %s." - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "Tengdur aðgangur" - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G:i" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "Mínar" - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "Nýr gestahöfundur" - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "Ný athugasemd við færslu \"%s\"" - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "Ný bakvísun á færsluna þína \"%s\"" - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "Ný bakvísun á færslu \"%s\"" - -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "Enginn meðhöfundur er til fyrir þetta merki" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "Enginn gestahöfundur finnst" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "Enginn gestahöfundur finnst í ruslatunnunni" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "Enginn notandi er til með það auðkenni" - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "Athugið: Ef þú vilt eyða gestahöfundi og öllum færslum hans, eyddu færslunum fyrst og komdu aftur til þess að eyða gestahöfundnum." - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "Fast veffang: %s" - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "Gakktu úr skugga um að eitthvað sé valið." - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "Vinsamlegast skilgreindu gilt meðhöfundar notandanafn" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "Vinsamlegast skilgreindu gilt user_login" - -#: php/class-coauthors-plus.php:567 -#: php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "Færslur" - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "Endurúthluta til annars meðhöfundar." - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "Meðhöfundur sem endurúthluta á til er ekki til" - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "Fjarlægja upplýsingar um höfund úr færslur (en halda núverandi stöðu færslunnar)." - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "Leita að gestahöfundi" - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "Leita að höfundi" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "Sýna allt" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "Netvænt stuttheiti" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "Merkja amapóst: %s" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "Fleygja: %s" - -#. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 -msgid "URL : %s" -msgstr "Vefslóð : %s" - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "Einkvæm stuttslóð" - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "Uppfæra gestahöfund" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "Skoða gestahöfund" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "Skoða færslur" - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "Skoða færslur eftir þennan höfund" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "Vefur" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "Vefur: %1$s (IP: %2$s , %3$s)" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "Tengt við aðgang" - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "Ótengt við aðgang" - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "WordPress notanda tenging" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "Yahoo IM" - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "Þú getur séð allar athugasemdir við þessa færslu hér: " - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "Þú getur séð allar bakvísanir fyrir þessa færslu hér: " - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "Þú getur séð allar bakrakningar fyrir þessa færslu hér: " - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "Þú hefur ekki heimild til þess að framkvæma þessa aðgerð." - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "Þú hefur merkt þennan gestahöfund til eyðingar:" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] Athugasemd: \"%2$s\"" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] Bakvísun: „%2$s“" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] Bakvísun: „%2$s“" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "Bæta nýjum" - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "user_login getur ekki innihaldið gildi sem er til fyrir núverandi gestahöfund eða tengdan notanda" - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "" - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "" - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "" - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "" - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "" - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "" - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "" -msgstr[1] "" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "" - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "" - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "" - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "" - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "" - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "" - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "" - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "" -msgstr[1] "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "" - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "" - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "" - -#: build/index.js:1 -#: src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "" diff --git a/languages/co-authors-plus-nb_NO-1fdf421c05c1140f6d71444ea2b27638.json b/languages/co-authors-plus-nb_NO-1fdf421c05c1140f6d71444ea2b27638.json deleted file mode 100644 index 300cd749..00000000 --- a/languages/co-authors-plus-nb_NO-1fdf421c05c1140f6d71444ea2b27638.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2020-11-23 00:31:00+0000","generator":"WP-CLI\/2.8.1","source":"src\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"nb_NO","plural-forms":"nplurals=2; plural=n != 1;"},"Authors":["Forfattere"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-nb_NO-dfbff627e6c248bcb3b61d7d06da9ca9.json b/languages/co-authors-plus-nb_NO-dfbff627e6c248bcb3b61d7d06da9ca9.json deleted file mode 100644 index 41f16f20..00000000 --- a/languages/co-authors-plus-nb_NO-dfbff627e6c248bcb3b61d7d06da9ca9.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2020-11-23 00:31:00+0000","generator":"WP-CLI\/2.8.1","source":"build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"nb_NO","plural-forms":"nplurals=2; plural=n != 1;"},"Authors":["Forfattere"],"Move Up":[""],"Move down":[""],"Remove Author":[""],"Select An Author":[""]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-nb_NO.mo b/languages/co-authors-plus-nb_NO.mo deleted file mode 100644 index 9110e817..00000000 Binary files a/languages/co-authors-plus-nb_NO.mo and /dev/null differ diff --git a/languages/co-authors-plus-nb_NO.po b/languages/co-authors-plus-nb_NO.po deleted file mode 100644 index 4f781bd7..00000000 --- a/languages/co-authors-plus-nb_NO.po +++ /dev/null @@ -1,657 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Plugins - Co-Authors Plus - Stable (latest release)\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-09-18T17:14:46+00:00\n" -"PO-Revision-Date: 2020-11-23 00:31:00+0000\n" -"Language: nb_NO\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: GlotPress/4.0.0-alpha.7\n" - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "Mohammad Jangda, Daniel Bachhuber, Automattic" - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "Tillater at flere forfattere tildeles et innlegg. Denne pluginen er en utvidet versjon av Co-Authors pluginen utviklet av Weston Ruter." - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "Co-Authors Plus" - -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" -msgstr "Besøk %s’s nettside" - -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" -msgstr "Innlegg av %s" - -#: template-tags.php:91 -msgid " and " -msgstr " og " - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "Navn" - -#: php/class-coauthors-plus.php:567 -#: php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "Innlegg" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "Slett" - -#: php/class-coauthors-plus.php:1395 -#: php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "Rediger" - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "Lagre" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "Fjern" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "Merk som spam: %s" - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "Angi en gyldig medforfatterpålogging" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "Vennligst spesifiser en gyldig user_login" - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "Filter" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "Vis Innlegg" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "Vis alle" - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "Uten tilknyttet konto" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "Med tilknyttet konto" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "Medforfatter" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "Medforfatterere" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "Opprett profil" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "Rediger profil" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "Ingen brukere eksisterer med den ID-en" - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "Overførte medforfatter eksisterer ikke" - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "Gjesteforfatter eksisterer ikke" - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "user_login kan ikke duplisere eksisterende gjesteforfatter eller kartlagt bruker" - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s er et obligatorisk felt" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "Biografisk info" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "Jabber / Google Talk" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "Yahoo IM" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "AIM" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "Nettside" - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "Tilknyttet konto" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "E-post" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "Identifikator" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "Etternavn" - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "Fornavn" - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "Visningsnavn" - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "ID" - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "Gjesteforfattere kan ikke opprettes uten visningsnavn." - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "-- Ikke kartlagt --" - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "Legg til ny" - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "WordPress brukerkartlegging" - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "Bekreft sletting" - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "Fjern byline fra innleggene (men la hvert innlegg ha sin nåværende status)." - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "Overfør til en annen medforfatter:" - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "Merk: Hvis du vil slette gjesteforfatteren og alle innleggene deres, bør du først slette innleggene og deretter komme tilbake for å slette gjesteforfatteren." - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "Du har spesifisert denne gjesteforfatteren for sletting:" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "Kontaktinfo" - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "Unik identifikator" - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr "Gjesteforfatter slettet." - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "Sørg for å velge et alternativ." - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "Medforfatter eksisterer ikke. Prøv igjen?" - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "Gjesteforfatteren kan ikke slettes fordi den ikke eksisterer." - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "Du har ikke tillatelse til å utføre denne handlingen." - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "Gjør du noe du ikke skal?" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "Gjesteforfatter oppdatert. Forhåndsvis profil" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "Gjesteforfatter planlagt til: %1$s . Forhåndsvis profil" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "Gjesteforfatter sendt. Forhåndsvis profil" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "Gjesteforfatter lagret." - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "Gjesteforfatter gjenopprettet til revisjon fra %s" - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "Gjesteforfatter oppdatert." - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "Egendefinert felt slettet." - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "Egendefinert felt oppdatert." - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "Gjesteforfatter oppdatert. Se profil" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "Legg til ny" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "Om gjesteforfatteren" - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "Oppdater gjesteforfatter" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "Ingen gjesteforfattere ble funnet i papirkurven" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "Ingen gjesteforfattere funnet" - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "Søk i gjesteforfattere" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "Vis gjesteforfatter" - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "Ny gjesteforfatter" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "Rediger gjesteforfatter" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "Legg til ny gjesteforfatter" - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "Alle gjesteforfattere" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "Gjesteforfattere" - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "Gjesteforfatter" - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "Slett den: %s" - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "Ny tilbakekalling på innlegget ditt \"%s\"" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] Trackback: \"%2$s\"" - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "Du kan se alle trackbacks på dette innlegget her:" - -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "Utdrag: " - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "Nettside: %1$s (IP: %2$s , %3$s)" - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "Ny trackback på innlegget ditt \"%s\"" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] Kommentar: \"%2$s\"" - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "Du kan se alle kommentarene til dette innlegget her:" - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "Kommentar: " - -#. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 -msgid "URL : %s" -msgstr "URL : %s" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "Forfatter : %1$s (IP: %2$s , %3$s)" - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "Ny kommentar til innlegget ditt \"%s\"" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "Min" - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "Søk etter en forfatter" - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "Klikk for å endre denne forfatteren, eller dra for å endre posisjonen" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "Er du sikker på at du vil fjerne denne forfatteren?" - -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "Ingen medforfatter eksisterer for det begrepet" - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "Vis innlegg av denne forfatteren" - -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "Klikk på en forfatter for å endre dem. Dra for å endre rekkefølgen. Klikk på Fjern for å fjerne dem." - -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 -#: build/index.js:1 -#: src/index.js:20 -msgid "Authors" -msgstr "Forfattere" - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "d.M.Yk\\l H:i" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "Kast den: %s" - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "Permalenke: %s" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] Tilbakeping: \"%2$s\"" - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "Du kan se alle tilbakeping på dette innlegget her: " - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "Visningsnavn er i konflikt med en annens gjesteforfatter sitt visningsnavn." - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "La innlegg være tilordnet den tilordnede brukeren, %s." - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "" - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "" - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "" - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "" - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "" - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "" - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "" -msgstr[1] "" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "" - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "" - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "" - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "" - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "" - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "" - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "" - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "" -msgstr[1] "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "" - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "" - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "" - -#: build/index.js:1 -#: src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "" diff --git a/languages/co-authors-plus-nl_NL-1fdf421c05c1140f6d71444ea2b27638.json b/languages/co-authors-plus-nl_NL-1fdf421c05c1140f6d71444ea2b27638.json deleted file mode 100644 index 1d9dc877..00000000 --- a/languages/co-authors-plus-nl_NL-1fdf421c05c1140f6d71444ea2b27638.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2023-08-28 09:25:11+0000","generator":"WP-CLI\/2.8.1","source":"src\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"nl","plural-forms":"nplurals=2; plural=n != 1;"},"Authors":["Auteurs"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-nl_NL-dfbff627e6c248bcb3b61d7d06da9ca9.json b/languages/co-authors-plus-nl_NL-dfbff627e6c248bcb3b61d7d06da9ca9.json deleted file mode 100644 index ca7a41b0..00000000 --- a/languages/co-authors-plus-nl_NL-dfbff627e6c248bcb3b61d7d06da9ca9.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2023-08-28 09:25:11+0000","generator":"WP-CLI\/2.8.1","source":"build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"nl","plural-forms":"nplurals=2; plural=n != 1;"},"Authors":["Auteurs"],"Move Up":[""],"Move down":[""],"Remove Author":[""],"Select An Author":[""]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-nl_NL.mo b/languages/co-authors-plus-nl_NL.mo deleted file mode 100644 index a210a58f..00000000 Binary files a/languages/co-authors-plus-nl_NL.mo and /dev/null differ diff --git a/languages/co-authors-plus-nl_NL.po b/languages/co-authors-plus-nl_NL.po deleted file mode 100644 index 01267528..00000000 --- a/languages/co-authors-plus-nl_NL.po +++ /dev/null @@ -1,659 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Plugins - Co-Authors Plus - Stable (latest release)\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-09-18T17:14:46+00:00\n" -"PO-Revision-Date: 2023-08-28 09:25:11+0000\n" -"Language: nl\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: GlotPress/4.0.0-alpha.7\n" - -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" -msgstr "Berichten van %s" - -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" -msgstr "Bezoek %s’s site" - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "Mohammad Jangda, Daniel Bachhuber, Automattic" - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "Sta toe om meerdere auteurs toe te wijzen aan een bericht. Deze plugin is een uitgebreide versie van de co-auteurs plugin ontwikkeld door Weston Ruter" - -#: template-tags.php:91 -msgid " and " -msgstr " en " - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "Co-Authors Plus" - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "Aan het updaten - Toevoegen van %1$s's auteursnaam aan bericht #%2$d." - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "Overslaan - Bericht #%1$d heeft al medeauteurs toegewezen: %2$s." - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "Klaar! %d bericht is beïnvloed." -msgstr[1] "Klaar! %d berichten zijn beïnvloed." - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "https://wordpress.org/plugins/co-authors-plus/" - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "Nieuwe toevoegen" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "Verwijderen" - -#: php/class-coauthors-plus.php:1395 -#: php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "Bewerken" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "Biografische informatie" - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "Naam" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "Slug" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "Verwijderen" - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "Filteren" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "Contactinformatie" - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "ID" - -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 -#: build/index.js:1 -#: src/index.js:20 -msgid "Authors" -msgstr "Auteurs" - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "j M Y @ H:i" - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "" -"Aangepast veld verwijderd\n" -"." - -#: php/class-coauthors-plus.php:567 -#: php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "Berichten" - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "Aangepast veld bijgewerkt." - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr "Gastauteur verwijderd." - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "Unieke slug" - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "Opmerking: Als je gastauteur en al zijn berichten wilt verwijderen dan moet je eerst de berichten verwijderen en dan de gastauteur." - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "Toewijzen aan een andere co-auteur:" - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "Laat berichten toegewezen aan de verbonden gebruiker, %s." - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "Verwijder de bijzin van berichten (maar behoud de status van elk bericht)." - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "Verwijdering bevestigen" - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "WordPress gebruikersverbinding" - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "– Niet verbonden –" - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "Gastauteur kan niet worden aangemaakt zonder de schermnaam." - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "De schermnaam geeft een conflict met de gastauteur schermnaam." - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "Schermnaam" - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "Voornaam" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "Achternaam" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "AIM" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "Yahoo IM" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "Jabber / Google Talk" - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s is een verplicht veld" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "Wijzig profiel" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "Berichten bekijken" - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "Verbonden account" - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "Gastauteur bestaat niet" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "Er bestaat geen gebruiker met deze ID" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "Profiel aanmaken" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "Co-auteurs" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "Co-auteur" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "Bekijk alles" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "Met verbonden account" - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "Zonder verbonden account" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "Geef een geldige user_login op" - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "Geef een geldige co-auteur login op" - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "user_login kan niet worden gedupliceerd met de bestaande gastauteur of verbonden gebruiker" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "Markeren als spam: %s" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] Pingback: \"%2$s\"" - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "Permalink: %s" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "Naar de prullenbak: %s" - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "Verwijderen: %s" - -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "Samenvatting:" - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "Hier kun je alle trackbacks op dit bericht zien:" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] Trackback: \"%2$s\"" - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "Nieuwe pingback op bericht \"%s\"" - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "Hier kun je alle pingbacks op dit bericht zien:" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "Auteur : %1$s (IP: %2$s , %3$s)" - -#. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 -msgid "URL : %s" -msgstr "URL : %s" - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "Reactie:" - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "Hier kun je alle reacties op dit bericht zien:" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] Reactie: \"%2$s\"" - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "Nieuwe trackback op je bericht \"%s\"" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "Website: %1$s (IP: %2$s , %3$s)" - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "Nieuwe reactie op je bericht \"%s\"" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "Van mij" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "Nieuwe toevoegen" - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "Berichten van deze auteur bekijken" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "Gastauteurs" - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "Alle gastauteurs" - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "Gastauteur" - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "Gastauteurs zoeken" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "Gastauteur bewerken" - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "Nieuwe gastauteur" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "Gastauteur bekijken" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "Nieuwe gastauteur toevoegen" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "Geen gastauteurs gevonden" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "Geen gastauteurs gevonden in de prullenbak " - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "Gastauteur bijwerken" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "Over de gastauteur" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "Gastauteur bijgewerkt. Profiel bekijken" - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "Gastauteur bijgewerkt." - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "Gastauteur bijgewerkt. Voorbeeld profiel" - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "Gastauteur hersteld naar revisie van %s" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "Gastauteur opgeslagen." - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "Ben je iets raars aan het doen?" - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "Je hebt geen rechten om deze actie uit te voeren." - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "Deze gastauteur kan niet worden verwijderd omdat deze niet bestaat." - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "Co-auteur bestaat niet. Probeer het nogmaals." - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "Gastauteur toegevoegd. Bekijk profiel " - -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "Klik op een auteur om deze te bewerken. Sleep om de volgorde aan te passen. Klik op Verwijderen om ze te verwijderen." - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "Zoek voor een auteur" - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "Klik om deze auteur te bewerken of sleep om de positie aan te passen" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "Weet je zeker dat je deze auteur wilt verwijderen?" - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "Kies een optie." - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "Je heb deze gastauteur geselecteerd om te verwijderen:" - -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "Er bestaat geen co-auteur met deze term" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "Gastauteur gepland op: %1$s. Voorbeeld profiel" - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "Toegewezen co-auteur bestaat niet" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "Site" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "E-mail" - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "Opslaan" - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "Er werden geen overeenkomende medeauteurs gevonden." - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "E-mail: %s" - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "Let op: activeer javascript of gebruikt een browser die javascript ondersteund om bericht auteurs te bewerken" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "" - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "" - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "" - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "" - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "" - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "" -msgstr[1] "" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "" - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "" - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "" - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "" - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "" - -#: build/index.js:1 -#: src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "" diff --git a/languages/co-authors-plus-pl_PL-1fdf421c05c1140f6d71444ea2b27638.json b/languages/co-authors-plus-pl_PL-1fdf421c05c1140f6d71444ea2b27638.json deleted file mode 100644 index c0262086..00000000 --- a/languages/co-authors-plus-pl_PL-1fdf421c05c1140f6d71444ea2b27638.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2022-01-21 08:05:51+0000","generator":"WP-CLI\/2.8.1","source":"src\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"pl","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);"},"Authors":["Autorzy"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-pl_PL-dfbff627e6c248bcb3b61d7d06da9ca9.json b/languages/co-authors-plus-pl_PL-dfbff627e6c248bcb3b61d7d06da9ca9.json deleted file mode 100644 index 4d5cc910..00000000 --- a/languages/co-authors-plus-pl_PL-dfbff627e6c248bcb3b61d7d06da9ca9.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2022-01-21 08:05:51+0000","generator":"WP-CLI\/2.8.1","source":"build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"pl","plural-forms":"nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);"},"Authors":["Autorzy"],"Move Up":[""],"Move down":[""],"Remove Author":[""],"Select An Author":[""]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-pl_PL.mo b/languages/co-authors-plus-pl_PL.mo deleted file mode 100644 index 7e8cedb2..00000000 Binary files a/languages/co-authors-plus-pl_PL.mo and /dev/null differ diff --git a/languages/co-authors-plus-pl_PL.po b/languages/co-authors-plus-pl_PL.po deleted file mode 100644 index 013e82a6..00000000 --- a/languages/co-authors-plus-pl_PL.po +++ /dev/null @@ -1,659 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Plugins - Co-Authors Plus - Stable (latest release)\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-09-18T17:14:46+00:00\n" -"PO-Revision-Date: 2022-01-21 08:05:51+0000\n" -"Language: pl\n" -"Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);\n" -"X-Generator: GlotPress/4.0.0-alpha.7\n" - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "Mohammad Jangda, Daniel Bachhuber, Automattic" - -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" -msgstr "Wpisy od %s" - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "Pozwala na przypisywanie wielu autorów do wpisu. Wtyczka jest rozszerzoną wersją wtyczki Co-Authors stworzonej przez Westona Rutera." - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "Współautorzy Plus" - -#: template-tags.php:91 -msgid " and " -msgstr " i " - -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" -msgstr "Odwiedź witrynę internetową osoby podpisującej się „%s”" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "E-mail" - -#: php/class-coauthors-plus.php:1395 -#: php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "Edytuj" - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "Filtr" - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "Zapisz" - -#: php/class-coauthors-plus.php:567 -#: php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "Wpisy" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "Usuń" - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "Imię" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "Nazwisko" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "Usuń" - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "ID" - -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 -#: build/index.js:1 -#: src/index.js:20 -msgid "Authors" -msgstr "Autorzy" - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "Bezpośredni odnośnik: %s" - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "Nowy pingback do twojego wpisu \"%s\"" - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "Nowy trackback do twojego wpisu \"%s\"" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "Yahoo IM" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "AIM" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "Oznacz jako spam: %s" - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "Usuń: %s" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "Przenieś do kosza: %s" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] Pingback: „%2$s”" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] Trackback: „%2$s”" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "Dane kontaktowe" - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "Własne pole zostało usunięte." - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "Własne pole zostało zaktualizowane." - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "Proszę się upewnić, że coś wybrano." - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr "Autor gościnny został usunięty." - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "Uproszczona nazwa" - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "Wybrano następującego autora gościnnego do usunięcia:" - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "Informacja: Jeśli chcesz usunąć tego autora gościnnego i wszystkie jego wpisy, to należy najpierw usunąć wszystkie wpisy, a dopiero potem autora." - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "Dodaj" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "Uproszczona nazwa" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "Witryna internetowa" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "Edytuj profil" - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "Przypisz do innego współautora:" - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "Pozostaw posty przypisane do zmapowanego użytkownika, %s." - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "Usuń podpis z wpisu (ale pozostaw wpisy w aktualnym stanie)." - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "Mapowanie użytkowników wordpressowych" - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "-- Niezmapowany --" - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "Autorzy goście nie mogą zostać utworzeni bez wyświetlanych nazw." - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "Wyświetlana nazwa nie może kolidować z tą innego autora gościa." - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "Wyświetlana nazwa" - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "Połączone konto" - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "user_login nie może dublować istniejącego autora gościa lub zmapowanego użytkownika" - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "Autor gość nie istnieje" - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "Współautor do ponownego przypisania nie istnieje" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "Brak użytkownika z takim ID" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "Utwórz profil" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "Współautorzy" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "Współautor" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "Pokaż wszystko" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "Z połączonymi kontami" - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "Bez połączonych kont" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "Proszę podać prawidłowy user_login" - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "Proszę podać prawidłowy login współautora" - -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "Kliknij na autora, aby go zmienić. Przeciągnij, aby zmienić kolejność. Kliknij Usuń, aby usunąć autora." - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "Pokaż wpisy tego autora" - -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "Brak współautora dla terminu" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "Czy na pewno usunąć wybranego autora?" - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "Kliknij, aby zmienić autora lub przeciągnij, aby zmienić jego pozycję" - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "Szukaj autora" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "Autor : %1$s (IP: %2$s , %3$s)" - -#. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 -msgid "URL : %s" -msgstr "Adres URL : %s" - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "Komentarz: " - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "Wszystkie komentarze do wpisu można zobaczyć tutaj: " - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "Nazwa" - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s jest polem wymaganym" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "Moje" - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "Potwierdź usuwanie" - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "Robisz coś podejrzanego, co nie?" - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "Nowy komentarz do twojego wpisu „%s”" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "Informacje biograficzne" - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "Współautor nie istnieje. Proszę spróbować ponownie." - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "Autor gościnny nie może zostać usunięty, ponieważ nie istnieje." - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "Bra uprawnień do wykonania wybranego działania." - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "Autor gościnny został zaktualizowany. Podejrzyj profil" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "Autor gościnny został zapisany." - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "Autor gościnny został przywrócona do wersji z %s" - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "Autor gościnny został zaktualizowany." - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "Autor gościnny został zaktualizowany. Zobacz profil" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "Dodaj" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "O autorze gościnnym" - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "Aktualizuj autora gościnnego" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "Brak autorów gościnnych w koszu" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "Nie znaleziono żadnego autora gościnnego" - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "Szukaj autora gościnnego" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "Zobacz autora gościnnego" - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "Nowy autor gościnny" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "Edytuj autora gościnnego" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "Dodaj autora gościnnego" - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "Wszyscy autorzy gościnni" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "Autorzy gościnni" - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "Autor gościnny" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "Publikacja autora gościnnego została zaplanowana na: %1$s. Podejrzyj profil" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "Wysłano autor gościnnego. Podejrzyj profil" - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "Możesz zobaczyć wszystkie pingbacki do tego wpisu tutaj:" - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "Możesz zobaczyć wszystkie trackbacki do tego wpisu tutaj:" - -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "Zajawka:" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "Witryna: %1$s (IP: %2$s , %3$s)" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "Jabber / Google Talk" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] Komentarz: „%2$s”" - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "Y-m-d H:i" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "Zobacz wpisy" - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "" - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "" - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "" - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "" - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "" - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "" - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "" - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "" - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "" - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "" - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "" - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "" - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "" - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "" - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "" - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "" - -#: build/index.js:1 -#: src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "" diff --git a/languages/co-authors-plus-pt_BR-1fdf421c05c1140f6d71444ea2b27638.json b/languages/co-authors-plus-pt_BR-1fdf421c05c1140f6d71444ea2b27638.json deleted file mode 100644 index 7a9d6d64..00000000 --- a/languages/co-authors-plus-pt_BR-1fdf421c05c1140f6d71444ea2b27638.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2022-07-25 21:15:25+0000","generator":"WP-CLI\/2.8.1","source":"src\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"pt_BR","plural-forms":"nplurals=2; plural=n > 1;"},"Authors":["Autores"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-pt_BR-dfbff627e6c248bcb3b61d7d06da9ca9.json b/languages/co-authors-plus-pt_BR-dfbff627e6c248bcb3b61d7d06da9ca9.json deleted file mode 100644 index 441f7fec..00000000 --- a/languages/co-authors-plus-pt_BR-dfbff627e6c248bcb3b61d7d06da9ca9.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2022-07-25 21:15:25+0000","generator":"WP-CLI\/2.8.1","source":"build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"pt_BR","plural-forms":"nplurals=2; plural=n > 1;"},"Authors":["Autores"],"Move Up":[""],"Move down":[""],"Remove Author":[""],"Select An Author":[""]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-pt_BR.mo b/languages/co-authors-plus-pt_BR.mo deleted file mode 100644 index 195fda5b..00000000 Binary files a/languages/co-authors-plus-pt_BR.mo and /dev/null differ diff --git a/languages/co-authors-plus-pt_BR.po b/languages/co-authors-plus-pt_BR.po deleted file mode 100644 index 18e252f8..00000000 --- a/languages/co-authors-plus-pt_BR.po +++ /dev/null @@ -1,657 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Plugins - Co-Authors Plus - Stable (latest release)\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-09-18T17:14:46+00:00\n" -"PO-Revision-Date: 2022-07-25 21:15:25+0000\n" -"Language: pt_BR\n" -"Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: GlotPress/4.0.0-alpha.7\n" - -#: template-tags.php:91 -msgid " and " -msgstr " e " - -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" -msgstr "Visite o site de %s" - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "Co-Authors Plus" - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "Mohammad Jangda, Daniel Bachhuber, Automattic" - -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" -msgstr "Posts por %s" - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "Permite que múltiplos autores sejam designados a um post. Esse plugin é uma versão estendida do plugin Co-Authors desenvolvido por Weston Ruter." - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "Nome" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "Sobrenome" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "Informações de contato" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "Informações biográficas" - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "ID" - -#: php/class-coauthors-plus.php:1395 -#: php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "Editar" - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "Filtro" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "Slug" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "Remover" - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "Salvar" - -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 -#: build/index.js:1 -#: src/index.js:20 -msgid "Authors" -msgstr "Autores" - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "Buscar um autor" - -#. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 -msgid "URL : %s" -msgstr "URL : %s" - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "Comentário:" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "AIM" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "Yahoo IM" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "Jabber / Google Talk" - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "Novo comentário no seu post \"%s\"" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "Autor : %1$s (IP: %2$s , %3$s)" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] Comentário: \"%2$s\"" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "Website: %1$s (IP: %2$s , %3$s)" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "Não foram encontrados autores convidados na lixeira" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "Sobre o autor convidado" - -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "Clique em um autor para alterá-lo. Arraste-o para alterar a ordem. Clique em Remover para removê-lo" - -#: php/class-coauthors-plus.php:567 -#: php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "Posts" - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "Ver posts deste autor" - -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "Não existe coautor para este termo" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "Tem certeza que deseja remover este autor?" - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "Clique para alterar este autor, ou arraste-o para alterar sua posição" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "Meu" - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "Você pode ver todos os comentários do seu post aqui: " - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "Novo trackback no seu post \"%s\"" - -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "Excerto: " - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "Você pode ver todos os trackbacks para este post aqui: " - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] Trackback: \"%2$s\"" - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "Novo pingback no seu post \"%s\"" - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "Você pode ver todos os pingbacks para este post aqui:" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] Pingback: \"%2$s\"" - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "Permalink: %s" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "Lixeira: %s" - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "Excluir: %s" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "Spam: %s" - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "Autor convidado" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "Autores convidados" - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "Todos os autores convidados" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "Adicionar novo autor convidado" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "Editar autor convidado" - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "Novo autor convidado" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "Ver autores convidados" - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "Pesquisar autores convidados" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "Nenhum autor convidado encontrado" - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "Atualizar autor convidado" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "Adicionar novo" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "Autor convidado atualizado. Ver perfil" - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "Autor convidado atualizado" - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "Autor convidado restaurado da revisão de %s" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "Autor convidado salvo." - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "Autor convidado enviado. Ver perfil" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "Autor convidado agendado para: %1$s. Ver perfil" - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "j M Y @ G:i" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "Autor convidado atualizado. Ver perfil" - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "Você não tem permissão para executar esta ação." - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "Este coautor não existe. Tentar novamente?" - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "Certifique-se de escolher uma opção." - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr "Autor convidado excluído" - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "Você especificou o seguinte autor convidado para exclusão:" - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "Designar para outro coautor:" - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "Deixar posts designados para o usuário mapeado, %s." - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "Remover assinatura dos posts (mas deixar cada post em seu estado atual)." - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "Confirmar exclusão" - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "Adicionar novo" - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "Mapeamento de usuários do WordPress" - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "-- Não mapeado --" - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "Autores convidados não podem ser criados sem um nome de exibição" - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "Nome de exibição" - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "Primeiro nome" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "E-mail" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "Website" - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s é um campo obrigatório " - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "user_login não pode duplicar um autor convidado existente ou um usuário mapeado" - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "Autor convidado não existe" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "Não existe nenhum usuário com este ID" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "Editar perfil" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "Criar perfil" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "Coautores" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "Coautor" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "Excluir" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "Ver posts" - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "Slug único" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "Especifique um user_login válido" - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "Sem conta vinculada" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "Com conta vinculada" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "Mostrar tudo" - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "Especifique um usuário coautor válido" - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "O coautor de reatribuição não existe" - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "Conta vinculada" - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "O nome de exibição está em conflito com o nome de exibição de outro autor convidado." - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "Observação: se você quiser excluir o autor convidado e todas as postagens dele, exclua as postagens primeiro e depois volte para excluir o autor convidado." - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "Fazendo algo suspeito, não?" - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "O autor convidado não pode ser excluído porque ele não existe." - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "Campo personalizado excluído." - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "Campo personalizado atualizado." - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "" - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "" - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "" - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "" - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "" - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "" - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "" -msgstr[1] "" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "" - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "" - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "" - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "" - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "" - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "" - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "" - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "" -msgstr[1] "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "" - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "" - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "" - -#: build/index.js:1 -#: src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "" diff --git a/languages/co-authors-plus-pt_PT-1fdf421c05c1140f6d71444ea2b27638.json b/languages/co-authors-plus-pt_PT-1fdf421c05c1140f6d71444ea2b27638.json deleted file mode 100644 index 0dda8252..00000000 --- a/languages/co-authors-plus-pt_PT-1fdf421c05c1140f6d71444ea2b27638.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2017-11-28 10:18:47+0000","generator":"WP-CLI\/2.8.1","source":"src\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"pt","plural-forms":"nplurals=2; plural=n != 1;"},"Authors":["Autores"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-pt_PT-dfbff627e6c248bcb3b61d7d06da9ca9.json b/languages/co-authors-plus-pt_PT-dfbff627e6c248bcb3b61d7d06da9ca9.json deleted file mode 100644 index 561c5685..00000000 --- a/languages/co-authors-plus-pt_PT-dfbff627e6c248bcb3b61d7d06da9ca9.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2017-11-28 10:18:47+0000","generator":"WP-CLI\/2.8.1","source":"build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"pt","plural-forms":"nplurals=2; plural=n != 1;"},"Authors":["Autores"],"Move Up":[""],"Move down":[""],"Remove Author":[""],"Select An Author":[""]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-pt_PT.mo b/languages/co-authors-plus-pt_PT.mo deleted file mode 100644 index e024a791..00000000 Binary files a/languages/co-authors-plus-pt_PT.mo and /dev/null differ diff --git a/languages/co-authors-plus-pt_PT.po b/languages/co-authors-plus-pt_PT.po deleted file mode 100644 index 2dc87daf..00000000 --- a/languages/co-authors-plus-pt_PT.po +++ /dev/null @@ -1,657 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Plugins - Co-Authors Plus - Stable (latest release)\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-09-18T17:14:46+00:00\n" -"PO-Revision-Date: 2017-11-28 10:18:47+0000\n" -"Language: pt\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: GlotPress/4.0.0-alpha.7\n" - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "Mohammad Jangda, Daniel Bachhuber, Automattic" - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "Permite artigos com mais do que um autor. Este plugin é uma versão expandida do plugin Co-Authors, desenvolvido por Weston Ruter." - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "Co-Authors Plus" - -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" -msgstr "Artigos de %s" - -#: template-tags.php:91 -msgid " and " -msgstr " e " - -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" -msgstr "Visitar site de %s" - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "Nome" - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "Adicionar novo" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "Apagar" - -#: php/class-coauthors-plus.php:1395 -#: php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "Editar" - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "Filtrar" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "Slug" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "Meu" - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "Nome exibido" - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "ID" - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "Guardar" - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "Por favor especifique um login de co-autor válido" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "Por favor especifique um nome de utilizador válido" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "Ver artigos" - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "Sem conta ligada" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "Com conta ligada" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "Mostrar todos" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "Co-autor" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "Co-autores" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "Criar perfil" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "Editar perfil" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "Nenhum utilizador com essa ID" - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "Co-autor a re-atribuir não existe" - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "Autor convidado não existe" - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "o user_login não pode duplicar autores convidados ou utilizadores mapeados já existentes" - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s é um campo obrigatório" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "Informação biográfica" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "Jabber/Google Talk" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "Yahoo IM" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "AIM" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "Site" - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "Conta ligada" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "Email" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "Apelido" - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "Nome" - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "Mostrar conflictos de nomes com os nomes de outros autore convidados." - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "Autores convidados não podem ser criados sem nomes públicos." - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "--Não mapeado--" - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "Mapeamento de utilizador de WordPress" - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "Confirmar eliminação" - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "Remover crédito dos artigos (deixando os artigos no seu estado actual)." - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "Deixar os artigos atribuídos ao autor, %s." - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "Atribuir a outro co-autor:" - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "Nota: se pretende eliminar o autor convidado e todos os seus artigos, deveria eliminar primeiro os artigos e depois voltar aqui para eliminar o autor." - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "Especificou este autor convidado para ser eliminado:" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "Informações de contacto" - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "URL única" - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr "Autor convidado eliminado." - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "Por favor escolha uma opção." - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "O co-autor não existe. Tentar novamente?" - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "O autor convidado não pode ser eliminado porque não existe." - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "Não tem permissões para executar essa acção." - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "Operação ilegal" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "Autor convidado actualizado. Pré-visualizar perfil" - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "j M, Y @ H:i" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "Autor convidado agendado para: %1$s. Pré-visualizar perfil" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "Autor convidado submetido. Pré-visualizar perfil" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "Autor convidado guardado." - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "Autor convidado restaurado da versão %s" - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "Autor convidado actualizado." - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "Campo personalizado excluído." - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "Campo personalizado actualizado." - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "Autor convidado actualizado. Ver perfil" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "Adicionar novo" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "Sobre o autor convidado" - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "Actualizar autor convidado" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "Nenhum autor convidado encontrado no lixo" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "Nenhum autor convidado encontrado" - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "Pesquisar autores convidados" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "Ver autor convidado" - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "Novo autor convidado" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "Editar autor convidado" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "Adicionar autor convidado" - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "Todos os autors convidados" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "Autores convidados" - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "Autor convidado" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "Spam: %s" - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "Eliminar: %s" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "Lixo: %s" - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "Ligação permanente: %s" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] Pingback: \"%2$s\"" - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "Pode visualizar todos os pingbacks para o seu artigo aqui: " - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] Trackback: \"%2$s\"" - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "Pode visualizar todos os trackbacks para este artigo aqui: " - -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "Excerto: " - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "Site: %1$s (IP: %2$s , %3$s)" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] Comentário: \"%2$s\"" - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "Pode visualizar todos os comentários a este artigo aqui: " - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "Comentário: " - -#. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 -msgid "URL : %s" -msgstr "URL : %s" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "Autor: %1$s (IP: %2$s , %3$s)" - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "Pesquisar um autor" - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "Clique para mudar este autor ou arraste-o para mudar a sua posição" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "Tem a certeza de que quer remover este autor?" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "Eliminar" - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "Ver artigos deste autor" - -#: php/class-coauthors-plus.php:567 -#: php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "Artigos" - -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 -#: build/index.js:1 -#: src/index.js:20 -msgid "Authors" -msgstr "Autores" - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "Novo pingback em \"%s\"" - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "Novo comentário em \"%s\"" - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "Novo trackback em \"%s\"" - -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "Clique num autor para o mudar. Arraste para mudar a ordem. Clique em Remover para o remover." - -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "Nenhum co-autor existe para esse termo" - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "" - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "" - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "" - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "" - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "" - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "" - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "" -msgstr[1] "" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "" - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "" - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "" - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "" - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "" - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "" - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "" - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "" -msgstr[1] "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "" - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "" - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "" - -#: build/index.js:1 -#: src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "" diff --git a/languages/co-authors-plus-ru_RU-1fdf421c05c1140f6d71444ea2b27638.json b/languages/co-authors-plus-ru_RU-1fdf421c05c1140f6d71444ea2b27638.json deleted file mode 100644 index 22b6435d..00000000 --- a/languages/co-authors-plus-ru_RU-1fdf421c05c1140f6d71444ea2b27638.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2023-08-29 05:01:52+0000","generator":"WP-CLI\/2.8.1","source":"src\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ru","plural-forms":"nplurals=3; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);"},"Authors":["\u0410\u0432\u0442\u043e\u0440\u044b"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-ru_RU-dfbff627e6c248bcb3b61d7d06da9ca9.json b/languages/co-authors-plus-ru_RU-dfbff627e6c248bcb3b61d7d06da9ca9.json deleted file mode 100644 index 721d371d..00000000 --- a/languages/co-authors-plus-ru_RU-dfbff627e6c248bcb3b61d7d06da9ca9.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2023-08-29 05:01:52+0000","generator":"WP-CLI\/2.8.1","source":"build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"ru","plural-forms":"nplurals=3; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);"},"Select An Author":["\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u0430\u0432\u0442\u043e\u0440\u0430"],"Remove Author":["\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u0440\u0430"],"Move down":["\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u043d\u0438\u0436\u0435"],"Move Up":["\u041f\u0435\u0440\u0435\u043c\u0435\u0441\u0442\u0438\u0442\u044c \u0432\u044b\u0448\u0435"],"Authors":["\u0410\u0432\u0442\u043e\u0440\u044b"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-ru_RU.mo b/languages/co-authors-plus-ru_RU.mo deleted file mode 100644 index 0e896f24..00000000 Binary files a/languages/co-authors-plus-ru_RU.mo and /dev/null differ diff --git a/languages/co-authors-plus-ru_RU.po b/languages/co-authors-plus-ru_RU.po deleted file mode 100644 index d5e2301e..00000000 --- a/languages/co-authors-plus-ru_RU.po +++ /dev/null @@ -1,659 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Plugins - Co-Authors Plus - Stable (latest release)\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-09-18T17:14:46+00:00\n" -"PO-Revision-Date: 2023-08-29 05:01:52+0000\n" -"Language: ru\n" -"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : ((n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14)) ? 1 : 2);\n" -"X-Generator: GlotPress/4.0.0-alpha.7\n" - -#: build/index.js:1 -#: src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "Выбрать автора" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "Удалить автора" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "Переместить ниже" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "Переместить выше" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "Автор:" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "-- Создано гостевым автором #%s" - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "-- Не удалось создать гостевого автора: %s" - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "-- Не найдено; создание профиля." - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "-- Автор уже существует (ID #%s); пропускается." - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "Email" - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "Логин" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "Автор с таким именем пользователя уже зарегистрирован в WordPress, пожалуйста, вернитесь назад и свяжите эти профили." - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "Существует %d запись, ассоциированная с этим гостевым автором. Что следует сделать с этой записью?" -msgstr[1] "Существует %d записи, ассоциированные с этим гостевым автором. Что следует сделать с этими записями?" -msgstr[2] "Существует %d записей, ассоциированных с этим гостевым автором. Что следует сделать с этими записями?" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "С этим гостевым автором не связано ни одной публикации." - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "Удалить гостевых авторов" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "Удалить аватар" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "Использовать аватар" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "Установить аватар" - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "Аватар" - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "Имена соавторов для сохранения." - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "Текст для поиска." - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "Автор: %s" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "Все авторы" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "https://automattic.com" - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "Mohammad Jangda, Daniel Bachhuber, Automattic" - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "Плагин позволяет назначить записи сразу несколько авторов. Этот плагин является расширенной версией плагина Co-Authors" - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "https://wordpress.org/plugins/co-authors-plus/" - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "Соавторство" - -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" -msgstr "Посетить сайт %s’s" - -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" -msgstr "Записи автора %s" - -#: template-tags.php:91 -msgid " and " -msgstr " и " - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "Все сделано! Было затронуто %d запись." -msgstr[1] "Все сделано! Было затронуто %d записи." -msgstr[2] "Все сделано! Было затронуто %d записей." - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "Обновление - Добавлена %1$s подпись для записи #%2$d" - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "Пропускаем - Для записи #%1$d уже назначены соавторы: %2$s" - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "Пожалуйста, укажите корректное имя пользователя" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "Пожалуйста, укажите корректный user_login" - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "Фильтр" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "Просмотреть записи" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "Удалить" - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "Не найдено ни одного подходящего соавтора." - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "Без привязанной учетной записи" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "С привязанной учетной записью" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "Показать все" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "Соавтор" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "Соавторы" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "Создать профиль" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "Редактировать профиль" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "Пользовать с таким ID не найден" - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "Переназначенный соавтор не существует" - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "Такой гостевой автор не существует" - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "user_login не может повторяться с уже существующим пользователем" - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s обязательное поле" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "Биография" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "Jabber / Google Talk" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "Yahoo IM" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "AIM" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "Сайт" - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "Привязанная учетная запись" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "E-mail" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "Ярлык" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "Фамилия" - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "Имя" - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "Отображаемое имя" - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "ID" - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "Это отображаемое имя уже существует для другого гостевого автора" - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "Нельзя создать гостевого автора без отображаемого имени." - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "-- Не привязан -- " - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "Связь с пользователями WordPress" - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "Добавить новое" - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "Подтвердите удаление" - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "Удалить подпись из записей (но оставить текущий статус для каждой записи)" - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "Оставить привязку записей к пользователю %s." - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "Назначить другого соавтора:" - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "Если вы хотите удалить гостевого автора и все его записи, вам необходимо удалить сначала эти записи, а затем вернуться и удалить автора." - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "Вы указали этого гостевого автора для удаления:" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "Контакты" - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "Имя" - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "Уникальный ярылк" - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "Сохранить" - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr "Гостевой автор удален" - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "Пожалуйста, отметьте опцию." - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "Соавтор не существует. Попробуйте еще раз." - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "Гостевой автор не существует поэтому не может быть удален" - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "У вас нет прав не выполнение этого действия." - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "Что-то пошло не так" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "Гостевой автор обновлен. Просмотреть профиль" - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G:i" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "Гостевой автор запланирован для: %1$s. Просмотреть профиль" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "Гостевой автор отправлен. Просмотреть профиль" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "Гостевой автор сохранен." - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "Гостевой автор восстановлен из редакции %s" - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "Гостевой автор обновлен." - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "Произвольное поле удалено." - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "Произвольное поле обновлено." - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "Гостевой автор обновлен. Просмотреть профиль" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "Добавить нового" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "О гостевом авторе" - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "Обновить гостевого автора" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "В корзине нет гостевых авторов" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "Гостевые авторы не найдены" - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "Поиск" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "Просмотреть гостевого автора" - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "Новый гостевой автор" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "Редактировать гостевого автора" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "Добавить нового гостевого автора" - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "Все гостевые авторы" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "Гостевые авторы" - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "Гостевой автор" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "Отправить в спам: %s" - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "Удалить: %s" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "В корзину: %s" - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "Постоянная ссылка: %s" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] Уведомление: \"%2$s\"" - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "Вы можете просмотреть все уведомления к этой записи здесь:" - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "Новое уведомление к вашей записи \"%s\"" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] Обратная ссылка: \"%2$s\"" - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "Вы можете просмотреть все обратные ссылки к этой записи здесь:" - -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "Отрывок:" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "Сайт: %1$s (IP: %2$s , %3$s)" - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "Новая обратная ссылка к вашей записи \"%s\"" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] Комментарий: \"%2$s\"" - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "Вы можете просмотреть все комментарии к этой записи здесь:" - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "Комментарий:" - -#. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 -msgid "URL : %s" -msgstr "URL : %s" - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "Email : %s" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "Автор : %1$s (IP: %2$s , %3$s)" - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "Новый комментарий к вашей записи \"%s\"" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "Мои" - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "Поиск автора" - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "Щелкните для изменения автора или перетащите для изменения позиции" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "Вы уверены, что хотите удалить этого автора?" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "Убрать" - -#: php/class-coauthors-plus.php:1395 -#: php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "Изменить" - -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "Для этого термина не существует соавтора" - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "Просмотреть записи этого автора" - -#: php/class-coauthors-plus.php:567 -#: php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "Записи" - -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "Щелкните на автора для изменения. Перетащите для изменения их порядка. Для удаления щелкните на Удалить." - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "Примечание: чтобы редактировать авторов записей, пожалуйста, включите JavaScript или используйте браузер с поддержкой JavaScriptt" - -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 -#: build/index.js:1 -#: src/index.js:20 -msgid "Authors" -msgstr "Авторы" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "" - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "" diff --git a/languages/co-authors-plus-sv_SE-1fdf421c05c1140f6d71444ea2b27638.json b/languages/co-authors-plus-sv_SE-1fdf421c05c1140f6d71444ea2b27638.json deleted file mode 100644 index 8801dabf..00000000 --- a/languages/co-authors-plus-sv_SE-1fdf421c05c1140f6d71444ea2b27638.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2023-08-28 08:47:34+0000","generator":"WP-CLI\/2.8.1","source":"src\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"sv_SE","plural-forms":"nplurals=2; plural=n != 1;"},"Authors":["F\u00f6rfattare"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-sv_SE-dfbff627e6c248bcb3b61d7d06da9ca9.json b/languages/co-authors-plus-sv_SE-dfbff627e6c248bcb3b61d7d06da9ca9.json deleted file mode 100644 index e465cf8f..00000000 --- a/languages/co-authors-plus-sv_SE-dfbff627e6c248bcb3b61d7d06da9ca9.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2023-08-28 08:47:34+0000","generator":"WP-CLI\/2.8.1","source":"build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"sv_SE","plural-forms":"nplurals=2; plural=n != 1;"},"Select An Author":["V\u00e4lj en f\u00f6rfattare"],"Remove Author":["Ta bort f\u00f6rfattare"],"Move down":["Flytta ner"],"Move Up":["Flytta upp"],"Authors":["F\u00f6rfattare"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-sv_SE.mo b/languages/co-authors-plus-sv_SE.mo deleted file mode 100644 index e0447e0f..00000000 Binary files a/languages/co-authors-plus-sv_SE.mo and /dev/null differ diff --git a/languages/co-authors-plus-sv_SE.po b/languages/co-authors-plus-sv_SE.po deleted file mode 100644 index 120d5076..00000000 --- a/languages/co-authors-plus-sv_SE.po +++ /dev/null @@ -1,657 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Plugins - Co-Authors Plus - Stable (latest release)\n" -"Report-Msgid-Bugs-To: \n" -"Last-Translator: \n" -"Language-Team: \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-09-18T17:14:46+00:00\n" -"PO-Revision-Date: 2023-08-28 08:47:34+0000\n" -"Language: sv_SE\n" -"Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: GlotPress/4.0.0-alpha.7\n" - -#: build/index.js:1 -#: src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "Välj en författare" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "Ta bort författare" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "Flytta ner" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "Flytta upp" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "Skriven av" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "-- Skapad som gästförfattare #%s" - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "-- Misslyckades att skapa gästförfattare: %s" - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "E-post" - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "Inloggningsnamn" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "Det finns inga inlägg associerade med denna gästförfattare." - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "Ta bort gästförfattare" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "Ta bort profilbild" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "Använd profilbild" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "Ställ in profilbild" - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "Profilbild" - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "Författare: %s" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "Alla författare" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "https://automattic.com" - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "Mohammad Jangda, Daniel Bachhuber, Automattic" - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "Tillåter att ett inlägg tilldelas flera författare. Detta tillägg är en vidareutvecklad version av \"Co-Authors\"-tillägget skrivet av Weston Ruter." - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "https://wordpress.org/plugins/co-authors-plus/" - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "Co-Authors Plus" - -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" -msgstr "Besök %s’s webbplats" - -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" -msgstr "Publicerat av %s" - -#: template-tags.php:91 -msgid " and " -msgstr " och " - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "Ange ett giltigt medförfattare alias" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "Specificera en giltig user_login" - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "Filtrera" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "Visa inlägg" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "Ta bort" - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "Inga matchande medförfattare hittades." - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "Utan länkat konto" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "Med länkat konto" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "Visa alla" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "Medförfattare" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "Medförfattare" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "Skapa profil" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "Redigera profil" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "Ingen användare finns med detta ID." - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "Tilldelad gästförfattare existerar inte" - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "Gästförfattare finns inte" - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "\"user_login\" kan inte vara det samma som en existerande gästförfattare eller kopplad användare" - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s är ett obligatoriskt fält" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "Biografisk information" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "Jabber/Google Talk" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "YahooIM" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "AIM" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "Webbplats" - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "Länkat konto" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "E-post" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "Slug" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "Efternamn" - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "Förnamn" - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "Visningsnamn" - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "ID" - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "Visningsnamn skapar konflikt med en annan gästförfattares visningsnamn." - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "Gästförfattare kan inte skapas utan visningsnamn." - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "-- Inte kopplad --" - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "WordPress Användarkoppling" - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "Lägg till ny" - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "Bekräfta borttagning" - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "Ta bort signatur från inlägg (men låt varje inlägg behålla sin nuvarande status)." - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "Lämna inlägg tilldelade till den kopplade användaren, %s." - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "Tilldela en annan gästförfattare:" - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "Observera: Om du vill radera gästförfattaren och alla tillhörande inlägg så borde du först radera inläggen och sedan återvända och radera gästförfattaren." - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "Du har inte angivit denna gästförfattare för radering:" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "Kontaktinformation" - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "Namn" - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "Unik slug" - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "Spara" - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr "Gästförfattare borttagen." - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "Se till att välja ett alternativ." - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "Medförfattare finns inte. Försök igen?" - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "Gästförfattare kan inte tas bort eftersom den inte finns." - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "Du har inte behörighet att utföra denna åtgärd." - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "Nu gör du allt något skumt, eller hur?" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "Gästförfattare uppdaterad. Förhandsvisa profil" - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "M j, Y @ G:i" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "Gästförfattare schemalagd för: %1$s. Förhandsvisa profil" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "Gästförfattare inskickad. Förhandsvisa profil" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "Gästförfattare sparad." - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "Gästförfattare återställd till version från %s" - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "Gästförfattare uppdaterat." - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "Anpassat fält borttaget." - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "Anpassat fält uppdaterat." - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "Gästförfattare uppdaterad. Visa profil" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "Lägg till ny" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "Om gästförfattaren" - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "Uppdatera gästförfattare" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "Inga gästförfattare hittades i papperskorgen" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "Inga gästförfattare hittades" - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "Sök gästförfattare" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "Visa gästförfattare" - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "Ny gästförfattare" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "Redigera gästförfattare" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "Lägg till ny gästförfattare" - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "Alla gästförfattare" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "Gästförfattare" - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "Gästförfattare" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "Märk som skräppost: %s" - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "Ta bort det: %s" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "Lägg i papperskorgen: %s" - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "Permalänk: %s" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "[%1$s] Pingback: ”%2$s”" - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "Du kan se alla pingbacks på detta inlägg här: " - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "Ny pingback på ditt inlägg \"%s\"" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "[%1$s] Trackback: ”%2$s”" - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "Du kan se alla trackbacks på detta inlägg här: " - -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "Utdrag: " - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "Webbplats: %1$s (IP: %2$s, %3$s)" - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "Ny trackback på ditt inlägg ”%s”" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "[%1$s] Kommentar: ”%2$s”" - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "Du kan se alla kommentarer på detta inlägg här: " - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "Kommentar: " - -#. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 -msgid "URL : %s" -msgstr "URL : %s" - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "E-post: %s" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "Författare : %1$s (IP: %2$s, %3$s)" - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "Ny kommentar till ditt inlägg ”%s”" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "Min" - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "Sök efter en författare" - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "Klicka för att ändra denna författare, eller drag för att ändra deras position" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "Är du säker att du vill ta bort denna författare?" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "Ta bort" - -#: php/class-coauthors-plus.php:1395 -#: php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "Redigera" - -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "Ingen medförfattare finns för den termen" - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "Visa alla inlägg av denna författare" - -#: php/class-coauthors-plus.php:567 -#: php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "Inlägg" - -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "Klicka på författare för att ändra dem. Drag för att ändra ordning på dem. Klicka på Ta bort för att ta bort dem." - -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 -#: build/index.js:1 -#: src/index.js:20 -msgid "Authors" -msgstr "Författare" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "" - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "" - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "" - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "" - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "" -msgstr[1] "" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "" - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "" - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "" - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "" - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "" -msgstr[1] "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "" - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "" diff --git a/languages/co-authors-plus-uk-1fdf421c05c1140f6d71444ea2b27638.json b/languages/co-authors-plus-uk-1fdf421c05c1140f6d71444ea2b27638.json deleted file mode 100644 index ecf98d0b..00000000 --- a/languages/co-authors-plus-uk-1fdf421c05c1140f6d71444ea2b27638.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2014-03-30 19:29+0200","generator":"WP-CLI\/2.8.1","source":"src\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"uk","plural-forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"},"Authors":["\u0410\u0432\u0442\u043e\u0440\u0438"]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-uk-dfbff627e6c248bcb3b61d7d06da9ca9.json b/languages/co-authors-plus-uk-dfbff627e6c248bcb3b61d7d06da9ca9.json deleted file mode 100644 index 196592ac..00000000 --- a/languages/co-authors-plus-uk-dfbff627e6c248bcb3b61d7d06da9ca9.json +++ /dev/null @@ -1 +0,0 @@ -{"translation-revision-date":"2014-03-30 19:29+0200","generator":"WP-CLI\/2.8.1","source":"build\/index.js","domain":"messages","locale_data":{"messages":{"":{"domain":"messages","lang":"uk","plural-forms":"nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);"},"Authors":["\u0410\u0432\u0442\u043e\u0440\u0438"],"Move Up":[""],"Move down":[""],"Remove Author":[""],"Select An Author":[""]}}} \ No newline at end of file diff --git a/languages/co-authors-plus-uk.mo b/languages/co-authors-plus-uk.mo deleted file mode 100644 index af33a1a9..00000000 Binary files a/languages/co-authors-plus-uk.mo and /dev/null differ diff --git a/languages/co-authors-plus-uk.po b/languages/co-authors-plus-uk.po deleted file mode 100644 index 5a7379d7..00000000 --- a/languages/co-authors-plus-uk.po +++ /dev/null @@ -1,662 +0,0 @@ -msgid "" -msgstr "" -"Project-Id-Version: Co-Authors Plus\n" -"Report-Msgid-Bugs-To: http://wordpress.org/tag/co-authors-plus\n" -"Last-Translator: Jurko Chervony \n" -"Language-Team: skinik \n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2014-03-17 15:59:18+00:00\n" -"PO-Revision-Date: 2014-03-30 19:29+0200\n" -"Language: uk\n" -"X-Generator: Poedit 1.6.4\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -"X-Poedit-SourceCharset: UTF-8\n" -"X-Poedit-Basepath: ..\n" -"X-Poedit-SearchPath-0: .\n" - -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 -#: build/index.js:1 -#: src/index.js:20 -msgid "Authors" -msgstr "Автори" - -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 -msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." -msgstr "" - -#: php/class-coauthors-plus.php:567 -#: php/class-coauthors-wp-list-table.php:177 -msgid "Posts" -msgstr "Публікації" - -#: php/class-coauthors-plus.php:586 -msgid "View posts by this author" -msgstr "Переглянути всі матеріали автора" - -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 -msgid "No co-author exists for that term" -msgstr "" - -#: php/class-coauthors-plus.php:1395 -#: php/class-coauthors-wp-list-table.php:239 -msgid "Edit" -msgstr "Редагувати" - -#: php/class-coauthors-plus.php:1396 -msgid "Remove" -msgstr "Видалити" - -#: php/class-coauthors-plus.php:1397 -msgid "Are you sure you want to remove this author?" -msgstr "" - -#: php/class-coauthors-plus.php:1398 -msgid "Click to change this author, or drag to change their position" -msgstr "" - -#: php/class-coauthors-plus.php:1399 -msgid "Search for an author" -msgstr "Шукати автора" - -#: php/class-coauthors-plus.php:1441 -msgid "Mine" -msgstr "Моє" - -#. translators: Post title. -#: co-authors-plus.php:90 -msgid "New comment on your post \"%s\"" -msgstr "" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 -msgid "Author : %1$s (IP: %2$s , %3$s)" -msgstr "" - -#. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 -msgid "URL : %s" -msgstr "" - -#: co-authors-plus.php:99 -msgid "Comment: " -msgstr "Коментар:" - -#: co-authors-plus.php:100 -msgid "You can see all comments on this post here: " -msgstr "" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 -msgid "[%1$s] Comment: \"%2$s\"" -msgstr "" - -#. translators: Post title. -#: co-authors-plus.php:105 -msgid "New trackback on your post \"%s\"" -msgstr "" - -#. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 -msgid "Website: %1$s (IP: %2$s , %3$s)" -msgstr "" - -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 -msgid "Excerpt: " -msgstr "" - -#: co-authors-plus.php:111 -msgid "You can see all trackbacks on this post here: " -msgstr "" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 -msgid "[%1$s] Trackback: \"%2$s\"" -msgstr "" - -#. translators: Post title. -#: co-authors-plus.php:116 -msgid "New pingback on your post \"%s\"" -msgstr "" - -#: co-authors-plus.php:122 -msgid "You can see all pingbacks on this post here: " -msgstr "" - -#. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 -msgid "[%1$s] Pingback: \"%2$s\"" -msgstr "" - -#. translators: Comment URL. -#: co-authors-plus.php:128 -msgid "Permalink: %s" -msgstr "" - -#. translators: URL for trashing a comment. -#: co-authors-plus.php:131 -msgid "Trash it: %s" -msgstr "" - -#. translators: URL for deleting a comment. -#: co-authors-plus.php:134 -msgid "Delete it: %s" -msgstr "" - -#. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 -msgid "Spam it: %s" -msgstr "" - -#: php/class-coauthors-guest-authors.php:89 -#: php/class-coauthors-guest-authors.php:1547 -#: php/class-coauthors-guest-authors.php:1620 -msgid "Guest Author" -msgstr "Гостьовий автор" - -#: php/class-coauthors-guest-authors.php:90 -msgid "Guest Authors" -msgstr "Гостьові автори" - -#: php/class-coauthors-guest-authors.php:91 -msgid "All Guest Authors" -msgstr "Всі гостьові автори" - -#: php/class-coauthors-guest-authors.php:92 -msgid "Add New Guest Author" -msgstr "Додати нового гостьового автора" - -#: php/class-coauthors-guest-authors.php:93 -msgid "Edit Guest Author" -msgstr "Редагувати гостьового автора" - -#: php/class-coauthors-guest-authors.php:94 -msgid "New Guest Author" -msgstr "Новий гостьовий автор" - -#: php/class-coauthors-guest-authors.php:95 -msgid "View Guest Author" -msgstr "Переглянути гостьового автора" - -#: php/class-coauthors-guest-authors.php:96 -msgid "Search Guest Authors" -msgstr "Шукати гостьових авторів" - -#: php/class-coauthors-guest-authors.php:97 -msgid "No guest authors found" -msgstr "Не знайдено гостьових авторів" - -#: php/class-coauthors-guest-authors.php:98 -msgid "No guest authors found in Trash" -msgstr "В кошику не знайдено гостьових авторів" - -#: php/class-coauthors-guest-authors.php:99 -msgid "Update Guest Author" -msgstr "Оновити гостьового автора" - -#: php/class-coauthors-guest-authors.php:100 -msgid "About the guest author" -msgstr "Про гостьового автора" - -#: php/class-coauthors-guest-authors.php:114 -msgctxt "guest author" -msgid "Add New" -msgstr "Додати нового" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:168 -#: php/class-coauthors-guest-authors.php:175 -msgid "Guest author updated. View profile" -msgstr "Гостьового автора оновлено. Переглянути" - -#: php/class-coauthors-guest-authors.php:169 -msgid "Custom field updated." -msgstr "" - -#: php/class-coauthors-guest-authors.php:170 -msgid "Custom field deleted." -msgstr "" - -#: php/class-coauthors-guest-authors.php:171 -msgid "Guest author updated." -msgstr "" - -#. translators: %s: date and time of the revision -#: php/class-coauthors-guest-authors.php:173 -msgid "Guest author restored to revision from %s" -msgstr "" - -#: php/class-coauthors-guest-authors.php:176 -msgid "Guest author saved." -msgstr "" - -#. translators: Guest author URL -#: php/class-coauthors-guest-authors.php:178 -msgid "Guest author submitted. Preview profile" -msgstr "" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:181 -msgid "Guest author scheduled for: %1$s. Preview profile" -msgstr "" - -#. translators: Publish box date format, see http://php.net/date -#: php/class-coauthors-guest-authors.php:183 -msgid "M j, Y @ G:i" -msgstr "" - -#. translators: Guest author profile preview URL. -#: php/class-coauthors-guest-authors.php:187 -msgid "Guest author updated. Preview profile" -msgstr "" - -#: php/class-coauthors-guest-authors.php:205 -#: php/class-coauthors-guest-authors.php:244 -#: php/class-coauthors-guest-authors.php:472 -msgid "Doin' something fishy, huh?" -msgstr "" - -#: php/class-coauthors-guest-authors.php:209 -#: php/class-coauthors-guest-authors.php:249 -msgid "You don't have permission to perform this action." -msgstr "" - -#: php/class-coauthors-guest-authors.php:255 -#: php/class-coauthors-guest-authors.php:478 -msgid "Guest author can't be deleted because it doesn't exist." -msgstr "" - -#: php/class-coauthors-guest-authors.php:271 -msgid "Co-author does not exists. Try again?" -msgstr "" - -#: php/class-coauthors-guest-authors.php:281 -msgid "Please make sure to pick an option." -msgstr "" - -#: php/class-coauthors-guest-authors.php:433 -msgid "Guest author deleted." -msgstr "Гостьового автора видалено." - -#: php/class-coauthors-guest-authors.php:452 -msgid "Save" -msgstr "Зберегти" - -#: php/class-coauthors-guest-authors.php:453 -msgid "Unique Slug" -msgstr "" - -#: php/class-coauthors-guest-authors.php:455 -msgid "Name" -msgstr "" - -#: php/class-coauthors-guest-authors.php:456 -msgid "Contact Info" -msgstr "Контактна інформація" - -#: php/class-coauthors-guest-authors.php:488 -msgid "You have specified this guest author for deletion:" -msgstr "" - -#: php/class-coauthors-guest-authors.php:494 -msgid "Note: If you'd like to delete the guest author and all of their posts, you should delete their posts first and then come back to delete the guest author." -msgstr "" - -#: php/class-coauthors-guest-authors.php:523 -msgid "Reassign to another co-author:" -msgstr "" - -#. translators: Name of a linked user account. -#: php/class-coauthors-guest-authors.php:530 -msgid "Leave posts assigned to the mapped user, %s." -msgstr "" - -#: php/class-coauthors-guest-authors.php:535 -msgid "Remove byline from posts (but leave each post in its current status)." -msgstr "" - -#: php/class-coauthors-guest-authors.php:543 -#: php/class-coauthors-guest-authors.php:545 -msgid "Confirm Deletion" -msgstr "Підтвердити видалення" - -#: php/class-coauthors-guest-authors.php:556 -msgid "Add New" -msgstr "Додати нового" - -#: php/class-coauthors-guest-authors.php:626 -msgid "WordPress User Mapping" -msgstr "" - -#: php/class-coauthors-guest-authors.php:631 -msgid "-- Not mapped --" -msgstr "-- Не визначено --" - -#: php/class-coauthors-guest-authors.php:775 -#: php/class-coauthors-guest-authors.php:786 -msgid "Guest authors cannot be created without display names." -msgstr "" - -#: php/class-coauthors-guest-authors.php:806 -msgid "Display name conflicts with another guest author display name." -msgstr "" - -#: php/class-coauthors-guest-authors.php:1027 -#: php/class-coauthors-guest-authors.php:1577 -msgid "ID" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1034 -#: php/class-coauthors-guest-authors.php:1579 -#: php/class-coauthors-wp-list-table.php:172 -msgid "Display Name" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1040 -#: php/class-coauthors-guest-authors.php:1581 -#: php/class-coauthors-wp-list-table.php:173 -msgid "First Name" -msgstr "Ім’я" - -#: php/class-coauthors-guest-authors.php:1045 -#: php/class-coauthors-guest-authors.php:1582 -#: php/class-coauthors-wp-list-table.php:174 -msgid "Last Name" -msgstr "Прізвище" - -#: php/class-coauthors-guest-authors.php:1050 -msgid "Slug" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1057 -#: php/class-coauthors-wp-list-table.php:175 -msgid "E-mail" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1063 -#: php/class-coauthors-wp-list-table.php:176 -msgid "Linked Account" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1068 -#: php/class-coauthors-guest-authors.php:1583 -msgid "Website" -msgstr "Сайт" - -#: php/class-coauthors-guest-authors.php:1584 -msgid "AIM" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1585 -msgid "Yahoo IM" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1586 -msgid "Jabber / Google Talk" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1074 -#: php/class-coauthors-guest-authors.php:1587 -msgid "Biographical Info" -msgstr "Опис" - -#. translators: Name of a form field. -#: php/class-coauthors-guest-authors.php:1251 -msgid "%s is a required field" -msgstr "%s — обов’язкове поле" - -#: php/class-coauthors-guest-authors.php:1257 -msgid "user_login cannot duplicate existing guest author or mapped user" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1313 -msgid "Guest author does not exist" -msgstr "Гостьовий автор не існує" - -#: php/class-coauthors-guest-authors.php:1328 -msgid "Reassignment co-author does not exist" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1368 -msgid "No user exists with that ID" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1431 -msgid "Edit Profile" -msgstr "Редагувати профіль" - -#: php/class-coauthors-guest-authors.php:1440 -msgid "Create Profile" -msgstr "Створити обліковий запис" - -#: php/class-coauthors-wp-list-table.php:23 -msgid "Co-Authors" -msgstr "" - -#: php/class-coauthors-wp-list-table.php:24 -msgid "Co-Author" -msgstr "" - -#: php/class-coauthors-wp-list-table.php:89 -msgid "Show all" -msgstr "Показати все" - -#: php/class-coauthors-wp-list-table.php:90 -msgid "With linked account" -msgstr "" - -#: php/class-coauthors-wp-list-table.php:91 -msgid "Without linked account" -msgstr "" - -#: php/class-coauthors-wp-list-table.php:242 -msgid "Delete" -msgstr "Видалити" - -#: php/class-coauthors-wp-list-table.php:244 -msgid "View Posts" -msgstr "Переглянути мареріали" - -#: php/class-coauthors-wp-list-table.php:291 -msgid "Filter" -msgstr "Фільтрувати" - -#: php/class-wp-cli.php:231 -msgid "Please specify a valid user_login" -msgstr "" - -#: php/class-wp-cli.php:235 -msgid "Please specify a valid co-author login" -msgstr "" - -#: template-tags.php:91 -msgid " and " -msgstr " та " - -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" -msgstr "Матеріали автора %s" - -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" -msgstr "Відвідати %s’s сайт" - -#. Plugin Name of the plugin -msgid "Co-Authors Plus" -msgstr "" - -#. Description of the plugin -msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." -msgstr "" - -#. Author of the plugin -msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" -msgstr "" - -#. Plugin URI of the plugin -msgid "https://wordpress.org/plugins/co-authors-plus/" -msgstr "" - -#. Author URI of the plugin -msgid "https://automattic.com" -msgstr "" - -#. translators: Comment author email address. -#: co-authors-plus.php:94 -msgid "Email : %s" -msgstr "" - -#. translators: Comment author IP address. -#: co-authors-plus.php:98 -msgid "Whois : https://whois.arin.net/rest/ip/%s" -msgstr "" - -#: php/class-coauthors-endpoint.php:65 -msgid "Text to search." -msgstr "" - -#: php/class-coauthors-endpoint.php:70 -msgid "Names of existing co-authors to exclude from search results." -msgstr "" - -#: php/class-coauthors-endpoint.php:113 -msgid "Names of co-authors to save." -msgstr "" - -#: php/class-coauthors-guest-authors.php:101 -msgid "Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:102 -msgid "Set Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:103 -msgid "Use Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:104 -msgid "Remove Avatar" -msgstr "" - -#: php/class-coauthors-guest-authors.php:486 -msgid "Delete Guest Authors" -msgstr "" - -#: php/class-coauthors-guest-authors.php:492 -msgid "There are no posts associated with this guest author." -msgstr "" - -#. translators: Count of posts -#: php/class-coauthors-guest-authors.php:497 -msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" -msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#: php/class-coauthors-guest-authors.php:800 -msgid "There is a WordPress user with the same username as this guest author, please go back and link them in order to update." -msgstr "" - -#: php/class-coauthors-guest-authors.php:1578 -msgid "Login Name" -msgstr "" - -#: php/class-coauthors-guest-authors.php:1580 -msgid "Email" -msgstr "" - -#: php/class-coauthors-plus.php:198 -msgid "All Authors" -msgstr "" - -#: php/class-coauthors-plus.php:465 -msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" -msgstr "" - -#. translators: Author display name. -#: php/class-coauthors-plus.php:1805 -msgid "Author: %s" -msgstr "" - -#: php/class-coauthors-wp-list-table.php:164 -msgid "No matching co-authors were found." -msgstr "" - -#. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 -msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" -msgstr "" - -#. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 -msgid "Updating - Adding %1$s's byline to post #%2$d" -msgstr "" - -#. translators: Count of posts. -#: php/class-wp-cli.php:267 -msgid "All done! %d post was affected." -msgid_plural "All done! %d posts were affected." -msgstr[0] "" -msgstr[1] "" -msgstr[2] "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:902 -msgid "-- Author already exists (ID #%s); skipping." -msgstr "" - -#: php/class-wp-cli.php:905 -msgid "-- Not found; creating profile." -msgstr "" - -#. translators: The error message. -#: php/class-wp-cli.php:922 -msgid "-- Failed to create guest author: %s" -msgstr "" - -#. translators: Guest Author ID. -#: php/class-wp-cli.php:932 -msgid "-- Created as guest author #%s" -msgstr "" - -#: php/integrations/yoast.php:258 -msgid "Written by" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:74 -msgid "Move Up" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:85 -msgid "Move down" -msgstr "" - -#: build/index.js:1 -#: src/components/author-selection/index.jsx:102 -msgid "Remove Author" -msgstr "" - -#: build/index.js:1 -#: src/components/co-authors/index.jsx:189 -msgid "Select An Author" -msgstr "" diff --git a/languages/co-authors-plus.pot b/languages/co-authors-plus.pot index 547eb52d..a6ac32bd 100644 --- a/languages/co-authors-plus.pot +++ b/languages/co-authors-plus.pot @@ -1,138 +1,245 @@ -# Copyright (C) 2023 Mohammad Jangda, Daniel Bachhuber, Automattic +# Copyright (C) 2025 Mohammad Jangda, Daniel Bachhuber, Automattic # This file is distributed under the GPL v2 or later. msgid "" msgstr "" -"Project-Id-Version: Co-Authors Plus 3.5.15\n" +"Project-Id-Version: Co-Authors Plus 3.7.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/co-authors-plus\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2023-09-27T13:28:21+00:00\n" +"POT-Creation-Date: 2025-10-17T22:41:10+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" -"X-Generator: WP-CLI 2.8.1\n" +"X-Generator: WP-CLI 2.12.0\n" "X-Domain: co-authors-plus\n" #. Plugin Name of the plugin +#: co-authors-plus.php msgid "Co-Authors Plus" msgstr "" #. Plugin URI of the plugin +#: co-authors-plus.php msgid "https://wordpress.org/plugins/co-authors-plus/" msgstr "" #. Description of the plugin +#: co-authors-plus.php msgid "Allows multiple authors to be assigned to a post. This plugin is an extended version of the Co-Authors plugin developed by Weston Ruter." msgstr "" #. Author of the plugin +#: co-authors-plus.php msgid "Mohammad Jangda, Daniel Bachhuber, Automattic" msgstr "" #. Author URI of the plugin +#: co-authors-plus.php msgid "https://automattic.com" msgstr "" #. translators: Post title. -#: co-authors-plus.php:90 +#: co-authors-plus.php:97 +#, php-format msgid "New comment on your post \"%s\"" msgstr "" #. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:92 +#: co-authors-plus.php:99 +#, php-format msgid "Author : %1$s (IP: %2$s , %3$s)" msgstr "" #. translators: Comment author email address. -#: co-authors-plus.php:94 +#: co-authors-plus.php:101 +#, php-format msgid "Email : %s" msgstr "" #. translators: Comment author URL. -#: co-authors-plus.php:96 -#: co-authors-plus.php:109 -#: co-authors-plus.php:120 +#: co-authors-plus.php:103 +#: co-authors-plus.php:116 +#: co-authors-plus.php:127 +#, php-format msgid "URL : %s" msgstr "" #. translators: Comment author IP address. -#: co-authors-plus.php:98 +#: co-authors-plus.php:105 +#, php-format msgid "Whois : https://whois.arin.net/rest/ip/%s" msgstr "" -#: co-authors-plus.php:99 +#: co-authors-plus.php:106 msgid "Comment: " msgstr "" -#: co-authors-plus.php:100 +#: co-authors-plus.php:107 msgid "You can see all comments on this post here: " msgstr "" #. translators: 1: blog name, 2: post title -#: co-authors-plus.php:102 +#: co-authors-plus.php:109 +#, php-format msgid "[%1$s] Comment: \"%2$s\"" msgstr "" #. translators: Post title. -#: co-authors-plus.php:105 +#: co-authors-plus.php:112 +#, php-format msgid "New trackback on your post \"%s\"" msgstr "" #. translators: 1: comment author, 2: author IP, 3: author domain -#: co-authors-plus.php:107 -#: co-authors-plus.php:118 +#: co-authors-plus.php:114 +#: co-authors-plus.php:125 +#, php-format msgid "Website: %1$s (IP: %2$s , %3$s)" msgstr "" -#: co-authors-plus.php:110 -#: co-authors-plus.php:121 +#: co-authors-plus.php:117 +#: co-authors-plus.php:128 msgid "Excerpt: " msgstr "" -#: co-authors-plus.php:111 +#: co-authors-plus.php:118 msgid "You can see all trackbacks on this post here: " msgstr "" #. translators: 1: blog name, 2: post title -#: co-authors-plus.php:113 +#: co-authors-plus.php:120 +#, php-format msgid "[%1$s] Trackback: \"%2$s\"" msgstr "" #. translators: Post title. -#: co-authors-plus.php:116 +#: co-authors-plus.php:123 +#, php-format msgid "New pingback on your post \"%s\"" msgstr "" -#: co-authors-plus.php:122 +#: co-authors-plus.php:129 msgid "You can see all pingbacks on this post here: " msgstr "" #. translators: 1: blog name, 2: post title -#: co-authors-plus.php:124 +#: co-authors-plus.php:131 +#, php-format msgid "[%1$s] Pingback: \"%2$s\"" msgstr "" #. translators: Comment URL. -#: co-authors-plus.php:128 +#: co-authors-plus.php:135 +#, php-format msgid "Permalink: %s" msgstr "" #. translators: URL for trashing a comment. -#: co-authors-plus.php:131 +#: co-authors-plus.php:138 +#, php-format msgid "Trash it: %s" msgstr "" #. translators: URL for deleting a comment. -#: co-authors-plus.php:134 +#: co-authors-plus.php:141 +#, php-format msgid "Delete it: %s" msgstr "" #. translators: URL for marking a comment as spam. -#: co-authors-plus.php:137 +#: co-authors-plus.php:144 +#, php-format msgid "Spam it: %s" msgstr "" +#: php/api/endpoints/class-coauthors-controller.php:71 +msgid "Unique identifier for a post." +msgstr "" + +#: php/api/endpoints/class-coauthors-controller.php:107 +msgid "Nicename / slug for co-author." +msgstr "" + +#: php/api/endpoints/class-coauthors-controller.php:144 +msgid "Sorry, we could not find that co-author." +msgstr "" + +#: php/api/endpoints/class-coauthors-controller.php:152 +#: php/api/endpoints/class-coauthors-controller.php:194 +msgid "Sorry, an unusable response was produced." +msgstr "" + +#: php/api/endpoints/class-coauthors-controller.php:229 +msgid "Either user ID or guest author ID." +msgstr "" + +#: php/api/endpoints/class-coauthors-controller.php:235 +msgid "Author name for display." +msgstr "" + +#: php/api/endpoints/class-coauthors-controller.php:241 +msgid "Author description." +msgstr "" + +#: php/api/endpoints/class-coauthors-controller.php:247 +msgid "Author description as stored in database." +msgstr "" + +#: php/api/endpoints/class-coauthors-controller.php:253 +msgid "Author description as rendered in HTML content." +msgstr "" + +#: php/api/endpoints/class-coauthors-controller.php:261 +msgid "Unique author slug." +msgstr "" + +#: php/api/endpoints/class-coauthors-controller.php:267 +msgid "URL of author archive." +msgstr "" + +#: php/api/endpoints/class-coauthors-controller.php:273 +msgid "ID of guest author featured image." +msgstr "" + +#: php/api/endpoints/class-coauthors-controller.php:283 +msgid "URL for author avatar." +msgstr "" + +#. translators: %s: register_rest_field +#: php/api/endpoints/class-coauthors-controller.php:302 +#, php-format +msgid "Please use %s to add new schema properties." +msgstr "" + +#. translators: Author display name. +#: php/blocks/block-coauthor-avatar/class-block-coauthor-avatar.php:116 +#: php/blocks/block-coauthor-image/class-block-coauthor-image.php:119 +#: php/blocks/block-coauthor-name/class-block-coauthor-name.php:72 +#: template-tags.php:243 +#: template-tags.php:639 +#, php-format +msgid "Posts by %s" +msgstr "" + +#: php/blocks/block-coauthors/class-block-coauthors.php:63 +msgid "By " +msgstr "" + +#: php/blocks/block-coauthors/class-block-coauthors.php:71 +#: template-tags.php:95 +msgid " and " +msgstr "" + +#: php/blocks/class-blocks.php:138 +msgid "FirstName LastName" +msgstr "" + +#: php/blocks/class-blocks.php:140 +#: php/blocks/class-blocks.php:141 +msgid "Placeholder description from Co-Authors block." +msgstr "" + #: php/class-coauthors-endpoint.php:65 msgid "Text to search." msgstr "" @@ -219,6 +326,7 @@ msgstr "" #. translators: Guest author URL #: php/class-coauthors-guest-authors.php:168 #: php/class-coauthors-guest-authors.php:175 +#, php-format msgid "Guest author updated. View profile" msgstr "" @@ -236,6 +344,7 @@ msgstr "" #. translators: %s: date and time of the revision #: php/class-coauthors-guest-authors.php:173 +#, php-format msgid "Guest author restored to revision from %s" msgstr "" @@ -245,11 +354,13 @@ msgstr "" #. translators: Guest author URL #: php/class-coauthors-guest-authors.php:178 +#, php-format msgid "Guest author submitted. Preview profile" msgstr "" #. translators: Guest author profile preview URL. #: php/class-coauthors-guest-authors.php:181 +#, php-format msgid "Guest author scheduled for: %1$s. Preview profile" msgstr "" @@ -260,6 +371,7 @@ msgstr "" #. translators: Guest author profile preview URL. #: php/class-coauthors-guest-authors.php:187 +#, php-format msgid "Guest author updated. Preview profile" msgstr "" @@ -325,6 +437,7 @@ msgstr "" #. translators: Count of posts #: php/class-coauthors-guest-authors.php:497 +#, php-format msgid "There is %d post associated with this guest author. What should be done with the post assigned to this Guest Author?" msgid_plural "There are %d posts associated with this guest author. What should be done with the posts assigned to this Guest Author?" msgstr[0] "" @@ -336,6 +449,7 @@ msgstr "" #. translators: Name of a linked user account. #: php/class-coauthors-guest-authors.php:530 +#, php-format msgid "Leave posts assigned to the mapped user, %s." msgstr "" @@ -422,6 +536,7 @@ msgstr "" #. translators: Name of a form field. #: php/class-coauthors-guest-authors.php:1251 +#, php-format msgid "%s is a required field" msgstr "" @@ -469,74 +584,80 @@ msgstr "" msgid "Jabber / Google Talk" msgstr "" -#: php/class-coauthors-plus.php:197 -#: php/class-coauthors-plus.php:395 -#: php/class-coauthors-plus.php:515 -#: php/class-coauthors-plus.php:604 -#: php/class-coauthors-plus.php:1649 +#: php/class-coauthors-plus.php:204 +#: php/class-coauthors-plus.php:440 +#: php/class-coauthors-plus.php:570 +#: php/class-coauthors-plus.php:659 +#: php/class-coauthors-plus.php:1743 +#: php/class-coauthors-plus.php:2025 #: build/index.js:1 #: src/index.js:20 msgid "Authors" msgstr "" -#: php/class-coauthors-plus.php:198 +#: php/class-coauthors-plus.php:205 msgid "All Authors" msgstr "" -#: php/class-coauthors-plus.php:465 +#: php/class-coauthors-plus.php:510 msgid "Note: To edit post authors, please enable JavaScript or use a JavaScript-capable browser" msgstr "" -#: php/class-coauthors-plus.php:472 -#: php/class-coauthors-plus.php:606 -#: php/class-coauthors-plus.php:1400 +#: php/class-coauthors-plus.php:517 +#: php/class-coauthors-plus.php:661 +#: php/class-coauthors-plus.php:1469 msgid "Click on an author to change them. Drag to change their order. Click on Remove to remove them." msgstr "" -#: php/class-coauthors-plus.php:567 +#: php/class-coauthors-plus.php:622 #: php/class-coauthors-wp-list-table.php:177 msgid "Posts" msgstr "" -#: php/class-coauthors-plus.php:586 +#: php/class-coauthors-plus.php:641 msgid "View posts by this author" msgstr "" -#: php/class-coauthors-plus.php:649 -#: php/class-coauthors-plus.php:667 +#: php/class-coauthors-plus.php:704 +#: php/class-coauthors-plus.php:722 msgid "No co-author exists for that term" msgstr "" -#: php/class-coauthors-plus.php:1395 +#: php/class-coauthors-plus.php:1464 #: php/class-coauthors-wp-list-table.php:239 msgid "Edit" msgstr "" -#: php/class-coauthors-plus.php:1396 +#: php/class-coauthors-plus.php:1465 msgid "Remove" msgstr "" -#: php/class-coauthors-plus.php:1397 +#: php/class-coauthors-plus.php:1466 msgid "Are you sure you want to remove this author?" msgstr "" -#: php/class-coauthors-plus.php:1398 +#: php/class-coauthors-plus.php:1467 msgid "Click to change this author, or drag to change their position" msgstr "" -#: php/class-coauthors-plus.php:1399 +#: php/class-coauthors-plus.php:1468 msgid "Search for an author" msgstr "" -#: php/class-coauthors-plus.php:1441 +#: php/class-coauthors-plus.php:1510 msgid "Mine" msgstr "" #. translators: Author display name. -#: php/class-coauthors-plus.php:1805 +#: php/class-coauthors-plus.php:1899 +#, php-format msgid "Author: %s" msgstr "" +#: php/class-coauthors-plus.php:2028 +msgid "Leave the field below blank to keep the Authors unchanged. Any change here will overwrite all previously assigned Authors." +msgstr "" + #: php/class-coauthors-wp-list-table.php:23 msgid "Co-Authors" msgstr "" @@ -573,68 +694,231 @@ msgstr "" msgid "Filter" msgstr "" -#: php/class-wp-cli.php:231 +#: php/class-wp-cli.php:422 msgid "Please specify a valid user_login" msgstr "" -#: php/class-wp-cli.php:235 +#: php/class-wp-cli.php:426 msgid "Please specify a valid co-author login" msgstr "" #. translators: 1: Post ID, 2: Comma-separated list of co-author slugs. -#: php/class-wp-cli.php:248 +#: php/class-wp-cli.php:439 +#, php-format msgid "Skipping - Post #%1$d already has co-authors assigned: %2$s" msgstr "" #. translators: 1: Co-author login, 2: Post ID -#: php/class-wp-cli.php:258 +#: php/class-wp-cli.php:449 +#, php-format msgid "Updating - Adding %1$s's byline to post #%2$d" msgstr "" #. translators: Count of posts. -#: php/class-wp-cli.php:267 +#: php/class-wp-cli.php:458 +#, php-format msgid "All done! %d post was affected." msgid_plural "All done! %d posts were affected." msgstr[0] "" msgstr[1] "" #. translators: Guest Author ID. -#: php/class-wp-cli.php:902 +#: php/class-wp-cli.php:1093 +#, php-format msgid "-- Author already exists (ID #%s); skipping." msgstr "" -#: php/class-wp-cli.php:905 +#: php/class-wp-cli.php:1097 msgid "-- Not found; creating profile." msgstr "" #. translators: The error message. -#: php/class-wp-cli.php:922 +#: php/class-wp-cli.php:1114 +#, php-format msgid "-- Failed to create guest author: %s" msgstr "" #. translators: Guest Author ID. -#: php/class-wp-cli.php:932 +#: php/class-wp-cli.php:1125 +#, php-format msgid "-- Created as guest author #%s" msgstr "" -#: php/integrations/yoast.php:258 +#: php/integrations/yoast.php:259 msgid "Written by" msgstr "" -#: template-tags.php:91 -msgid " and " +#. translators: Author display name. +#: template-tags.php:413 +#: template-tags.php:423 +#, php-format +msgid "Visit %s’s website" msgstr "" -#. translators: Author display name. -#: template-tags.php:239 -#: template-tags.php:635 -msgid "Posts by %s" +#: build/blocks/block-coauthor-avatar/index.js:1 +#: src/blocks/block-coauthor-avatar/edit.js:95 +msgid "Avatar Settings" msgstr "" -#. translators: Author display name. -#: template-tags.php:409 -#: template-tags.php:419 -msgid "Visit %s’s website" +#: build/blocks/block-coauthor-avatar/index.js:1 +#: src/blocks/block-coauthor-avatar/edit.js:97 +msgid "Avatar size" +msgstr "" + +#: build/blocks/block-coauthor-avatar/index.js:1 +#: src/blocks/block-coauthor-avatar/edit.js:107 +msgid "Make avatar a link to author archive." +msgstr "" + +#: build/blocks/block-coauthor-avatar/index.js:1 +#: build/blocks/block-coauthor-image/index.js:1 +#: build/blocks/block-coauthor-name/index.js:1 +#: src/blocks/block-coauthor-avatar/edit.js:117 +#: src/blocks/block-coauthor-image/edit.js:176 +#: src/blocks/block-coauthor-name/edit.js:86 +msgid "Link rel" +msgstr "" + +#: build/blocks/block-coauthor-avatar/index.js:1 +#: build/blocks/block-coauthor-image/index.js:1 +#: build/blocks/block-coauthors/index.js:1 +#: src/blocks/block-coauthor-avatar/edit.js:128 +#: src/blocks/block-coauthor-image/edit.js:187 +#: src/blocks/block-coauthors/edit.js:265 +msgid "Co-Authors Layout" +msgstr "" + +#: build/blocks/block-coauthor-avatar/index.js:1 +#: build/blocks/block-coauthor-image/index.js:1 +#: src/blocks/block-coauthor-avatar/edit.js:131 +#: src/blocks/block-coauthor-image/edit.js:190 +msgid "Vertical align" +msgstr "" + +#: build/blocks/block-coauthor-avatar/index.js:1 +#: build/blocks/block-coauthor-image/index.js:1 +#: src/blocks/block-coauthor-avatar/edit.js:136 +#: src/blocks/block-coauthor-image/edit.js:195 +msgid "Default" +msgstr "" + +#: build/blocks/block-coauthor-avatar/index.js:1 +#: build/blocks/block-coauthor-image/index.js:1 +#: src/blocks/block-coauthor-avatar/edit.js:140 +#: src/blocks/block-coauthor-image/edit.js:199 +msgid "Baseline" +msgstr "" + +#: build/blocks/block-coauthor-avatar/index.js:1 +#: build/blocks/block-coauthor-image/index.js:1 +#: src/blocks/block-coauthor-avatar/edit.js:144 +#: src/blocks/block-coauthor-image/edit.js:203 +msgid "Bottom" +msgstr "" + +#: build/blocks/block-coauthor-avatar/index.js:1 +#: build/blocks/block-coauthor-image/index.js:1 +#: src/blocks/block-coauthor-avatar/edit.js:148 +#: src/blocks/block-coauthor-image/edit.js:207 +msgid "Middle" +msgstr "" + +#: build/blocks/block-coauthor-avatar/index.js:1 +#: build/blocks/block-coauthor-image/index.js:1 +#: src/blocks/block-coauthor-avatar/edit.js:152 +#: src/blocks/block-coauthor-image/edit.js:211 +msgid "Sub" +msgstr "" + +#: build/blocks/block-coauthor-avatar/index.js:1 +#: build/blocks/block-coauthor-image/index.js:1 +#: src/blocks/block-coauthor-avatar/edit.js:156 +#: src/blocks/block-coauthor-image/edit.js:215 +msgid "Super" +msgstr "" + +#: build/blocks/block-coauthor-avatar/index.js:1 +#: build/blocks/block-coauthor-image/index.js:1 +#: src/blocks/block-coauthor-avatar/edit.js:160 +#: src/blocks/block-coauthor-image/edit.js:219 +msgid "Text Bottom" +msgstr "" + +#: build/blocks/block-coauthor-avatar/index.js:1 +#: build/blocks/block-coauthor-image/index.js:1 +#: src/blocks/block-coauthor-avatar/edit.js:164 +#: src/blocks/block-coauthor-image/edit.js:223 +msgid "Text Top" +msgstr "" + +#: build/blocks/block-coauthor-avatar/index.js:1 +#: build/blocks/block-coauthor-image/index.js:1 +#: src/blocks/block-coauthor-avatar/edit.js:168 +#: src/blocks/block-coauthor-image/edit.js:227 +msgid "Top" +msgstr "" + +#: build/blocks/block-coauthor-avatar/index.js:1 +#: build/blocks/block-coauthor-image/index.js:1 +#: src/blocks/block-coauthor-avatar/edit.js:176 +#: src/blocks/block-coauthor-image/edit.js:235 +msgid "Vertical alignment defaults to bottom in the block layout and middle in the inline layout." +msgstr "" + +#: build/blocks/block-coauthor-image/index.js:1 +#: src/blocks/block-coauthor-image/edit.js:129 +msgid "Author featured image" +msgstr "" + +#: build/blocks/block-coauthor-image/index.js:1 +#: src/blocks/block-coauthor-image/edit.js:163 +msgid "Image Settings" +msgstr "" + +#: build/blocks/block-coauthor-image/index.js:1 +#: src/blocks/block-coauthor-image/edit.js:166 +msgid "Make featured image a link to author archive." +msgstr "" + +#: build/blocks/block-coauthor-name/index.js:1 +#: src/blocks/block-coauthor-name/edit.js:72 +msgid "Settings" +msgstr "" + +#: build/blocks/block-coauthor-name/index.js:1 +#: src/blocks/block-coauthor-name/edit.js:75 +msgid "Make co-author name a link" +msgstr "" + +#: build/blocks/block-coauthor-name/index.js:1 +#: src/blocks/block-coauthor-name/edit.js:99 +msgid "HTML element" +msgstr "" + +#: build/blocks/block-coauthors/index.js:1 +#: src/blocks/block-coauthors/edit.js:194 +#: src/blocks/block-coauthors/edit.js:196 +msgid "Prefix" +msgstr "" + +#: build/blocks/block-coauthors/index.js:1 +#: src/blocks/block-coauthors/edit.js:269 +msgid "Separator" +msgstr "" + +#: build/blocks/block-coauthors/index.js:1 +#: src/blocks/block-coauthors/edit.js:274 +msgid "Enter character(s) used to separate authors." +msgstr "" + +#: build/blocks/block-coauthors/index.js:1 +#: src/blocks/block-coauthors/edit.js:281 +msgid "Last Separator" +msgstr "" + +#: build/blocks/block-coauthors/index.js:1 +#: src/blocks/block-coauthors/edit.js:286 +msgid "Enter character(s) used to separate the last author." msgstr "" #: build/index.js:1 @@ -656,3 +940,93 @@ msgstr "" #: src/components/co-authors/index.jsx:189 msgid "Select An Author" msgstr "" + +#: build/blocks/block-coauthor-avatar/block.json +#: src/blocks/block-coauthor-avatar/block.json +msgctxt "block title" +msgid "Co-Author Avatar" +msgstr "" + +#: build/blocks/block-coauthor-avatar/block.json +#: src/blocks/block-coauthor-avatar/block.json +msgctxt "block description" +msgid "Displays a small scale version of a co-author's avatar. Utilizes fallbacks from Gravatar so everyone has an avatar." +msgstr "" + +#: build/blocks/block-coauthor-avatar/block.json +#: build/blocks/block-coauthor-description/block.json +#: build/blocks/block-coauthor-image/block.json +#: build/blocks/block-coauthor-name/block.json +#: src/blocks/block-coauthor-avatar/block.json +#: src/blocks/block-coauthor-description/block.json +#: src/blocks/block-coauthor-image/block.json +#: src/blocks/block-coauthor-name/block.json +msgctxt "block keyword" +msgid "coauthors" +msgstr "" + +#: build/blocks/block-coauthor-description/block.json +#: src/blocks/block-coauthor-description/block.json +msgctxt "block title" +msgid "Co-Author Biography" +msgstr "" + +#: build/blocks/block-coauthor-description/block.json +#: src/blocks/block-coauthor-description/block.json +msgctxt "block description" +msgid "Displays a co-author's biographical description." +msgstr "" + +#: build/blocks/block-coauthor-description/block.json +#: src/blocks/block-coauthor-description/block.json +msgctxt "block keyword" +msgid "description" +msgstr "" + +#: build/blocks/block-coauthor-description/block.json +#: src/blocks/block-coauthor-description/block.json +msgctxt "block keyword" +msgid "bio" +msgstr "" + +#: build/blocks/block-coauthor-description/block.json +#: src/blocks/block-coauthor-description/block.json +msgctxt "block keyword" +msgid "biography" +msgstr "" + +#: build/blocks/block-coauthor-image/block.json +#: src/blocks/block-coauthor-image/block.json +msgctxt "block title" +msgid "Co-Author Featured Image" +msgstr "" + +#: build/blocks/block-coauthor-image/block.json +#: src/blocks/block-coauthor-image/block.json +msgctxt "block description" +msgid "Uses your theme's image sizes to display a scalable avatar for a co-author with a guest author profile. Does not fallback to Gravatar images." +msgstr "" + +#: build/blocks/block-coauthor-name/block.json +#: src/blocks/block-coauthor-name/block.json +msgctxt "block title" +msgid "Co-Author Name" +msgstr "" + +#: build/blocks/block-coauthor-name/block.json +#: src/blocks/block-coauthor-name/block.json +msgctxt "block description" +msgid "Displays a co-author's display name and optionally links to their author archive." +msgstr "" + +#: build/blocks/block-coauthors/block.json +#: src/blocks/block-coauthors/block.json +msgctxt "block title" +msgid "Co-Authors" +msgstr "" + +#: build/blocks/block-coauthors/block.json +#: src/blocks/block-coauthors/block.json +msgctxt "block description" +msgid "Displays the co-authors of a post by using blocks to create a template. Start with co-author name and add any other co-author blocks." +msgstr "" diff --git a/package.json b/package.json index 96fdc3ea..289fe5ba 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "co-authors-plus", - "version": "3.6.6", + "version": "3.7.0", "description": "Allows multiple authors to be assigned to a post.", "license": "GPL-2.0-or-later", "private": true, diff --git a/php/class-coauthors-plus.php b/php/class-coauthors-plus.php index 10f32b3f..687b4583 100644 --- a/php/class-coauthors-plus.php +++ b/php/class-coauthors-plus.php @@ -107,6 +107,16 @@ public function __construct() { // REST API: Depending on user capabilities, hide author term description. add_action( 'rest_prepare_author', array( $this, 'conditionally_hide_author_term_description' ) ); + + // Add Bulk Edit support on supported versions of WordPress. + global $wp_version; + if ( version_compare( $wp_version, '6.3', '>=' ) ) { + // Add Co-Author select field to the Bulk Edit actions form. + add_action( 'bulk_edit_custom_box', array( $this, '_action_bulk_edit_custom_box' ), 10, 2 ); + + // Update Co-Authors when bulk editing posts. + add_action( 'bulk_edit_posts', array( $this, 'action_bulk_edit_update_coauthors' ), 10, 2 ); + } } /** @@ -115,9 +125,6 @@ public function __construct() { */ public function action_init(): void { - // Allow Co-Authors Plus to be easily translated - load_plugin_textdomain( 'co-authors-plus', null, dirname( plugin_basename( __FILE__ ) ) . '/languages/' ); - // Load the Guest Authors functionality if needed if ( $this->is_guest_authors_enabled() ) { require_once dirname( COAUTHORS_PLUS_FILE ) . '/php/class-coauthors-guest-authors.php'; @@ -976,17 +983,15 @@ public function coauthors_update_post( $post_id, $post ): void { return; } - if ( $this->current_user_can_set_authors() ) { + if ( isset( $_POST['coauthors-nonce'], $_POST['coauthors'] ) && $this->current_user_can_set_authors() ) { // if current_user_can_set_authors and nonce valid - if ( isset( $_POST['coauthors-nonce'], $_POST['coauthors'] ) ) { - check_admin_referer( 'coauthors-edit', 'coauthors-nonce' ); + check_admin_referer( 'coauthors-edit', 'coauthors-nonce' ); - $coauthors = (array) $_POST['coauthors']; - $coauthors = array_map( 'sanitize_title', $coauthors ); - $this->add_coauthors( $post_id, $coauthors ); - } + $coauthors = (array) $_POST['coauthors']; + $coauthors = array_map( 'sanitize_title', $coauthors ); + $this->add_coauthors( $post_id, $coauthors ); } else { - // If the user can't set authors and a co-author isn't currently set, we need to explicity set one + // If a co-author isn't currently set, we need to explicity set one if ( ! $this->has_author_terms( $post_id ) ) { $user = get_userdata( $post->post_author ); if ( $user ) { @@ -1999,4 +2004,57 @@ public function conditionally_hide_author_term_description( WP_REST_Response $re return $response; } + + /** + * Create Bulk Edit Co-Authors box. + * + * This is used in the Bulk Edit screen to allow users to set Co-Authors + * for multiple posts at once. + * + * @link https://github.com/Automattic/Co-Authors-Plus/issues/551 + * @param string $column_name The name of the column being edited. + * @param string $post_type The post type being edited. + * @return void + */ + public function _action_bulk_edit_custom_box( string $column_name, string $post_type ): void { + if ( 'coauthors' !== $column_name || ! $this->is_post_type_enabled( $post_type ) || ! $this->current_user_can_set_authors() ) { + return; + } + ?> + +
+

array() ) ); ?>

+ +
+ is_post_type_enabled( $postarr['post_type'] ) ) { + return $post_data; + } + + foreach( $postarr['post'] as $post_id ) { + $post = get_post( $post_id ); + if ( $this->current_user_can_set_authors( $post ) && ! empty( $postarr['coauthors'] ) ) { + $coauthors = array_map( 'sanitize_title', (array) $postarr['coauthors'] ); + $this->add_coauthors( $post_id, $coauthors ); + } + } + + return $post_data; + } } diff --git a/src/utils.js b/src/utils.js index cb5e8146..37430bef 100644 --- a/src/utils.js +++ b/src/utils.js @@ -1,3 +1,5 @@ +import { applyFilters } from '@wordpress/hooks'; + /** * Move an item up or down in an array. * @@ -74,10 +76,12 @@ export const addItemByValue = ( * * @return {Object} The object containing data relevant to the Coauthors component. */ -export const formatAuthorData = ( { id, displayName, userNicename, email, userType } ) => { +export const formatAuthorData = ( author ) => { + const { id, displayName, userNicename, email, userType } = author; + return { id, - label: `${ displayName } | ${ email }`, + label: applyFilters( 'coAuthors.formatAuthorData.label', `${ displayName } | ${ email }`, author ), display: displayName, value: userNicename, userType, diff --git a/tests/Integration/TestCase.php b/tests/Integration/TestCase.php index cbbd9e40..227b1448 100644 --- a/tests/Integration/TestCase.php +++ b/tests/Integration/TestCase.php @@ -65,7 +65,7 @@ protected function create_guest_author( $user_login = 'guest_author' ) { ); } - protected function create_post( \WP_User $author = null ) { + protected function create_post( ?\WP_User $author = null ) { if ( null === $author ) { $author = $this->create_author(); } diff --git a/tests/Integration/UpdatePostTest.php b/tests/Integration/UpdatePostTest.php new file mode 100644 index 00000000..be9526ec --- /dev/null +++ b/tests/Integration/UpdatePostTest.php @@ -0,0 +1,324 @@ +admin_user = $this->factory()->user->create_and_get( + array( + 'role' => 'administrator', + 'user_login' => 'admin_user', + ) + ); + + $this->editor_user = $this->factory()->user->create_and_get( + array( + 'role' => 'editor', + 'user_login' => 'editor_user', + ) + ); + + $this->author_user = $this->factory()->user->create_and_get( + array( + 'role' => 'author', + 'user_login' => 'author_user', + ) + ); + } + + /** + * Test that posts created via wp_insert_post() by admin users get proper coauthor terms. + * + * This test covers the scenario described in PR #1137 where posts created + * programmatically (CLI/REST) by users who can assign authors were not + * getting proper coauthor terms. + * + * @covers CoAuthors_Plus::coauthors_update_post() + */ + public function test_admin_creates_post_via_wp_insert_post_gets_coauthor_terms(): void { + global $coauthors_plus; + + // Set current user to admin + wp_set_current_user( $this->admin_user->ID ); + + // Create post via wp_insert_post() (simulating CLI/REST creation) + $post_id = wp_insert_post( + array( + 'post_title' => 'Test Post by Admin', + 'post_content' => 'Test content', + 'post_status' => 'publish', + 'post_author' => $this->admin_user->ID, + 'post_type' => 'post', + ) + ); + + $this->assertIsInt( $post_id ); + $this->assertGreaterThan( 0, $post_id ); + + // Verify the post has coauthor terms + $this->assertTrue( $coauthors_plus->has_author_terms( $post_id ), 'Post should have coauthor terms after creation' ); + + // Get the coauthor terms + $coauthor_terms = wp_get_post_terms( $post_id, $coauthors_plus->coauthor_taxonomy ); + $this->assertIsArray( $coauthor_terms ); + $this->assertCount( 1, $coauthor_terms, 'Post should have exactly one coauthor term' ); + + // Verify the term corresponds to the admin user + $expected_term_slug = 'cap-' . $this->admin_user->user_login; + $this->assertEquals( $expected_term_slug, $coauthor_terms[0]->slug, 'Coauthor term slug should match admin user' ); + } + + /** + * Test that posts created via wp_insert_post() by editor users get proper coauthor terms. + * + * @covers CoAuthors_Plus::coauthors_update_post() + */ + public function test_editor_creates_post_via_wp_insert_post_gets_coauthor_terms(): void { + global $coauthors_plus; + + // Set current user to editor + wp_set_current_user( $this->editor_user->ID ); + + // Create post via wp_insert_post() (simulating CLI/REST creation) + $post_id = wp_insert_post( + array( + 'post_title' => 'Test Post by Editor', + 'post_content' => 'Test content', + 'post_status' => 'publish', + 'post_author' => $this->editor_user->ID, + 'post_type' => 'post', + ) + ); + + $this->assertIsInt( $post_id ); + $this->assertGreaterThan( 0, $post_id ); + + // Verify the post has coauthor terms + $this->assertTrue( $coauthors_plus->has_author_terms( $post_id ), 'Post should have coauthor terms after creation' ); + + // Get the coauthor terms + $coauthor_terms = wp_get_post_terms( $post_id, $coauthors_plus->coauthor_taxonomy ); + $this->assertIsArray( $coauthor_terms ); + $this->assertCount( 1, $coauthor_terms, 'Post should have exactly one coauthor term' ); + + // Verify the term corresponds to the editor user + $expected_term_slug = 'cap-' . $this->editor_user->user_login; + $this->assertEquals( $expected_term_slug, $coauthor_terms[0]->slug, 'Coauthor term slug should match editor user' ); + } + + /** + * Test that posts created via wp_insert_post() by author users get proper coauthor terms. + * + * This test ensures that the fix doesn't break the existing behavior for author users. + * + * @covers CoAuthors_Plus::coauthors_update_post() + */ + public function test_author_creates_post_via_wp_insert_post_gets_coauthor_terms(): void { + global $coauthors_plus; + + // Set current user to author + wp_set_current_user( $this->author_user->ID ); + + // Create post via wp_insert_post() (simulating CLI/REST creation) + $post_id = wp_insert_post( + array( + 'post_title' => 'Test Post by Author', + 'post_content' => 'Test content', + 'post_status' => 'publish', + 'post_author' => $this->author_user->ID, + 'post_type' => 'post', + ) + ); + + $this->assertIsInt( $post_id ); + $this->assertGreaterThan( 0, $post_id ); + + // Verify the post has coauthor terms + $this->assertTrue( $coauthors_plus->has_author_terms( $post_id ), 'Post should have coauthor terms after creation' ); + + // Get the coauthor terms + $coauthor_terms = wp_get_post_terms( $post_id, $coauthors_plus->coauthor_taxonomy ); + $this->assertIsArray( $coauthor_terms ); + $this->assertCount( 1, $coauthor_terms, 'Post should have exactly one coauthor term' ); + + // Verify the term corresponds to the author user + $expected_term_slug = 'cap-' . $this->author_user->user_login; + $this->assertEquals( $expected_term_slug, $coauthor_terms[0]->slug, 'Coauthor term slug should match author user' ); + } + + /** + * Test that posts created via wp_insert_post() with different post_author get proper coauthor terms. + * + * This test ensures that when a post is created with a different post_author than the current user, + * the coauthor terms are still created correctly. + * + * @covers CoAuthors_Plus::coauthors_update_post() + */ + public function test_admin_creates_post_with_different_author_gets_coauthor_terms(): void { + global $coauthors_plus; + + // Set current user to admin + wp_set_current_user( $this->admin_user->ID ); + + // Create post via wp_insert_post() with editor as post_author + $post_id = wp_insert_post( + array( + 'post_title' => 'Test Post by Admin for Editor', + 'post_content' => 'Test content', + 'post_status' => 'publish', + 'post_author' => $this->editor_user->ID, // Different from current user + 'post_type' => 'post', + ) + ); + + $this->assertIsInt( $post_id ); + $this->assertGreaterThan( 0, $post_id ); + + // Verify the post has coauthor terms + $this->assertTrue( $coauthors_plus->has_author_terms( $post_id ), 'Post should have coauthor terms after creation' ); + + // Get the coauthor terms + $coauthor_terms = wp_get_post_terms( $post_id, $coauthors_plus->coauthor_taxonomy ); + $this->assertIsArray( $coauthor_terms ); + $this->assertCount( 1, $coauthor_terms, 'Post should have exactly one coauthor term' ); + + // Verify the term corresponds to the editor user (the post_author) + $expected_term_slug = 'cap-' . $this->editor_user->user_login; + $this->assertEquals( $expected_term_slug, $coauthor_terms[0]->slug, 'Coauthor term slug should match post_author user' ); + } + + /** + * Test that posts created via web form (with $_POST data) still work correctly. + * + * This test ensures that the fix doesn't break the existing web form functionality. + * We test this by directly calling the add_coauthors method instead of going through + * the web form logic to avoid nonce verification issues in tests. + * + * @covers CoAuthors_Plus::add_coauthors() + */ + public function test_web_form_post_creation_still_works(): void { + global $coauthors_plus; + + // Set current user to admin + wp_set_current_user( $this->admin_user->ID ); + + // Create post first + $post_id = wp_insert_post( + array( + 'post_title' => 'Test Post via Web Form', + 'post_content' => 'Test content', + 'post_status' => 'publish', + 'post_author' => $this->admin_user->ID, + 'post_type' => 'post', + ) + ); + + $this->assertIsInt( $post_id ); + $this->assertGreaterThan( 0, $post_id ); + + // Test that we can still add coauthors programmatically (simulating web form logic) + $result = $coauthors_plus->add_coauthors( $post_id, array( $this->editor_user->user_login ) ); + $this->assertTrue( $result, 'add_coauthors should return true' ); + + // Verify the post has coauthor terms + $this->assertTrue( $coauthors_plus->has_author_terms( $post_id ), 'Post should have coauthor terms after creation' ); + + // Get the coauthor terms + $coauthor_terms = wp_get_post_terms( $post_id, $coauthors_plus->coauthor_taxonomy ); + $this->assertIsArray( $coauthor_terms ); + $this->assertCount( 1, $coauthor_terms, 'Post should have exactly one coauthor term' ); + + // Verify the term corresponds to the editor user + $expected_term_slug = 'cap-' . $this->editor_user->user_login; + $this->assertEquals( $expected_term_slug, $coauthor_terms[0]->slug, 'Coauthor term slug should match editor user' ); + } + + /** + * Test that posts created without $_POST data don't trigger the web form logic. + * + * This test ensures that when no $_POST data is present, the fallback logic + * correctly sets the post_author as a coauthor. + * + * @covers CoAuthors_Plus::coauthors_update_post() + */ + public function test_no_post_data_triggers_fallback_logic(): void { + global $coauthors_plus; + + // Ensure no $_POST data is present + unset( $_POST['coauthors-nonce'], $_POST['coauthors'] ); + + // Set current user to admin + wp_set_current_user( $this->admin_user->ID ); + + // Create post via wp_insert_post() (simulating CLI/REST creation) + $post_id = wp_insert_post( + array( + 'post_title' => 'Test Post without POST data', + 'post_content' => 'Test content', + 'post_status' => 'publish', + 'post_author' => $this->admin_user->ID, + 'post_type' => 'post', + ) + ); + + $this->assertIsInt( $post_id ); + $this->assertGreaterThan( 0, $post_id ); + + // Verify the post has coauthor terms + $this->assertTrue( $coauthors_plus->has_author_terms( $post_id ), 'Post should have coauthor terms after creation' ); + + // Get the coauthor terms + $coauthor_terms = wp_get_post_terms( $post_id, $coauthors_plus->coauthor_taxonomy ); + $this->assertIsArray( $coauthor_terms ); + $this->assertCount( 1, $coauthor_terms, 'Post should have exactly one coauthor term' ); + + // Verify the term corresponds to the admin user (post_author) + $expected_term_slug = 'cap-' . $this->admin_user->user_login; + $this->assertEquals( $expected_term_slug, $coauthor_terms[0]->slug, 'Coauthor term slug should match post_author user' ); + } + + /** + * Test that posts created for unsupported post types don't get coauthor terms. + * + * @covers CoAuthors_Plus::coauthors_update_post() + */ + public function test_unsupported_post_type_does_not_get_coauthor_terms(): void { + global $coauthors_plus; + + // Set current user to admin + wp_set_current_user( $this->admin_user->ID ); + + // Create post with unsupported post type + $post_id = wp_insert_post( + array( + 'post_title' => 'Test Attachment', + 'post_content' => 'Test content', + 'post_status' => 'publish', + 'post_author' => $this->admin_user->ID, + 'post_type' => 'attachment', // Unsupported post type + ) + ); + + $this->assertIsInt( $post_id ); + $this->assertGreaterThan( 0, $post_id ); + + // Verify the post does NOT have coauthor terms + $this->assertFalse( $coauthors_plus->has_author_terms( $post_id ), 'Attachment post type should not have coauthor terms' ); + } + +}