Changeset 3397524
- Timestamp:
- 11/17/2025 07:02:04 PM (4 months ago)
- Location:
- revisionary/trunk
- Files:
-
- 19 edited
-
CHANGELOG.md (modified) (1 diff)
-
admin/admin_rvy.php (modified) (2 diffs)
-
admin/history_rvy.php (modified) (1 diff)
-
admin/options.php (modified) (6 diffs)
-
admin/post-edit-block-ui_rvy.php (modified) (1 diff)
-
admin/post-edit_rvy.php (modified) (1 diff)
-
admin/revision-action_rvy.php (modified) (1 diff)
-
defaults_rvy.php (modified) (2 diffs)
-
front_rvy.php (modified) (1 diff)
-
languages/revisionary-es_ES.mo (modified) (previous)
-
languages/revisionary-es_ES.po (modified) (93 diffs)
-
languages/revisionary-fr_FR.mo (modified) (previous)
-
languages/revisionary-fr_FR.po (modified) (102 diffs)
-
languages/revisionary-it_IT.mo (modified) (previous)
-
languages/revisionary-it_IT.po (modified) (91 diffs)
-
languages/revisionary.pot (modified) (19 diffs)
-
revisionary-front.css (modified) (2 diffs)
-
revisionary.php (modified) (2 diffs)
-
rvy_init-functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
revisionary/trunk/CHANGELOG.md
r3395221 r3397524 2 2 and this project adheres to [Semantic Versioning](http://semver.org/). 3 3 4 = 3.7.21 = 4 = 3.7.21 - 17 Nov 2025 = 5 * Fixed : Recaption "New Revision" to "Create Revision" to disambiguate from "New Revisions" 5 6 * Fixed : Scheduled Revisions did not work correctly if "Site uses custom trigger" option is enabled 7 * Fixed : Scheduled Revision preview top bar did not have a distinct color 8 * Fixed : On multisite install, Network Defaults screen did not load correctly 9 * Fixed : On multisite install, Upgrade to Pro menu link loaded invalid settings screen 10 * Change : Option to disable revisioning of post Author 11 * Change : Option to autho-submit revisions without publishing capability 12 * Fixed : PHP Warning on Compare Revisions screen under some conditions 13 * Fixed : PHP Warnings on Edit Posts screen under some conditions 6 14 7 15 = 3.7.20 - 12 Nov 2025 = -
revisionary/trunk/admin/admin_rvy.php
r3395221 r3397524 34 34 if ( RVY_NETWORK && ( is_main_site() ) ) { 35 35 require_once( dirname(__FILE__).'/admin_lib-mu_rvy.php' ); 36 add_action(' admin_menu', 'rvy_mu_site_menu', 15);36 add_action('revisionary_menu', 'rvy_mu_site_menu'); 37 37 } 38 38 … … 393 393 add_action('revisionary_page_revisionary-settings', 'rvy_omit_site_options' ); 394 394 } 395 396 do_action('revisionary_menu'); 395 397 396 398 if (!defined('PUBLISHPRESS_REVISIONS_PRO_VERSION')) { -
revisionary/trunk/admin/history_rvy.php
r3394622 r3397524 295 295 $status_plural = (!empty($status_obj->labels->plural)) ? $status_obj->labels->plural : __('Revisions'); 296 296 297 if (!$url = get_edit_post_link($published_post)) { 298 $url = ''; 299 } 300 297 301 printf( 298 302 esc_html__( 'Compare %s of "%s"', 'revisionary' ), 299 303 esc_html($status_plural), 300 '<a href="' . esc_url( get_edit_post_link($published_post)) . '">' . esc_html(_draft_or_post_title($published_post)) . '</a>'304 '<a href="' . esc_url($url) . '">' . esc_html(_draft_or_post_title($published_post)) . '</a>' 301 305 ); 302 306 } -
revisionary/trunk/admin/options.php
r3394622 r3397524 182 182 'pending_revisions' => sprintf(esc_html__('Enable %s', 'revisionary'), $pending_revision_plural), 183 183 'revision_limit_per_post' => esc_html__("Limit to one active revision per post", 'revisionary'), 184 'revision_limit_compat_mode' => esc_html__('Refresh "Has Revision" flag before suppressing NewRevision', 'revisionary'),184 'revision_limit_compat_mode' => esc_html__('Refresh "Has Revision" flag before suppressing Create Revision', 'revisionary'), 185 185 'revision_unfiltered_html_check' => esc_html__("If post contains custom html, require unfiltered_html capability", 'revisionary'), 186 186 'auto_submit_revisions' => esc_html__("Auto-submit revisions created by a user with publishing capability", 'revisionary'), 187 'auto_submit_revisions_any_user' => esc_html__("Auto-submit revisions", 'revisionary'), 187 188 'scheduled_revisions' => sprintf(esc_html__('Enable %s', 'revisionary'), pp_revisions_status_label('future-revision', 'plural')), 188 189 'revise_posts_capability' => rvy_get_option('revision_statuses_noun_labels') ? esc_html__("Change Request submission require role capability", 'revisionary') : esc_html__("Revision submission requires role capability", 'revisionary'), … … 236 237 'legacy_notifications' => esc_html__('Enable legacy email notifications', 'revisionary'), 237 238 'approve_button_verbose' => esc_html__('Use extended captions for Approve button in Post Editor', 'revisionary'), 239 'allow_post_author_revision' => esc_html__('Allow the Author field to be modified by Revision', 'revisionary'), 238 240 'create_revision_direct_link' => esc_html__('Create Revision button in editor opens new tab', 'revisionary'), 239 241 'revision_edit_disable_rank_math' => esc_html__('Disable Rank Math SEO panel for Revision edit', 'revisionary'), … … 257 259 'statuses' => [true], 258 260 'archive' => ['num_revisions', 'archive_postmeta', 'extended_archive', 'revision_archive_deletion', 'revision_restore_require_cap', 'past_revisions_order_by'], 259 'working_copy' => ['copy_posts_capability', 'revisor_role_add_custom_rolecaps', 'revision_limit_per_post', 'revision_limit_compat_mode', ' create_revision_direct_link', 'revision_unfiltered_html_check', 'auto_submit_revisions', 'caption_copy_as_edit', 'permissions_compat_mode', 'pending_revisions', 'revise_posts_capability', 'pending_revision_update_post_date', 'pending_revision_update_modified_date', 'scheduled_revisions', 'scheduled_publish_cron', 'async_scheduled_publish', 'wp_cron_usage_detected', 'scheduled_revision_update_post_date', 'scheduled_revision_update_modified_date', 'approve_button_verbose', 'trigger_post_update_actions', 'copy_revision_comments_to_post', 'rev_publication_delete_ed_comments', 'revision_statuses_noun_labels', 'revision_queue_capability', 'manage_unsubmitted_capability', 'revisor_lock_others_revisions', 'revisor_hide_others_revisions', 'admin_revisions_to_own_posts', 'list_unsubmitted_revisions', 'deletion_queue', 'compare_revisions_direct_approval', 'use_publishpress_notifications', 'planner_notifications_access_limited', 'legacy_notifications', 'pending_rev_notify_admin', 'pending_rev_notify_author', 'revision_update_notifications', 'rev_approval_notify_admin', 'rev_approval_notify_author', 'rev_approval_notify_revisor', 'publish_scheduled_notify_admin', 'publish_scheduled_notify_author', 'publish_scheduled_notify_revisor', 'use_notification_buffer'],261 'working_copy' => ['copy_posts_capability', 'revisor_role_add_custom_rolecaps', 'revision_limit_per_post', 'revision_limit_compat_mode', 'allow_post_author_revision', 'create_revision_direct_link', 'revision_unfiltered_html_check', 'auto_submit_revisions', 'auto_submit_revisions_any_user', 'caption_copy_as_edit', 'permissions_compat_mode', 'pending_revisions', 'revise_posts_capability', 'pending_revision_update_post_date', 'pending_revision_update_modified_date', 'scheduled_revisions', 'scheduled_publish_cron', 'async_scheduled_publish', 'wp_cron_usage_detected', 'scheduled_revision_update_post_date', 'scheduled_revision_update_modified_date', 'approve_button_verbose', 'trigger_post_update_actions', 'copy_revision_comments_to_post', 'rev_publication_delete_ed_comments', 'revision_statuses_noun_labels', 'revision_queue_capability', 'manage_unsubmitted_capability', 'revisor_lock_others_revisions', 'revisor_hide_others_revisions', 'admin_revisions_to_own_posts', 'list_unsubmitted_revisions', 'deletion_queue', 'compare_revisions_direct_approval', 'use_publishpress_notifications', 'planner_notifications_access_limited', 'legacy_notifications', 'pending_rev_notify_admin', 'pending_rev_notify_author', 'revision_update_notifications', 'rev_approval_notify_admin', 'rev_approval_notify_author', 'rev_approval_notify_revisor', 'publish_scheduled_notify_admin', 'publish_scheduled_notify_author', 'publish_scheduled_notify_revisor', 'use_notification_buffer'], 260 262 'notifications' => [true], 261 263 'integrations' => [true], … … 952 954 'revision-scheduling' => esc_html__('Scheduling', 'revisionary'), 953 955 'revision-publication' => esc_html__('Publication', 'revisionary'), 954 'revision-queue' => esc_html__(' New Revisions', 'revisionary'),956 'revision-queue' => esc_html__('Management', 'revisionary'), 955 957 'notifications' => esc_html__('Notifications', 'revisionary'), 956 958 ]; … … 1133 1135 <?php 1134 1136 $hint = ''; 1137 $this->option_checkbox( 'allow_post_author_revision', $tab, $section, $hint, ''); 1138 1139 $hint = ''; 1135 1140 $this->option_checkbox( 'create_revision_direct_link', $tab, $section, $hint, ''); 1136 1141 ?> … … 1201 1206 $this->option_checkbox( 'pending_revision_update_modified_date', $tab, $section, $hint, '' ); 1202 1207 1203 $hint = esc_html__('When a user who has publishing capabilities creates a Revision, set it to "Submitted" status.', 'revisionary'); 1208 $hint = esc_html__('When a new revision is created by any user who is allowed to submit revisions, automatically submit it.', 'revisionary'); 1209 $this->option_checkbox( 'auto_submit_revisions_any_user', $tab, $section, $hint, '' ); 1210 1211 $hint = esc_html__('Auto-submit revisions if the user can directly edit the main post.', 'revisionary'); 1204 1212 $this->option_checkbox( 'auto_submit_revisions', $tab, $section, $hint, '' ); 1205 1213 -
revisionary/trunk/admin/post-edit-block-ui_rvy.php
r3359458 r3397524 136 136 137 137 if (defined('PUBLISHPRESS_MULTIPLE_AUTHORS_VERSION')) { 138 return [];138 return; 139 139 } 140 140 141 141 if (!$type_obj = get_post_type_object($post->post_type)) { 142 return []; 142 return; 143 } 144 145 if (!rvy_get_option('allow_post_author_revision')) { 146 return; 143 147 } 144 148 -
revisionary/trunk/admin/post-edit_rvy.php
r3394622 r3397524 303 303 304 304 if (defined('PUBLISHPRESS_MULTIPLE_AUTHORS_VERSION')) { 305 return [];305 return; 306 306 } 307 307 308 308 if (!$type_obj = get_post_type_object($post->post_type)) { 309 return []; 309 return; 310 } 311 312 if (!rvy_get_option('allow_post_author_revision')) { 313 return; 310 314 } 311 315 -
revisionary/trunk/admin/revision-action_rvy.php
r3387196 r3397524 34 34 $rvy_creation = new PublishPress\Revisions\RevisionCreation(); 35 35 36 $revision_status = (rvy_get_option('auto_submit_revisions') && current_user_can('edit_post', $main_post_id)) ? 'pending-revision' : 'draft-revision'; 36 if (rvy_get_option('auto_submit_revisions') && current_user_can('edit_post', $main_post_id)) { 37 $auto_submit = true; 38 39 } elseif (rvy_get_option('auto_submit_revisions_any_user')) { 40 if (!rvy_get_option("revise_posts_capability") || rvy_is_full_editor($main_post_id)) { // bypass capability check for those with full editing caps on main post 41 $auto_submit = true; 42 } else { 43 if ($_post = get_post($main_post_id)) { 44 if ($type_obj = get_post_type_object($_post->post_type)) { 45 $base_prop = (rvy_is_post_author($main_post_id)) ? 'edit_posts' : 'edit_others_posts'; 46 $submit_cap_name = str_replace('edit_', 'revise_', $type_obj->cap->$base_prop); 47 $auto_submit = current_user_can($submit_cap_name); 48 } 49 } 50 } 51 } 52 53 $revision_status = !empty($auto_submit) ? 'pending-revision' : 'draft-revision'; 37 54 $revision_id = $rvy_creation->createRevision($post_id, $revision_status, $args); 38 55 } else { -
revisionary/trunk/defaults_rvy.php
r3394622 r3397524 74 74 'legacy_notifications' => true, 75 75 'approve_button_verbose' => true, 76 'allow_post_author_revision' => true, 76 77 'create_revision_direct_link' => true, 77 78 'revision_edit_disable_rank_math' => true, … … 148 149 'legacy_notifications' => 0, 149 150 'approve_button_verbose' => 0, 151 'allow_post_author_revision' => 1, 150 152 'create_revision_direct_link' => 0, 151 153 'revision_edit_disable_rank_math' => 1, -
revisionary/trunk/front_rvy.php
r3364129 r3397524 485 485 apply_filters( 486 486 'revisionary_list_caption', 487 esc_html__("%s View Queue%s", 'revisionary'),487 esc_html__("%sManage%s", 'revisionary'), 488 488 $post // revision 489 489 ), -
revisionary/trunk/languages/revisionary-es_ES.po
r3394622 r3397524 6 6 "Submit, Approve and Schedule Content Changes - Stable (latest release)\n" 7 7 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n" 8 "POT-Creation-Date: 2025-1 0-30T15:00:36+00:00\n"9 "PO-Revision-Date: 2025-11- 09 11:05+0100\n"8 "POT-Creation-Date: 2025-11-12T19:30:03+00:00\n" 9 "PO-Revision-Date: 2025-11-13 11:15+0100\n" 10 10 "Last-Translator: \n" 11 11 "Language-Team: \n" … … 97 97 98 98 #: admin/admin-posts_rvy.php:294 admin/admin_rvy.php:365 99 #: admin/admin_rvy.php:433 admin/options.php:953 100 msgid "Revision Queue" 101 msgstr "Cola de revisión" 102 103 #: admin/admin_lib-mu_rvy.php:10 admin/options.php:324 99 #: admin/admin_rvy.php:433 admin/options.php:159 admin/options.php:636 100 #: admin/options.php:954 101 msgid "New Revisions" 102 msgstr "Nuevas revisiones" 103 104 #: admin/admin_lib-mu_rvy.php:10 admin/options.php:325 104 105 msgid "PublishPress Revisions Network Settings" 105 106 msgstr "Ajustes de la red para PublishPress Revisions" … … 109 110 msgstr "Ajustes de red" 110 111 111 #: admin/admin_lib-mu_rvy.php:21 admin/options.php:32 6112 #: admin/admin_lib-mu_rvy.php:21 admin/options.php:327 112 113 msgid "PublishPress Revisions Network Defaults" 113 114 msgstr "Valores por defecto de la red para PublishPress Revisions" … … 138 139 139 140 #: admin/admin_rvy.php:374 admin/admin_rvy.php:375 admin/admin_rvy.php:434 140 #: admin/revision-archive_rvy.php:81 141 msgid "Revision Archive" 142 msgstr "Archivo de revisiones" 143 144 #: admin/admin_rvy.php:392 admin/options.php:330 141 #: admin/options.php:158 admin/options.php:539 142 #: admin/revision-archive_rvy.php:81 admin/revisions.php:237 143 msgid "Past Revisions" 144 msgstr "Revisiones anteriores" 145 146 #: admin/admin_rvy.php:392 admin/options.php:331 145 147 msgid "PublishPress Revisions Settings" 146 148 msgstr "Ajustes de PublishPress Revisions" … … 151 153 152 154 #: admin/admin_rvy.php:399 admin/admin_rvy.php:400 admin/admin_rvy.php:440 153 #: admin/options.php:175 6 admin/options.php:1783 admin/options.php:1967154 #: admin/options.php:231 4includes/CoreAdmin.php:212155 #: admin/options.php:1757 admin/options.php:1784 admin/options.php:1971 156 #: admin/options.php:2318 includes/CoreAdmin.php:212 155 157 msgid "Upgrade to Pro" 156 158 msgstr "Actualizar a Pro" … … 165 167 166 168 #: admin/admin_rvy.php:483 167 msgid "Can see Revisions from other users in Revision Queue."168 msgstr "Puedes ver las revisiones de otros usuarios en la cola de revisión."169 msgid "Can see New Revisions from other users." 170 msgstr "Puedes ver las nuevas revisiones de otros usuarios." 169 171 170 172 #: admin/admin_rvy.php:484 171 msgid "Can access Revision Queue."172 msgstr "Puedes acceder a la cola de revisión."173 msgid "Can access New Revisions." 174 msgstr "Puedes acceder a las nuevas revisiones." 173 175 174 176 #: admin/admin_rvy.php:485 … … 187 189 188 190 #: admin/admin_rvy.php:488 189 msgid "View the Revision Archive, a list of past Revisions."190 msgstr "Ver el «Archivo de revisiones», una lista de revisiones anteriores."191 msgid "View Past Revisions." 192 msgstr "Ver las revisiones anteriores" 191 193 192 194 #: admin/admin_rvy.php:518 … … 357 359 msgstr "Restablecer filtros" 358 360 359 #: admin/class-list-table-archive.php:794 admin/options.php:19 78361 #: admin/class-list-table-archive.php:794 admin/options.php:1982 360 362 msgid "All" 361 363 msgstr "Todo" … … 371 373 372 374 #: admin/class-list-table-archive.php:862 admin/class-list-table_rvy.php:1686 373 #: admin/post-edit_rvy.php:18 5 admin/post-edit_rvy.php:249374 #: admin/post-edit_rvy.php:26 3375 #: admin/post-edit_rvy.php:187 admin/post-edit_rvy.php:251 376 #: admin/post-edit_rvy.php:265 375 377 msgctxt "revisions" 376 378 msgid "Compare" … … 436 438 msgstr "Esta revisión aún no está programada. Debe ser aprobada." 437 439 438 #: admin/class-list-table_rvy.php:860 admin/history_rvy.php:90 3440 #: admin/class-list-table_rvy.php:860 admin/history_rvy.php:907 439 441 msgid "No author" 440 442 msgstr "Sin autor" … … 519 521 msgstr "Revisión actualizada." 520 522 521 #: admin/history_rvy.php:8 3 admin/history_rvy.php:87 admin/history_rvy.php:93522 #: admin/history_rvy.php: 96rvy_init-functions.php:267523 #: admin/history_rvy.php:87 admin/history_rvy.php:91 admin/history_rvy.php:97 524 #: admin/history_rvy.php:100 rvy_init-functions.php:267 523 525 msgid "Copy" 524 526 msgstr "Copiar" 525 527 526 #: admin/history_rvy.php:8 3 admin/history_rvy.php:87528 #: admin/history_rvy.php:87 admin/history_rvy.php:91 527 529 msgid "Copy content to the clipboard." 528 530 msgstr "Copiar el contenido al portapapeles." 529 531 530 #: admin/history_rvy.php:9 3 admin/history_rvy.php:96532 #: admin/history_rvy.php:97 admin/history_rvy.php:100 531 533 msgid "Copy the above content to the clipboard." 532 534 msgstr "Copiar el contenido de arriba al portapapeles." 533 535 534 #: admin/history_rvy.php:2 78 admin/history_rvy.php:294536 #: admin/history_rvy.php:282 admin/history_rvy.php:298 535 537 #, php-format 536 538 msgid "Compare %s of \"%s\"" 537 539 msgstr "Compara %s de «%s»" 538 540 539 #: admin/history_rvy.php:6 47 admin/options.php:921541 #: admin/history_rvy.php:651 admin/options.php:922 540 542 msgid "Post Date" 541 543 msgstr "Fecha de publicación" 542 544 543 #: admin/history_rvy.php:6 48545 #: admin/history_rvy.php:652 544 546 msgid "Post Parent" 545 547 msgstr "Entrada padre" 546 548 547 #: admin/history_rvy.php:6 49549 #: admin/history_rvy.php:653 548 550 msgid "Menu Order" 549 551 msgstr "Orden del menú" 550 552 551 #: admin/history_rvy.php:65 0553 #: admin/history_rvy.php:654 552 554 msgid "Comment Status" 553 555 msgstr "Estado del comentario" 554 556 555 #: admin/history_rvy.php:65 1557 #: admin/history_rvy.php:655 556 558 msgid "Ping Status" 557 559 msgstr "Estado de ping" 558 560 559 #: admin/history_rvy.php:79 1561 #: admin/history_rvy.php:795 560 562 msgid "Page Template" 561 563 msgstr "Plantilla de página" 562 564 563 #: admin/history_rvy.php:79 4565 #: admin/history_rvy.php:798 564 566 msgid "Featured Image" 565 567 msgstr "Imagen destacada" 566 568 567 #: admin/history_rvy.php: 798569 #: admin/history_rvy.php:802 568 570 msgid "Beaver Builder Data" 569 571 msgstr "Datos de Beaver Builder" 570 572 571 #: admin/history_rvy.php: 799573 #: admin/history_rvy.php:803 572 574 msgid "Beaver Builder Settings" 573 575 msgstr "Ajustes de Beaver Builder" 574 576 575 #: admin/history_rvy.php:105 0577 #: admin/history_rvy.php:1054 576 578 msgid "Scheduled for " 577 579 msgstr "Programada para " 578 580 579 #: admin/history_rvy.php:105 5581 #: admin/history_rvy.php:1059 580 582 msgid "Requested for " 581 583 msgstr "Solicitado para " 582 584 583 #: admin/history_rvy.php:106 0585 #: admin/history_rvy.php:1064 584 586 msgid "Modified " 585 587 msgstr "Modificado " 586 588 587 #: admin/history_rvy.php:106 5589 #: admin/history_rvy.php:1069 588 590 #, php-format 589 591 msgid "%s%s from now" 590 592 msgstr "%s%s a partir de ahora" 591 593 592 #: admin/history_rvy.php:10 76594 #: admin/history_rvy.php:1080 593 595 msgid "M j, Y @ g:i a" 594 596 msgstr "j \\d\\e F \\d\\e Y @ H:i" 595 597 596 #: admin/history_rvy.php:112 1598 #: admin/history_rvy.php:1125 597 599 msgid "M j, Y @ H:i" 598 600 msgstr "j \\d\\e F \\d\\e Y @ H:i" 599 601 600 #: admin/history_rvy.php:112 2602 #: admin/history_rvy.php:1126 601 603 msgctxt "revision date short format" 602 604 msgid "j M @ H:i" 603 605 msgstr "j M @ H:i" 604 606 605 #: admin/history_rvy.php:12 08front_rvy.php:597 front_rvy.php:607607 #: admin/history_rvy.php:1212 front_rvy.php:597 front_rvy.php:607 606 608 #: front_rvy.php:626 front_rvy.php:657 rvy_init-functions.php:271 607 609 #: rvy_init-functions.php:289 rvy_init-functions.php:328 … … 610 612 msgstr "Aprobar" 611 613 612 #: admin/history_rvy.php:12 08614 #: admin/history_rvy.php:1212 613 615 msgid "Preview / Approve" 614 616 msgstr "Vista previa / Aprobar" 615 617 616 #: admin/history_rvy.php:121 0admin/post-editor-workflow-ui_rvy.php:77618 #: admin/history_rvy.php:1214 admin/post-editor-workflow-ui_rvy.php:77 617 619 #: admin/post-editor-workflow-ui_rvy.php:118 618 620 #: admin/post-editor-workflow-ui_rvy.php:231 … … 621 623 msgstr "Vista previa" 622 624 623 #: admin/history_rvy.php:130 4625 #: admin/history_rvy.php:1308 624 626 msgid "Preview / Restore" 625 627 msgstr "Vista previa / Restaurar" 626 628 627 #: admin/history_rvy.php:131 1629 #: admin/history_rvy.php:1315 628 630 msgid "Manage" 629 631 msgstr "Gestionar" 630 632 631 #: admin/history_rvy.php:131 2633 #: admin/history_rvy.php:1316 632 634 msgid "List" 633 635 msgstr "Lista" … … 645 647 msgstr "Características" 646 648 647 #: admin/options.php:158 admin/options.php:538 admin/revisions.php:237648 msgid "Past Revisions"649 msgstr "Revisiones anteriores"650 651 #: admin/options.php:159 admin/options.php:635652 msgid "New Revisions"653 msgstr "Nuevas revisiones"654 655 649 #: admin/options.php:160 656 650 msgid "Options" … … 665 659 msgstr "Estados" 666 660 667 #: admin/options.php:163 admin/options.php:95 4661 #: admin/options.php:163 admin/options.php:955 668 662 msgid "Notifications" 669 663 msgstr "Avisos" … … 682 676 683 677 #: admin/options.php:178 684 msgid " Revision Queueaccess requires role capability"685 msgstr "" 686 "Para acceder a la cola de revisiónes obligatoria una capacidad de perfil"678 msgid "New Revisions access requires role capability" 679 msgstr "" 680 "Para acceder a las nuevas revisiones es obligatoria una capacidad de perfil" 687 681 688 682 #: admin/options.php:179 … … 771 765 772 766 #: admin/options.php:195 767 msgid "Hide copy buttons on Compare screen" 768 msgstr "Ocultar los botones para copiar en la pantalla de comparación" 769 770 #: admin/options.php:196 773 771 msgid "Use WP-Cron scheduling" 774 772 msgstr "Utiliza la programación de WP-Cron" 775 773 776 #: admin/options.php:19 6774 #: admin/options.php:197 777 775 msgid "Site uses a custom trigger for WP-Cron tasks" 778 776 msgstr "" 779 777 "El sitio utiliza un disparador personalizado para las tareas de WP-Cron" 780 778 781 #: admin/options.php:19 7779 #: admin/options.php:198 782 780 msgid "Asynchronous Publishing" 783 781 msgstr "Publicación asíncrona" 784 782 785 #: admin/options.php:19 8 admin/options.php:199783 #: admin/options.php:199 admin/options.php:200 786 784 msgid "Update Publish Date" 787 785 msgstr "Actualizar la fecha de publicación" 788 786 789 #: admin/options.php:20 0 admin/options.php:201787 #: admin/options.php:201 admin/options.php:202 790 788 msgid "Update Modified Date" 791 789 msgstr "Actualización de la fecha de modificación" 792 790 793 #: admin/options.php:20 4 admin/options.php:205791 #: admin/options.php:205 admin/options.php:206 794 792 #, php-format 795 793 msgid "Use %1$sPlanner Notifications%2$s" 796 794 msgstr "Utilizar %1$sAvisos de planificación%2$s" 797 795 798 #: admin/options.php:20 7796 #: admin/options.php:208 799 797 #, php-format 800 798 msgid "Email original Author when a %s is submitted" 801 799 msgstr "Enviar un correo electrónico al autor original cuando se envia una %s" 802 800 803 #: admin/options.php:20 8801 #: admin/options.php:209 804 802 #, php-format 805 803 msgid "Email the original Author when a %s is approved" … … 807 805 "Enviar un correo electrónico al autor original cuando se apruebe una %s" 808 806 809 #: admin/options.php:2 09807 #: admin/options.php:210 810 808 #, php-format 811 809 msgid "Email the Revisor when a %s is approved" 812 810 msgstr "Enviar un correo electrónico al revisor cuando se apruebe una %s" 813 811 814 #: admin/options.php:21 0812 #: admin/options.php:211 815 813 #, php-format 816 814 msgid "Email the original Author when a %s is published" … … 818 816 "Enviar un correo electrónico al autor original cuando se publica una %s" 819 817 820 #: admin/options.php:21 1818 #: admin/options.php:212 821 819 #, php-format 822 820 msgid "Email the Revisor when a %s is published" 823 821 msgstr "Enviar un correo electrónico al revisor cuando se publica una %s" 824 822 825 #: admin/options.php:21 2823 #: admin/options.php:213 826 824 msgid "Enable notification buffer" 827 825 msgstr "Activar el búfer de avisos" 828 826 829 #: admin/options.php:21 3827 #: admin/options.php:214 830 828 msgid "Revisors can create a new revision for any custom post type" 831 829 msgstr "" … … 833 831 "contenido personalizado." 834 832 835 #: admin/options.php:21 4833 #: admin/options.php:215 836 834 msgid "Prevent Revisors from editing others' unpublished Posts" 837 835 msgstr "" 838 836 "Impide que los revisores editen las entradas no publicadas de otros usuarios" 839 837 840 #: admin/options.php:21 5838 #: admin/options.php:216 841 839 msgid "Display Hints" 842 840 msgstr "Mostrar sugerencias" 843 841 844 #: admin/options.php:21 6842 #: admin/options.php:217 845 843 msgid "Delete settings and Revisions if plugin is deleted" 846 844 msgstr "Borrar ajustes y revisiones si se elimina el plugin" 847 845 848 #: admin/options.php:21 7846 #: admin/options.php:218 849 847 msgid "Show Preview Links" 850 848 msgstr "Mostrar enlaces de vista previa" 851 849 852 #: admin/options.php:21 8850 #: admin/options.php:219 853 851 msgid "Preview Link Type" 854 852 msgstr "Tipo de enlace de vista previa" 855 853 856 #: admin/options.php:2 19854 #: admin/options.php:220 857 855 msgid "Modify preview link for better theme compatibility" 858 856 msgstr "" … … 860 858 "tema" 861 859 862 #: admin/options.php:22 0860 #: admin/options.php:221 863 861 msgid "Theme Compat: For front page revision preview, set home flag" 864 862 msgstr "" … … 866 864 "principal, establece la bandera de inicio" 867 865 868 #: admin/options.php:22 1866 #: admin/options.php:222 869 867 msgid "Approve Button on Compare screen" 870 868 msgstr "Botón de aprobación en la pantalla de comparación" 871 869 872 #: admin/options.php:22 2870 #: admin/options.php:223 873 871 msgid "Copy revision comments to published post" 874 872 msgstr "Copiar los comentarios de la revisión en la entrada publicada" 875 873 876 #: admin/options.php:22 3874 #: admin/options.php:224 877 875 msgid "Compare Past Revisions ordering:" 878 876 msgstr "Ordenar comparaciones de revisiones anteriores:" 879 877 880 #: admin/options.php:224881 #, php-format882 msgid ""883 "List %s in Revision Queue for \"My Activity\" or \"Revisions to My Posts\" "884 "view"885 msgstr ""886 "Listar %s en la cola de revisión para la vista «Mi actividad» o de "887 "«Revisiones de mis entradas»"888 889 878 #: admin/options.php:225 879 #, php-format 880 msgid "List %s for \"My Activity\" or \"Revisions to My Posts\" view" 881 msgstr "Listar %s para la vista «Mi actividad» o «Revisiones de mis entradas»" 882 883 #: admin/options.php:226 890 884 msgid "Store custom fields of submitted and scheduled revisions for archive" 891 885 msgstr "" … … 893 887 "archivo" 894 888 895 #: admin/options.php:22 6889 #: admin/options.php:227 896 890 msgid "Keep an archive of revision edits, even after the revision is published" 897 891 msgstr "" … … 899 893 "revisión se haya publicado" 900 894 901 #: admin/options.php:22 7895 #: admin/options.php:228 902 896 msgid "On Revision publication, delete Editorial Comments" 903 897 msgstr "Al revisar una publicación, borrar los comentarios editoriales" 904 898 905 #: admin/options.php:22 8899 #: admin/options.php:229 906 900 msgid "Enable deletion queue" 907 901 msgstr "Activar la cola de borrado" 908 902 909 #: admin/options.php:2 29903 #: admin/options.php:230 910 904 msgid "Allow Past Revisions to be deleted" 911 905 msgstr "Permitir de borrar las revisiones anteriores" 912 906 913 #: admin/options.php:23 0907 #: admin/options.php:231 914 908 msgid "Restoring a Revision requires role capability" 915 909 msgstr "" 916 910 "Para la restauración de una revisión es obligatoria una capacidad de perfil." 917 911 918 #: admin/options.php:23 1912 #: admin/options.php:232 919 913 msgid "Compatibility Mode" 920 914 msgstr "Modo de compatibilidad" 921 915 922 #: admin/options.php:23 2916 #: admin/options.php:233 923 917 msgid "Planner Notifications Access-Limited" 924 918 msgstr "Acceso limitado a los avisos del planificador" 925 919 926 #: admin/options.php:23 3920 #: admin/options.php:234 927 921 msgid "Maximum Revisions per post" 928 922 msgstr "Número máximo de revisiones por entrada" 929 923 930 #: admin/options.php:23 4924 #: admin/options.php:235 931 925 msgid "Apply Post Permissions to Revisions" 932 926 msgstr "Aplicar los permisos de la entrada a las revisiones" 933 927 934 #: admin/options.php:23 5928 #: admin/options.php:236 935 929 msgid "Enable legacy email notifications" 936 930 msgstr "Activar los avisos de correos electrónicos heredados" 937 931 938 #: admin/options.php:23 6932 #: admin/options.php:237 939 933 msgid "Use extended captions for Approve button in Post Editor" 940 934 msgstr "" … … 942 936 "entradas" 943 937 944 #: admin/options.php:23 7938 #: admin/options.php:238 945 939 msgid "Create Revision button in editor opens new tab" 946 940 msgstr "El botón «Crear revisión» del editor abre una nueva pestaña" 947 941 948 #: admin/options.php:23 8942 #: admin/options.php:239 949 943 msgid "Disable Rank Math SEO panel for Revision edit" 950 944 msgstr "Desactivar el panel de Rank Math SEO para editar la revisión" 951 945 952 #: admin/options.php:24 3946 #: admin/options.php:244 953 947 #, php-format 954 948 msgid "Email designated Publishers when a %s is submitted" … … 956 950 "Enviar un correo electrónico a los editores designados cuando se envia una %s" 957 951 958 #: admin/options.php:24 4952 #: admin/options.php:245 959 953 #, php-format 960 954 msgid "Email designated Publishers when a %s is published" … … 963 957 "%s" 964 958 965 #: admin/options.php:24 5959 #: admin/options.php:246 966 960 #, php-format 967 961 msgid "Email designated Publishers when a %s is approved" … … 970 964 "%s" 971 965 972 #: admin/options.php:24 7966 #: admin/options.php:248 973 967 #, php-format 974 968 msgid "Email Editors and Administrators when a %s is submitted" … … 977 971 "envia una %s" 978 972 979 #: admin/options.php:24 8973 #: admin/options.php:249 980 974 #, php-format 981 975 msgid "Email Editors and Administrators when a %s is published" … … 984 978 "publica una %s" 985 979 986 #: admin/options.php:2 49980 #: admin/options.php:250 987 981 #, php-format 988 982 msgid "Email Editors and Administrators when a %s is approved" … … 991 985 "aprueba una %s" 992 986 993 #: admin/options.php:32 8987 #: admin/options.php:329 994 988 msgid "PublishPress Revisions Site Settings" 995 989 msgstr "Ajustes del sitio para PublishPress Revisions" 996 990 997 #: admin/options.php:35 8991 #: admin/options.php:359 998 992 msgid "" 999 993 "These are the default settings for options which can be adjusted per-site." … … 1002 996 "por sitio." 1003 997 1004 #: admin/options.php:39 6998 #: admin/options.php:397 1005 999 #, php-format 1006 1000 msgid "" … … 1011 1005 "PublishPress Revisions. %s" 1012 1006 1013 #: admin/options.php: 3991007 #: admin/options.php:400 1014 1008 #, php-format 1015 1009 msgid "You can also specify %1$sdefaults for site-specific settings%2$s." … … 1018 1012 "específicos del sitio%2$s." 1019 1013 1020 #: admin/options.php:40 21014 #: admin/options.php:403 1021 1015 msgid "" 1022 1016 "Here you can change the default value for settings which are controlled " … … 1026 1020 "separado en cada sitio." 1027 1021 1028 #: admin/options.php:41 2 admin/options.php:4141022 #: admin/options.php:413 admin/options.php:415 1029 1023 #, php-format 1030 1024 msgid "Note that %1$s network-wide settings%2$s may also be available." … … 1032 1026 "Ten cuenta que %1$s ajustes de la red%2$s también pueden estar disponibles." 1033 1027 1034 #: admin/options.php: 4991028 #: admin/options.php:500 1035 1029 msgid "License" 1036 1030 msgstr "Licencia" 1037 1031 1038 #: admin/options.php:542 1039 msgid "" 1040 "Past Revisions are earlier versions of a post. They are listed in the " 1041 "Revision Archive." 1042 msgstr "" 1043 "Las revisiones anteriores son versiones anteriores de una entrada. Se listan " 1044 "en el «Archivo de revisiones»." 1045 1046 #: admin/options.php:597 1032 #: admin/options.php:543 1033 msgid "Past Revisions are earlier versions of a post." 1034 msgstr "Las revisiones anteriores son versiones anteriores de una entrada." 1035 1036 #: admin/options.php:598 1047 1037 msgid "This post type does not support Past Revisions." 1048 1038 msgstr "Este tipo de contenido no es compatible con las revisiones anteriores." 1049 1039 1050 #: admin/options.php:639 1051 msgid "" 1052 "New Revisions are changes which are not yet published. They are listed in " 1053 "the Revision Queue." 1054 msgstr "" 1055 "Las nuevas revisiones son cambios que aún no se han publicado. Se listan en " 1056 "la cola de revisiones." 1057 1058 #: admin/options.php:728 1040 #: admin/options.php:640 1041 msgid "New Revisions are changes which are not yet published." 1042 msgstr "Las nuevas revisiones son cambios que aún no se han publicado." 1043 1044 #: admin/options.php:729 1059 1045 msgid "" 1060 1046 "Note: Third party code may cause some post types to be incompatible with " … … 1064 1050 "incompatibles con PublishPress Revisions." 1065 1051 1066 #: admin/options.php:73 81052 #: admin/options.php:739 1067 1053 #, php-format 1068 1054 msgid "" … … 1073 1059 "y el tablero de contenidos, por favor actualiza %sPublishPress Planner Pro%s." 1074 1060 1075 #: admin/options.php:7 591061 #: admin/options.php:760 1076 1062 msgid "Ready to enhance your revision workflow?" 1077 1063 msgstr "¿Estás listo para mejorar tus flujo de trabajo de revisión?" 1078 1064 1079 #: admin/options.php:76 21065 #: admin/options.php:763 1080 1066 msgid "" 1081 1067 "Get PublishPress Statuses Pro and optimize your revision process with custom " … … 1085 1071 "estados de revisión personalizados." 1086 1072 1087 #: admin/options.php:76 81073 #: admin/options.php:769 1088 1074 msgid "Define your own statuses before or after Revision Submitted" 1089 1075 msgstr "Define tus propios estados antes o después de enviar la revisión" 1090 1076 1091 #: admin/options.php:77 11077 #: admin/options.php:772 1092 1078 msgid "New predefined statuses: Deferred, Needs Work, Rejected" 1093 1079 msgstr "" 1094 1080 "Nuevos estados predefinidos: «Aplazada», «Necesita trabajo», «Rechazada»" 1095 1081 1096 #: admin/options.php:77 41082 #: admin/options.php:775 1097 1083 msgid "Statuses can be specific to a post type" 1098 1084 msgstr "Los estados pueden ser específicos para un tipo de contenido" 1099 1085 1100 #: admin/options.php:77 71086 #: admin/options.php:778 1101 1087 msgid "Control access to statuses per-role" 1102 1088 msgstr "Controla el acceso a los estados por perfil" 1103 1089 1104 #: admin/options.php:78 01090 #: admin/options.php:781 1105 1091 msgid "Status workflow can be nested with sub-statuses" 1106 1092 msgstr "El flujo de trabajo de estado se puede anidar con subestados" 1107 1093 1108 #: admin/options.php:7 891094 #: admin/options.php:790 1109 1095 msgid "Get PublishPress Statuses Pro" 1110 1096 msgstr "Obtén PublishPress Statuses Pro" 1111 1097 1112 #: admin/options.php:79 4 admin/options.php:812 admin/options.php:17611113 #: admin/options.php:17 79 admin/options.php:2310 admin/options.php:23241114 #: admin/options.php:233 4 admin/options.php:23441098 #: admin/options.php:795 admin/options.php:813 admin/options.php:1762 1099 #: admin/options.php:1780 admin/options.php:2314 admin/options.php:2328 1100 #: admin/options.php:2338 admin/options.php:2348 1115 1101 msgid "Learn More" 1116 1102 msgstr "Más información" 1117 1103 1118 #: admin/options.php:80 71104 #: admin/options.php:808 1119 1105 msgid "Pro Plugin" 1120 1106 msgstr "Plugin Pro" 1121 1107 1122 #: admin/options.php:80 81108 #: admin/options.php:809 1123 1109 msgid "Install Statuses Pro to unlock custom revision statuses." 1124 1110 msgstr "" 1125 1111 "Instalar Statuses Pro para desbloquear estados de revisión personalizados." 1126 1112 1127 #: admin/options.php:8 091113 #: admin/options.php:810 1128 1114 msgid "Configure for any post type and role to match your editing workflow." 1129 1115 msgstr "" … … 1131 1117 "adapte a tu flujo de trabajo de edición." 1132 1118 1133 #: admin/options.php:81 61119 #: admin/options.php:817 1134 1120 msgid "Get Statuses Pro" 1135 1121 msgstr "Obtén Statuses Pro" 1136 1122 1137 #: admin/options.php:89 0 admin/options.php:1056 admin/options.php:12911138 #: admin/options.php:131 7 admin/options.php:1343 admin/options.php:13711139 #: admin/options.php:18 791123 #: admin/options.php:891 admin/options.php:1057 admin/options.php:1292 1124 #: admin/options.php:1318 admin/options.php:1344 admin/options.php:1372 1125 #: admin/options.php:1880 1140 1126 #, php-format 1141 1127 msgid "%s capability" 1142 1128 msgstr "Capacidad de %s" 1143 1129 1144 #: admin/options.php:89 5 admin/options.php:1061 admin/options.php:12961145 #: admin/options.php:132 2 admin/options.php:1348 admin/options.php:13761146 #: admin/options.php:188 41130 #: admin/options.php:896 admin/options.php:1062 admin/options.php:1297 1131 #: admin/options.php:1323 admin/options.php:1349 admin/options.php:1377 1132 #: admin/options.php:1885 1147 1133 msgid "Assign capability to roles" 1148 1134 msgstr "Asignar capacidad a los perfiles" 1149 1135 1150 #: admin/options.php:90 21136 #: admin/options.php:903 1151 1137 #, php-format 1152 1138 msgid "Prevent non-Administrators from restoring a revision without the %s." … … 1155 1141 "sin el %s." 1156 1142 1157 #: admin/options.php:90 81143 #: admin/options.php:909 1158 1144 msgid "" 1159 1145 "Prevent non-Administrators from restoring a revision without the " … … 1163 1149 "sin la capacidad «restore_revisions»" 1164 1150 1165 #: admin/options.php:92 11151 #: admin/options.php:922 1166 1152 msgid "Modification Date" 1167 1153 msgstr "Fecha de modificación" 1168 1154 1169 #: admin/options.php:9 491155 #: admin/options.php:950 1170 1156 msgid "Revision Creation" 1171 1157 msgstr "Creación de revisión" 1172 1158 1173 #: admin/options.php:95 01159 #: admin/options.php:951 1174 1160 msgid "Submission" 1175 1161 msgstr "Envío" 1176 1162 1177 #: admin/options.php:95 11163 #: admin/options.php:952 1178 1164 msgid "Scheduling" 1179 1165 msgstr "Programación" 1180 1166 1181 #: admin/options.php:95 21167 #: admin/options.php:953 1182 1168 msgid "Publication" 1183 1169 msgstr "Publicación" 1184 1170 1185 #: admin/options.php:100 61171 #: admin/options.php:1007 1186 1172 msgid "Create Revision capabilities" 1187 1173 msgstr "Crear capacidades de revisión" 1188 1174 1189 #: admin/options.php:101 1 admin/options.php:1036 admin/options.php:11781175 #: admin/options.php:1012 admin/options.php:1037 admin/options.php:1179 1190 1176 msgid "Assign capabilities to roles" 1191 1177 msgstr "Asignar capacidades a los perfiles" 1192 1178 1193 #: admin/options.php:101 8 admin/options.php:11851179 #: admin/options.php:1019 admin/options.php:1186 1194 1180 #, php-format 1195 1181 msgid "If the user can't edit the published post, require %s." 1196 1182 msgstr "Si el usuario no puede editar la entrada publicada, es obligatoria %s." 1197 1183 1198 #: admin/options.php:102 41184 #: admin/options.php:1025 1199 1185 msgid "" 1200 1186 "If the user can't edit the published post, require Create Revision " … … 1204 1190 "capacidades para crear revisiones (copy_posts, copy_others_pages, etc.)" 1205 1191 1206 #: admin/options.php:103 21192 #: admin/options.php:1033 1207 1193 #, php-format 1208 1194 msgid "To expand the Pages list, assign %s." 1209 1195 msgstr "Para expandir la lista de páginas, asignar %s." 1210 1196 1211 #: admin/options.php:103 51197 #: admin/options.php:1036 1212 1198 msgid "Listing capabilities" 1213 1199 msgstr "Capacidades para listar" 1214 1200 1215 #: admin/options.php:104 21201 #: admin/options.php:1043 1216 1202 msgid "" 1217 1203 "To expand the Pages list, assign Listing capabilities (list_others_pages, " … … 1221 1207 "(list_others_pages, list_published_posts, etc.)" 1222 1208 1223 #: admin/options.php:104 81209 #: admin/options.php:1049 1224 1210 msgid "This plugin introduces a new user role, \"Revisor.\"" 1225 1211 msgstr "Este plugin introduce un nuevo perfil de usuario, «Revisor»." 1226 1212 1227 #: admin/options.php:106 81213 #: admin/options.php:1069 1228 1214 #, php-format 1229 1215 msgid "" … … 1234 1220 "eliminación de todas las etiquetas html personalizadas." 1235 1221 1236 #: admin/options.php:107 41222 #: admin/options.php:1075 1237 1223 msgid "" 1238 1224 "Revision by a user who does not have the unfiltered_html capability will " … … 1243 1229 "personalizadas." 1244 1230 1245 #: admin/options.php:109 11231 #: admin/options.php:1092 1246 1232 msgid "Broadest compat including Elementor, Divi, Beaver Builder" 1247 1233 msgstr "" 1248 1234 "La más amplia compatibilidad incluyendo Elementor, Divi, Beaver Builder" 1249 1235 1250 #: admin/options.php:109 21236 #: admin/options.php:1093 1251 1237 msgid "Standard storage schema for broadest 3rd party compat" 1252 1238 msgstr "" 1253 1239 "Esquema de almacenamiento estándar para una mayor compatibilidad con terceros" 1254 1240 1255 #: admin/options.php:109 71241 #: admin/options.php:1098 1256 1242 msgid "Enhanced Revision access control with PublishPress plugins" 1257 1243 msgstr "" 1258 1244 "Control de acceso a la revisión mejorado con los plugins de PublishPress" 1259 1245 1260 #: admin/options.php:110 81246 #: admin/options.php:1109 1261 1247 msgid "" 1262 1248 "In enhanced mode, a Revision's status is stored by standard WordPress " … … 1266 1252 "esquema estándar de WordPress. Algunos plugins son incompatibles." 1267 1253 1268 #: admin/options.php:111 51254 #: admin/options.php:1116 1269 1255 msgid "" 1270 1256 "Prevent Revision creation if the post already has another Revision in " … … 1274 1260 "curso." 1275 1261 1276 #: admin/options.php:11 191262 #: admin/options.php:1120 1277 1263 msgid "" 1278 1264 "Work around cache plugin conflicts by requerying for revisions before " … … 1282 1268 "revisiones antes de suprimir el enlace «Nueva revisión»." 1283 1269 1284 #: admin/options.php:113 81270 #: admin/options.php:1139 1285 1271 #, php-format 1286 1272 msgid "" … … 1291 1277 "%s como «Editar»." 1292 1278 1293 #: admin/options.php:114 11279 #: admin/options.php:1142 1294 1280 msgid "" 1295 1281 "Default labels are \"Not Submitted for Approval\", \"Submitted for " … … 1299 1285 "aprobación», «Revisión programada»" 1300 1286 1301 #: admin/options.php:11 591287 #: admin/options.php:1160 1302 1288 #, php-format 1303 1289 msgid "" 1304 1290 "Enable published content to be copied, edited, submitted for approval and " 1305 "managed in %sRevision Queue%s."1291 "managed on the %sNew Revisions%s screen." 1306 1292 msgstr "" 1307 1293 "Activar el contenido publicado para ser copiado, editado, enviado para la " 1308 "aprobación y gestionado en la %scola de revisión%s."1309 1310 #: admin/options.php:117 31294 "aprobación y gestionado en la pantalla %sNuevas revisiones%s." 1295 1296 #: admin/options.php:1174 1311 1297 msgid "Submit Revision capabilities" 1312 1298 msgstr "Enviar las capacidades de revisión" 1313 1299 1314 #: admin/options.php:119 11300 #: admin/options.php:1192 1315 1301 msgid "" 1316 1302 "If the user can't edit the published post, require Submit Revision " … … 1320 1306 "capacidades para enviar revisiones (revise_posts, revise_others_pages, etc.)" 1321 1307 1322 #: admin/options.php:119 6 admin/options.php:12281308 #: admin/options.php:1197 admin/options.php:1229 1323 1309 #, php-format 1324 1310 msgid "When a %s is published, update post publish date to current time." … … 1327 1313 "la hora actual." 1328 1314 1329 #: admin/options.php:1 199 admin/options.php:12311315 #: admin/options.php:1200 admin/options.php:1232 1330 1316 #, php-format 1331 1317 msgid "When a %s is published, update post modified date to current time." … … 1334 1320 "la hora actual." 1335 1321 1336 #: admin/options.php:120 21322 #: admin/options.php:1203 1337 1323 msgid "" 1338 1324 "When a user who has publishing capabilities creates a Revision, set it to " … … 1342 1328 "el estado «Enviada»." 1343 1329 1344 #: admin/options.php:120 51330 #: admin/options.php:1206 1345 1331 msgid "" 1346 1332 "This allows immediate approval within the Compare screen. If disabled, a " … … 1350 1336 "desactiva, en su lugar se proporciona un enlace de «Vista previa»." 1351 1337 1352 #: admin/options.php:122 21338 #: admin/options.php:1223 1353 1339 msgid "" 1354 1340 "If a currently published post or page is edited and a future date set, the " … … 1358 1344 "fecha futura, el cambio no se aplicará hasta la fecha seleccionada." 1359 1345 1360 #: admin/options.php:123 61346 #: admin/options.php:1237 1361 1347 msgid "" 1362 1348 "Publish scheduled revisions using the WP-Cron mechanism. On some sites, " … … 1366 1352 "sitios, la publicación fallará si este ajuste está desactivado." 1367 1353 1368 #: admin/options.php:124 01354 #: admin/options.php:1241 1369 1355 msgid "" 1370 1356 "Publish scheduled revisions asynchronously, via a secondary http request " … … 1376 1362 "que elimina el retraso, pero algunos servidores pueden no soportarlo." 1377 1363 1378 #: admin/options.php:124 51364 #: admin/options.php:1246 1379 1365 msgid "" 1380 1366 "The WP-Cron trigger is disabled, but scheduled tasks are still excecuted " … … 1384 1370 "siguen ejecutando mediante un disparador personalizado." 1385 1371 1386 #: admin/options.php:12 591372 #: admin/options.php:1260 1387 1373 msgid "" 1388 1374 "Caption the button as either \"Approve and Publish\" or \"Approve and " … … 1391 1377 "Ponerle al botón el título «Aprobar y publicar» o «Aprobar y programar»." 1392 1378 1393 #: admin/options.php:126 81379 #: admin/options.php:1269 1394 1380 msgid "This may improve compatibility with some plugins." 1395 1381 msgstr "Esto puede mejorar la compatibilidad con algunos plugins." 1396 1382 1397 #: admin/options.php:1303 1398 #, php-format 1399 msgid "Control Revision Queue access with the %s." 1400 msgstr "Controla el acceso a la cola de revisión con %s." 1401 1402 #: admin/options.php:1309 1403 msgid "" 1404 "Control Revision Queue access with the manage_revision_queue capability." 1405 msgstr "" 1406 "Controla el acceso a la cola de revisión con la capacidad " 1407 "«manage_revision_queue»." 1408 1409 #: admin/options.php:1329 1383 #: admin/options.php:1304 1384 #, php-format 1385 msgid "Control New Revisions access with the %s." 1386 msgstr "Controla el acceso a las nuevas revisiones con la %s." 1387 1388 #: admin/options.php:1310 1389 msgid "Control New Revisions access with the manage_revision_queue capability." 1390 msgstr "" 1391 "Controla el acceso a las nuevas revisiones con la capacidad " 1392 "`manage_revision_queue`." 1393 1394 #: admin/options.php:1330 1410 1395 #, php-format 1411 1396 msgid "Users will need the %s to edit others' Unsubmitted Revisions." … … 1414 1399 "otros usuarios." 1415 1400 1416 #: admin/options.php:133 51401 #: admin/options.php:1336 1417 1402 msgid "" 1418 1403 "Users will need the manage_unsubmitted_revisions capability to edit others' " … … 1422 1407 "editar las revisiones no enviadas de otros usuarios." 1423 1408 1424 #: admin/options.php:135 5 admin/options.php:13831409 #: admin/options.php:1356 admin/options.php:1384 1425 1410 #, php-format 1426 1411 msgid "If the user can't edit the published post, require the %s." … … 1428 1413 "Si el usuario no puede editar la entrada publicada, son obligatorias las %s." 1429 1414 1430 #: admin/options.php:136 11415 #: admin/options.php:1362 1431 1416 msgid "" 1432 1417 "If the user can't edit the published post, require the edit_others_revisions " … … 1436 1421 "capacidad «edit_others_revisions»." 1437 1422 1438 #: admin/options.php:13 891423 #: admin/options.php:1390 1439 1424 msgid "" 1440 1425 "If the user can't edit the published post, require the list_others_revisions " … … 1444 1429 "capacidad «list_others_revisions»." 1445 1430 1446 #: admin/options.php:139 41431 #: admin/options.php:1395 1447 1432 msgid "" 1448 1433 "Bypass the above restrictions for others' revisions to logged in user's own " … … 1452 1437 "propias entradas del usuario conectado." 1453 1438 1454 #: admin/options.php:140 51439 #: admin/options.php:1406 1455 1440 msgid "Regenerate \"post has revision\" flags" 1456 1441 msgstr "Regenerar marcadores de «la entrada tiene revisión»" 1457 1442 1458 #: admin/options.php:140 81443 #: admin/options.php:1409 1459 1444 msgid "" 1460 1445 "Apply this maintenance operation if Has Revision labels on Posts / Pages " 1461 "screens mismatch the Revision Queuelisting."1462 msgstr "" 1463 "Aplica esta operación de mantenimiento si las etiquetas de revisión en las"1464 " pantallas de entradas/páginas no coinciden con la lista de la cola de"1465 "revisi ón."1466 1467 #: admin/options.php:143 31446 "screens mismatch the New Revisions listing." 1447 msgstr "" 1448 "Aplica esta operación de mantenimiento si las etiquetas «Tiene revisión» en " 1449 "las pantallas de entradas/páginas no coinciden con la lista de las nuevas " 1450 "revisiones." 1451 1452 #: admin/options.php:1434 1468 1453 #, php-format 1469 1454 msgid "For enhanced notifications, install %sPublishPress Planner%s." 1470 1455 msgstr "Para avisos mejorados, instalar %sPublishPress Planner%s." 1471 1456 1472 #: admin/options.php:144 61457 #: admin/options.php:1447 1473 1458 #, php-format 1474 1459 msgid "For enhanced notifications, update %sPublishPress Planner%s." 1475 1460 msgstr "Para avisos mejorados, actualizar %sPublishPress Planner%s." 1476 1461 1477 #: admin/options.php:146 81462 #: admin/options.php:1469 1478 1463 #, php-format 1479 1464 msgid "" … … 1484 1469 "avisos de %1$sPublishPress Planner%2$s." 1485 1470 1486 #: admin/options.php:14 691471 #: admin/options.php:1470 1487 1472 #, php-format 1488 1473 msgid "" … … 1494 1479 "Planner%2$s." 1495 1480 1496 #: admin/options.php:148 11481 #: admin/options.php:1482 1497 1482 msgid "" 1498 1483 "Users matching Planner > Notifications configuration get revision " … … 1502 1487 "recibirán avisos de revisión solo si pueden editar la entrada publicada." 1503 1488 1504 #: admin/options.php:152 3 admin/options.php:15451489 #: admin/options.php:1524 admin/options.php:1546 1505 1490 msgid "Never" 1506 1491 msgstr "Nunca" 1507 1492 1508 #: admin/options.php:152 3 admin/options.php:15451493 #: admin/options.php:1524 admin/options.php:1546 1509 1494 msgid "By default" 1510 1495 msgstr "Por defecto" 1511 1496 1512 #: admin/options.php:152 3 admin/options.php:15451497 #: admin/options.php:1524 admin/options.php:1546 1513 1498 msgid "Always" 1514 1499 msgstr "Siempre" 1515 1500 1516 #: admin/options.php:153 4 admin/options.php:15811501 #: admin/options.php:1535 admin/options.php:1582 1517 1502 msgid "select recipients" 1518 1503 msgstr "seleccionar destinatarios" 1519 1504 1520 #: admin/options.php:159 51505 #: admin/options.php:1596 1521 1506 msgid "" 1522 1507 "To avoid notification failures, buffer emails for delayed sending once " … … 1527 1512 "minutos, horas o días" 1528 1513 1529 #: admin/options.php:161 61514 #: admin/options.php:1617 1530 1515 msgid "Notification Buffer" 1531 1516 msgstr "Búfer de avisos" 1532 1517 1533 #: admin/options.php:164 41518 #: admin/options.php:1645 1534 1519 msgid "Notification Log" 1535 1520 msgstr "Registro de avisos" 1536 1521 1537 #: admin/options.php:167 31522 #: admin/options.php:1674 1538 1523 msgid "Purge Notification Buffer" 1539 1524 msgstr "Vaciar el búfer de avisos" 1540 1525 1541 #: admin/options.php:16 791526 #: admin/options.php:1680 1542 1527 msgid "Truncate Notification Log" 1543 1528 msgstr "Truncar el registro de avisos" 1544 1529 1545 #: admin/options.php:168 51530 #: admin/options.php:1686 1546 1531 #, php-format 1547 1532 msgid "Sent in last minute: %d / %d" 1548 1533 msgstr "Enviado en el último minuto: %d / %d" 1549 1534 1550 #: admin/options.php:168 61535 #: admin/options.php:1687 1551 1536 #, php-format 1552 1537 msgid "Sent in last hour: %d / %d" 1553 1538 msgstr "Enviado en la última hora: %d / %d" 1554 1539 1555 #: admin/options.php:168 71540 #: admin/options.php:1688 1556 1541 #, php-format 1557 1542 msgid "Sent in last day: %d / %d" 1558 1543 msgstr "Enviado en el último día: %d / %d" 1559 1544 1560 #: admin/options.php:169 41545 #: admin/options.php:1695 1561 1546 #, php-format 1562 1547 msgid "Seconds until next buffer processing time: %d" 1563 1548 msgstr "Segundos hasta la siguiente vez de procesamiento del búfer: %d" 1564 1549 1565 #: admin/options.php:170 51550 #: admin/options.php:1706 1566 1551 msgid "Show Notification Log / Buffer" 1567 1552 msgstr "Mostrar el aviso de registro / búfer" 1568 1553 1569 #: admin/options.php:170 71554 #: admin/options.php:1708 1570 1555 msgid "Show with message content" 1571 1556 msgstr "Mostrar con el contenido del mensaje" 1572 1557 1573 #: admin/options.php:17 291558 #: admin/options.php:1730 1574 1559 msgid "Ready to enhance your revision notifications?" 1575 1560 msgstr "¿Estás listo para mejorar tus avisos de revisión?" 1576 1561 1577 #: admin/options.php:173 21562 #: admin/options.php:1733 1578 1563 msgid "" 1579 1564 "Upgrade to Revisions Pro for integration with our PublishPress Planner " … … 1583 1568 "de PublishPress Planner." 1584 1569 1585 #: admin/options.php:173 81570 #: admin/options.php:1739 1586 1571 msgid "Customize notification message and subject" 1587 1572 msgstr "Personaliza el mensaje y el asunto del aviso" 1588 1573 1589 #: admin/options.php:174 11574 #: admin/options.php:1742 1590 1575 msgid "Notify for a specific post type, category or term" 1591 1576 msgstr "Avisar para un tipo de contenido, categoría o término específico" 1592 1577 1593 #: admin/options.php:174 41578 #: admin/options.php:1745 1594 1579 msgid "Target specific roles, users, or user groups" 1595 1580 msgstr "Destinar perfiles específicos, usuarios o grupos de usuarios" 1596 1581 1597 #: admin/options.php:174 71582 #: admin/options.php:1748 1598 1583 msgid "With PublishPress Planner Pro, send notifications to a Slack channel" 1599 1584 msgstr "Con PublishPress Planner Pro, envías avisos a un canal de Slack." 1600 1585 1601 #: admin/options.php:177 4 admin/options.php:23041586 #: admin/options.php:1775 admin/options.php:2308 1602 1587 msgid "Pro Feature" 1603 1588 msgstr "Característica Pro" 1604 1589 1605 #: admin/options.php:177 51590 #: admin/options.php:1776 1606 1591 msgid "Upgrade to Revisions Pro to unlock Planner Notifications integration." 1607 1592 msgstr "" … … 1609 1594 "los avisos de Planner." 1610 1595 1611 #: admin/options.php:177 61596 #: admin/options.php:1777 1612 1597 msgid "" 1613 1598 "Customize notification content and recipients for each notification type." … … 1616 1601 "aviso." 1617 1602 1618 #: admin/options.php:180 01603 #: admin/options.php:1801 1619 1604 msgid "Some themes may block revision preview." 1620 1605 msgstr "Algunos temas pueden bloquear la vista previa de la revisión." 1621 1606 1622 #: admin/options.php:181 71607 #: admin/options.php:1818 1623 1608 msgid "Published Post Slug" 1624 1609 msgstr "Slug de la entrada publicada" 1625 1610 1626 #: admin/options.php:181 81611 #: admin/options.php:1819 1627 1612 msgid "Revision Slug" 1628 1613 msgstr "Slug de revisión" 1629 1614 1630 #: admin/options.php:18 191615 #: admin/options.php:1820 1631 1616 msgid "Revision ID only" 1632 1617 msgstr "Solo el ID de la revisión" 1633 1618 1634 #: admin/options.php:183 41619 #: admin/options.php:1835 1635 1620 msgid "" 1636 1621 "Some themes or plugins may require Revision Slug or Revision ID link type " … … 1641 1626 "de los campos." 1642 1627 1643 #: admin/options.php:184 31628 #: admin/options.php:1844 1644 1629 #, php-format 1645 1630 msgid "The revision preview argument is configured by constant definition: %s" … … 1648 1633 "la constante: %s" 1649 1634 1650 #: admin/options.php:185 01635 #: admin/options.php:1851 1651 1636 msgid "" 1652 1637 "Adjust preview links to use \"rv_preview\" argument instead of \"preview\". " … … 1657 1642 "mejor con tu tema." 1658 1643 1659 #: admin/options.php:185 41644 #: admin/options.php:1855 1660 1645 msgid "" 1661 1646 "Some themes may require this setting for correct revision preview display." … … 1664 1649 "muestre correctamente la vista previa de la revisión." 1665 1650 1666 #: admin/options.php:189 11651 #: admin/options.php:1892 1667 1652 #, php-format 1668 1653 msgid "" … … 1672 1657 "entradas no publicadas de otros." 1673 1658 1674 #: admin/options.php:189 71659 #: admin/options.php:1898 1675 1660 msgid "" 1676 1661 "If the user can't publish, require the edit_others_drafts capability to edit " … … 1680 1665 "«edit_others_drafts» para editar las entradas no publicadas de otros." 1681 1666 1682 #: admin/options.php:190 31667 #: admin/options.php:1904 1683 1668 msgid "" 1684 1669 "If post-specific permissions restrict or expand access to a post, apply " … … 1688 1673 "la misma, esos permisos también se aplicarán a sus revisiones." 1689 1674 1690 #: admin/options.php:191 21675 #: admin/options.php:1916 1691 1676 msgid "Rank Math SEO may prevent Revision update on some sites." 1692 1677 msgstr "" … … 1694 1679 "sitios." 1695 1680 1696 #: admin/options.php:19 19includes/CoreAdmin.php:2051681 #: admin/options.php:1923 includes/CoreAdmin.php:205 1697 1682 msgid "WPML Translation Management" 1698 1683 msgstr "Gestión de las traducciones de WPML" 1699 1684 1700 #: admin/options.php:192 41685 #: admin/options.php:1928 1701 1686 msgid "Sync \"Needs Update\" flags" 1702 1687 msgstr "Sincronización de los marcadores «Necesita actualización»" 1703 1688 1704 #: admin/options.php:19 281689 #: admin/options.php:1932 1705 1690 msgid "" 1706 1691 "Set \"Needs Update\" for any post with translations which was updated " … … 1711 1696 "recientemente que sus traducciones." 1712 1697 1713 #: admin/options.php:19 381698 #: admin/options.php:1942 1714 1699 msgid "Show descriptive captions for PublishPress Revisions settings." 1715 1700 msgstr "" 1716 1701 "Mostrar leyendas descriptivas para los ajustes de PublishPress Revisions." 1717 1702 1718 #: admin/options.php:194 11719 msgid "" 1720 "Plugin settings, Revision Queuecontents and related data will be deleted, "1703 #: admin/options.php:1945 1704 msgid "" 1705 "Plugin settings, New Revisions contents and related data will be deleted, " 1721 1706 "but only after the last copy of Revisions / Revisions Pro is deleted." 1722 1707 msgstr "" 1723 "Los ajustes del plugin, el contenido de la cola derevisiones y los datos "1708 "Los ajustes del plugin, el contenido de las nuevas revisiones y los datos " 1724 1709 "relacionados se borrarán, pero solo después de que se borre la última copia " 1725 1710 "de Revisions/Revisions Pro." 1726 1711 1727 #: admin/options.php:196 21712 #: admin/options.php:1966 1728 1713 msgid "Unlock Pro Integrations" 1729 1714 msgstr "Desbloquea las integraciones Pro" 1730 1715 1731 #: admin/options.php:196 31716 #: admin/options.php:1967 1732 1717 msgid "" 1733 1718 "Upgrade to the Pro version for optimal compatibility and prompt, " … … 1737 1722 "soporte rápido y profesional." 1738 1723 1739 #: admin/options.php:198 1 admin/options.php:22291724 #: admin/options.php:1985 admin/options.php:2233 1740 1725 msgid "Admin" 1741 1726 msgstr "Administrador" 1742 1727 1743 #: admin/options.php:198 4 admin/options.php:22271728 #: admin/options.php:1988 admin/options.php:2231 1744 1729 msgid "Builder" 1745 1730 msgstr "Maquetador" 1746 1731 1747 #: admin/options.php:19 87 admin/options.php:22311732 #: admin/options.php:1991 admin/options.php:2235 1748 1733 msgid "Cache" 1749 1734 msgstr "Caché" 1750 1735 1751 #: admin/options.php:199 01736 #: admin/options.php:1994 1752 1737 msgid "E-Commerce" 1753 1738 msgstr "Comercio electrónico" 1754 1739 1755 #: admin/options.php:199 3 admin/options.php:22371740 #: admin/options.php:1997 admin/options.php:2241 1756 1741 msgid "Fields" 1757 1742 msgstr "Campos" 1758 1743 1759 #: admin/options.php: 19971744 #: admin/options.php:2001 1760 1745 msgid "Multilingual" 1761 1746 msgstr "Multilingüe" 1762 1747 1763 #: admin/options.php:200 1 admin/options.php:22331748 #: admin/options.php:2005 admin/options.php:2237 1764 1749 msgid "SEO" 1765 1750 msgstr "SEO" 1766 1751 1767 #: admin/options.php:200 4 admin/options.php:22431752 #: admin/options.php:2008 admin/options.php:2247 1768 1753 msgid "Workflow" 1769 1754 msgstr "Flujo de trabajo" 1770 1755 1771 #: admin/options.php:20 861756 #: admin/options.php:2090 1772 1757 msgid "" 1773 1758 "Specify which PublishPress Revisions Settings to control network-wide. " … … 1777 1762 "Los ajustes no seleccionados se controlan por separado en cada sitio." 1778 1763 1779 #: admin/options.php:2 0961764 #: admin/options.php:2100 1780 1765 #, php-format 1781 1766 msgctxt "opentag option_tabname closetag (explanatory note)" … … 1783 1768 msgstr "%1$s%2$s%3$s (%4$s)" 1784 1769 1785 #: admin/options.php:213 21770 #: admin/options.php:2136 1786 1771 #, php-format 1787 1772 msgid "network-wide control of \"%s\"" 1788 1773 msgstr "control en toda la red de «%s\"" 1789 1774 1790 #: admin/options.php:21 591775 #: admin/options.php:2163 1791 1776 msgid "Save Changes" 1792 1777 msgstr "Guardar cambios" 1793 1778 1794 #: admin/options.php:216 01779 #: admin/options.php:2164 1795 1780 msgid "Revert to Defaults" 1796 1781 msgstr "Restaurar valores por defecto" 1797 1782 1798 #: admin/options.php:216 21783 #: admin/options.php:2166 1799 1784 msgid "" 1800 1785 "All settings in this form (including those on unselected tabs) will be reset " … … 1804 1789 "seleccionadas) se restablecerán a los valores por defecto. ¿Estás seguro?" 1805 1790 1806 #: admin/options.php:223 51791 #: admin/options.php:2239 1807 1792 msgid "Commerce" 1808 1793 msgstr "Comercio" 1809 1794 1810 #: admin/options.php:22 391795 #: admin/options.php:2243 1811 1796 msgid "Multilang" 1812 1797 msgstr "Multilingüe" 1813 1798 1814 #: admin/options.php:224 11799 #: admin/options.php:2245 1815 1800 msgid "Community" 1816 1801 msgstr "Comunidad" 1817 1802 1818 #: admin/options.php:22 591803 #: admin/options.php:2263 1819 1804 msgid "Pro" 1820 1805 msgstr "Pro" 1821 1806 1822 #: admin/options.php:226 41807 #: admin/options.php:2268 1823 1808 msgid "Supported" 1824 1809 msgstr "Compatible" 1825 1810 1826 #: admin/options.php:22 67 admin/options.php:23211811 #: admin/options.php:2271 admin/options.php:2325 1827 1812 msgid "Active Plugin" 1828 1813 msgstr "Plugin activo" 1829 1814 1830 #: admin/options.php:22 791815 #: admin/options.php:2283 1831 1816 msgid "Supported by PublishPress Revisions" 1832 1817 msgstr "Compatible con PublishPress Revisions" 1833 1818 1834 #: admin/options.php:228 11819 #: admin/options.php:2285 1835 1820 msgid "Supported by Revisions Pro" 1836 1821 msgstr "Compatible con Revisions Pro" 1837 1822 1838 #: admin/options.php:229 41823 #: admin/options.php:2298 1839 1824 msgid "Integration Active" 1840 1825 msgstr "Integración activa" 1841 1826 1842 #: admin/options.php:2 2961827 #: admin/options.php:2300 1843 1828 msgid "Upgrade to Pro to enable this integration" 1844 1829 msgstr "Actualiza a Pro para activar esta integración" 1845 1830 1846 #: admin/options.php:230 51831 #: admin/options.php:2309 1847 1832 #, php-format 1848 1833 msgid "Unlock %s integration to enhance your revisions solution." … … 1850 1835 "Desbloquea la integración de %s para mejorar tu solución de revisiones." 1851 1836 1852 #: admin/options.php:232 11837 #: admin/options.php:2325 1853 1838 msgid "Active Plugin Integration" 1854 1839 msgstr "Integración del plugin activa" 1855 1840 1856 #: admin/options.php:233 11841 #: admin/options.php:2335 1857 1842 msgid "Supported Plugin Integration" 1858 1843 msgstr "Integración de plugin compatible" 1859 1844 1860 #: admin/options.php:234 11845 #: admin/options.php:2345 1861 1846 msgid "Supported Plugin" 1862 1847 msgstr "Plugin compatible" 1863 1848 1864 #: admin/post-edit-block-ui_rvy.php:170 admin/post-edit_rvy.php:33 41849 #: admin/post-edit-block-ui_rvy.php:170 admin/post-edit_rvy.php:336 1865 1850 msgid "Author" 1866 1851 msgstr "Autor" … … 1969 1954 msgstr "Ver la revisión en progreso" 1970 1955 1971 #: admin/post-edit_rvy.php:18 61956 #: admin/post-edit_rvy.php:188 1972 1957 msgid "Compare this revision to published copy, or to other revisions" 1973 1958 msgstr "Comparar esta revisión con la copia publicada, o con otras revisiones" 1974 1959 1975 #: admin/post-edit_rvy.php:22 11960 #: admin/post-edit_rvy.php:223 1976 1961 msgid "View / moderate saved revision" 1977 1962 msgstr "Ver / moderar la revisión guardada" 1978 1963 1979 #: admin/post-edit_rvy.php:22 41964 #: admin/post-edit_rvy.php:226 1980 1965 msgid "View saved revision" 1981 1966 msgstr "Ver la revisión guardada" … … 2110 2095 #, php-format 2111 2096 msgctxt "PublishedPostName (other filter captions)" 2112 msgid " Revision Queuefor \"%s\"%s"2113 msgstr " Cola de revisiónpara «%s»%s"2097 msgid "New Revisions for \"%s\"%s" 2098 msgstr "Nuevas revisiones para «%s»%s" 2114 2099 2115 2100 #: admin/revision-queue_rvy.php:157 2116 2101 #, php-format 2117 msgid " Revision Queue%s"2118 msgstr " Cola de revisión%s"2102 msgid "New Revisions %s" 2103 msgstr "Nuevas revisiones %s" 2119 2104 2120 2105 #: admin/revision-ui_rvy.php:45 … … 2552 2537 msgstr "%1$s consultas en %2$s segundos. %3$s MB usados." 2553 2538 2554 #: revision-creation_rvy.php:2 192539 #: revision-creation_rvy.php:221 2555 2540 msgid "Could not insert revision into the database" 2556 2541 msgstr "No se ha podido insertar la revisión en la base de datos" … … 2585 2570 2586 2571 #: revision-workflow_rvy.php:187 2587 msgid " Revision Queue: "2588 msgstr " Cola de revisión: "2572 msgid "New Revisions: " 2573 msgstr "Nuevas revisiones: " 2589 2574 2590 2575 #: revision-workflow_rvy.php:189 … … 2877 2862 msgid "Revision Workflow" 2878 2863 msgstr "Flujo de trabajo de revisión" 2864 2865 #~ msgid "Revision Queue" 2866 #~ msgstr "Cola de revisión" 2867 2868 #~ msgid "Revision Archive" 2869 #~ msgstr "Archivo de revisiones" 2870 2871 #~ msgid "Can see Revisions from other users in Revision Queue." 2872 #~ msgstr "Puedes ver las revisiones de otros usuarios en la cola de revisión." 2873 2874 #~ msgid "View the Revision Archive, a list of past Revisions." 2875 #~ msgstr "Ver el «Archivo de revisiones», una lista de revisiones anteriores." 2876 2877 #, php-format 2878 #~ msgid "Revision Queue %s" 2879 #~ msgstr "Cola de revisión %s" 2880 2881 #~ msgid "Revision Queue: " 2882 #~ msgstr "Cola de revisión: " 2879 2883 2880 2884 #~ msgid "Count" -
revisionary/trunk/languages/revisionary-fr_FR.po
r3394622 r3397524 6 6 "Submit, Approve and Schedule Content Changes - Stable (latest release)\n" 7 7 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n" 8 "POT-Creation-Date: 2025-1 0-30T15:00:36+00:00\n"9 "PO-Revision-Date: 2025-11- 09 11:01+0100\n"8 "POT-Creation-Date: 2025-11-12T19:30:03+00:00\n" 9 "PO-Revision-Date: 2025-11-13 11:36+0100\n" 10 10 "Last-Translator: \n" 11 11 "Language-Team: \n" … … 98 98 99 99 #: admin/admin-posts_rvy.php:294 admin/admin_rvy.php:365 100 #: admin/admin_rvy.php:433 admin/options.php:953 101 msgid "Revision Queue" 102 msgstr "File d’attente des révisions" 103 104 #: admin/admin_lib-mu_rvy.php:10 admin/options.php:324 100 #: admin/admin_rvy.php:433 admin/options.php:159 admin/options.php:636 101 #: admin/options.php:954 102 msgid "New Revisions" 103 msgstr "Nouvelles révisions" 104 105 #: admin/admin_lib-mu_rvy.php:10 admin/options.php:325 105 106 msgid "PublishPress Revisions Network Settings" 106 107 msgstr "Réglages de PublishPress Revisions pour le réseau" … … 110 111 msgstr "Réglages du réseau" 111 112 112 #: admin/admin_lib-mu_rvy.php:21 admin/options.php:32 6113 #: admin/admin_lib-mu_rvy.php:21 admin/options.php:327 113 114 msgid "PublishPress Revisions Network Defaults" 114 115 msgstr "Valeurs par défaut de PublishPress Revisions pour le réseau" … … 139 140 140 141 #: admin/admin_rvy.php:374 admin/admin_rvy.php:375 admin/admin_rvy.php:434 141 #: admin/revision-archive_rvy.php:81 142 msgid "Revision Archive" 143 msgstr "Archive des révisions" 144 145 #: admin/admin_rvy.php:392 admin/options.php:330 142 #: admin/options.php:158 admin/options.php:539 143 #: admin/revision-archive_rvy.php:81 admin/revisions.php:237 144 msgid "Past Revisions" 145 msgstr "Révisions précédentes" 146 147 #: admin/admin_rvy.php:392 admin/options.php:331 146 148 msgid "PublishPress Revisions Settings" 147 149 msgstr "Réglages de PublishPress Revisions" … … 152 154 153 155 #: admin/admin_rvy.php:399 admin/admin_rvy.php:400 admin/admin_rvy.php:440 154 #: admin/options.php:175 6 admin/options.php:1783 admin/options.php:1967155 #: admin/options.php:231 4includes/CoreAdmin.php:212156 #: admin/options.php:1757 admin/options.php:1784 admin/options.php:1971 157 #: admin/options.php:2318 includes/CoreAdmin.php:212 156 158 msgid "Upgrade to Pro" 157 159 msgstr "Passer à la version Pro" … … 168 170 169 171 #: admin/admin_rvy.php:483 170 msgid "Can see Revisions from other users in Revision Queue." 171 msgstr "" 172 "Peut voir les révisions des autres utilisateurs/utilisatrices dans la file " 173 "d’attente des révisions." 172 msgid "Can see New Revisions from other users." 173 msgstr "Peut voir las nouvelles révisions d’autres utilisateurs/utilisatrices." 174 174 175 175 #: admin/admin_rvy.php:484 176 msgid "Can access Revision Queue."177 msgstr "Peut accéder à l a file d’attente de révision."176 msgid "Can access New Revisions." 177 msgstr "Peut accéder à les nouvelles révisions." 178 178 179 179 #: admin/admin_rvy.php:485 … … 192 192 193 193 #: admin/admin_rvy.php:488 194 msgid "View the Revision Archive, a list of past Revisions."195 msgstr "Voir l ’archive des révisions, une liste des révisions précédentes."194 msgid "View Past Revisions." 195 msgstr "Voir les révisions précédentes" 196 196 197 197 #: admin/admin_rvy.php:518 … … 362 362 msgstr "Réinitialiser les filtres" 363 363 364 #: admin/class-list-table-archive.php:794 admin/options.php:19 78364 #: admin/class-list-table-archive.php:794 admin/options.php:1982 365 365 msgid "All" 366 366 msgstr "Tout" … … 376 376 377 377 #: admin/class-list-table-archive.php:862 admin/class-list-table_rvy.php:1686 378 #: admin/post-edit_rvy.php:18 5 admin/post-edit_rvy.php:249379 #: admin/post-edit_rvy.php:26 3378 #: admin/post-edit_rvy.php:187 admin/post-edit_rvy.php:251 379 #: admin/post-edit_rvy.php:265 380 380 msgctxt "revisions" 381 381 msgid "Compare" … … 441 441 msgstr "Cette révision n’est pas encore planifiée. Elle doit être approuvée." 442 442 443 #: admin/class-list-table_rvy.php:860 admin/history_rvy.php:90 3443 #: admin/class-list-table_rvy.php:860 admin/history_rvy.php:907 444 444 msgid "No author" 445 445 msgstr "Aucun(e) auteur ou autrice" … … 524 524 msgstr "Révision mise à jour." 525 525 526 #: admin/history_rvy.php:8 3 admin/history_rvy.php:87 admin/history_rvy.php:93527 #: admin/history_rvy.php: 96rvy_init-functions.php:267526 #: admin/history_rvy.php:87 admin/history_rvy.php:91 admin/history_rvy.php:97 527 #: admin/history_rvy.php:100 rvy_init-functions.php:267 528 528 msgid "Copy" 529 529 msgstr "Copier" 530 530 531 #: admin/history_rvy.php:8 3 admin/history_rvy.php:87531 #: admin/history_rvy.php:87 admin/history_rvy.php:91 532 532 msgid "Copy content to the clipboard." 533 533 msgstr "Copier le contenu dans le presse-papiers." 534 534 535 #: admin/history_rvy.php:9 3 admin/history_rvy.php:96535 #: admin/history_rvy.php:97 admin/history_rvy.php:100 536 536 msgid "Copy the above content to the clipboard." 537 537 msgstr "Copier le contenu ci-dessus dans le presse-papiers." 538 538 539 #: admin/history_rvy.php:2 78 admin/history_rvy.php:294539 #: admin/history_rvy.php:282 admin/history_rvy.php:298 540 540 #, php-format 541 541 msgid "Compare %s of \"%s\"" 542 542 msgstr "Comparez %s de « %s »" 543 543 544 #: admin/history_rvy.php:6 47 admin/options.php:921544 #: admin/history_rvy.php:651 admin/options.php:922 545 545 msgid "Post Date" 546 546 msgstr "Date de la publication" 547 547 548 #: admin/history_rvy.php:6 48548 #: admin/history_rvy.php:652 549 549 msgid "Post Parent" 550 550 msgstr "Publication parente" 551 551 552 #: admin/history_rvy.php:6 49552 #: admin/history_rvy.php:653 553 553 msgid "Menu Order" 554 554 msgstr "Ordre du menu" 555 555 556 #: admin/history_rvy.php:65 0556 #: admin/history_rvy.php:654 557 557 msgid "Comment Status" 558 558 msgstr "État du commentaire" 559 559 560 #: admin/history_rvy.php:65 1560 #: admin/history_rvy.php:655 561 561 msgid "Ping Status" 562 562 msgstr "État du ping" 563 563 564 #: admin/history_rvy.php:79 1564 #: admin/history_rvy.php:795 565 565 msgid "Page Template" 566 566 msgstr "Modèle de page" 567 567 568 #: admin/history_rvy.php:79 4568 #: admin/history_rvy.php:798 569 569 msgid "Featured Image" 570 570 msgstr "Image mise en avant" 571 571 572 #: admin/history_rvy.php: 798572 #: admin/history_rvy.php:802 573 573 msgid "Beaver Builder Data" 574 574 msgstr "Données de Beaver Builder" 575 575 576 #: admin/history_rvy.php: 799576 #: admin/history_rvy.php:803 577 577 msgid "Beaver Builder Settings" 578 578 msgstr "Réglages de Beaver Builder" 579 579 580 #: admin/history_rvy.php:105 0580 #: admin/history_rvy.php:1054 581 581 msgid "Scheduled for " 582 582 msgstr "Planifié pour " 583 583 584 #: admin/history_rvy.php:105 5584 #: admin/history_rvy.php:1059 585 585 msgid "Requested for " 586 586 msgstr "Demandé pour " 587 587 588 #: admin/history_rvy.php:106 0588 #: admin/history_rvy.php:1064 589 589 msgid "Modified " 590 590 msgstr "Modifiée " 591 591 592 #: admin/history_rvy.php:106 5592 #: admin/history_rvy.php:1069 593 593 #, php-format 594 594 msgid "%s%s from now" 595 595 msgstr "%s%s à partir de maintenant" 596 596 597 #: admin/history_rvy.php:10 76597 #: admin/history_rvy.php:1080 598 598 msgid "M j, Y @ g:i a" 599 599 msgstr "j M Y @ G\\hi" 600 600 601 #: admin/history_rvy.php:112 1601 #: admin/history_rvy.php:1125 602 602 msgid "M j, Y @ H:i" 603 603 msgstr "j M Y @ H:i" 604 604 605 #: admin/history_rvy.php:112 2605 #: admin/history_rvy.php:1126 606 606 msgctxt "revision date short format" 607 607 msgid "j M @ H:i" 608 608 msgstr "j M @ H:i" 609 609 610 #: admin/history_rvy.php:12 08front_rvy.php:597 front_rvy.php:607610 #: admin/history_rvy.php:1212 front_rvy.php:597 front_rvy.php:607 611 611 #: front_rvy.php:626 front_rvy.php:657 rvy_init-functions.php:271 612 612 #: rvy_init-functions.php:289 rvy_init-functions.php:328 … … 615 615 msgstr "Approuver" 616 616 617 #: admin/history_rvy.php:12 08617 #: admin/history_rvy.php:1212 618 618 msgid "Preview / Approve" 619 619 msgstr "Aperçu/Approbation" 620 620 621 #: admin/history_rvy.php:121 0admin/post-editor-workflow-ui_rvy.php:77621 #: admin/history_rvy.php:1214 admin/post-editor-workflow-ui_rvy.php:77 622 622 #: admin/post-editor-workflow-ui_rvy.php:118 623 623 #: admin/post-editor-workflow-ui_rvy.php:231 … … 626 626 msgstr "Aperçu" 627 627 628 #: admin/history_rvy.php:130 4628 #: admin/history_rvy.php:1308 629 629 msgid "Preview / Restore" 630 630 msgstr "Aperçu / Restaurer" 631 631 632 #: admin/history_rvy.php:131 1632 #: admin/history_rvy.php:1315 633 633 msgid "Manage" 634 634 msgstr "Gérer" 635 635 636 #: admin/history_rvy.php:131 2636 #: admin/history_rvy.php:1316 637 637 msgid "List" 638 638 msgstr "Liste" … … 650 650 msgstr "Fonctionnalités" 651 651 652 #: admin/options.php:158 admin/options.php:538 admin/revisions.php:237653 msgid "Past Revisions"654 msgstr "Révisions précédentes"655 656 #: admin/options.php:159 admin/options.php:635657 msgid "New Revisions"658 msgstr "Nouvelles révisions"659 660 652 #: admin/options.php:160 661 653 msgid "Options" … … 670 662 msgstr "États" 671 663 672 #: admin/options.php:163 admin/options.php:95 4664 #: admin/options.php:163 admin/options.php:955 673 665 msgid "Notifications" 674 666 msgstr "Notifications" … … 687 679 688 680 #: admin/options.php:178 689 msgid " Revision Queueaccess requires role capability"690 msgstr "" 691 "Pour acceder à l a file d’attente des révisions est obligatoire avoir la"692 " permissionde rôle"681 msgid "New Revisions access requires role capability" 682 msgstr "" 683 "Pour acceder à les nouvelles révisions est obligatoire avoir la permission " 684 "de rôle" 693 685 694 686 #: admin/options.php:179 … … 780 772 781 773 #: admin/options.php:195 774 msgid "Hide copy buttons on Compare screen" 775 msgstr "Masquer les boutons pour copier sur l’écran « Comparer »" 776 777 #: admin/options.php:196 782 778 msgid "Use WP-Cron scheduling" 783 779 msgstr "Utiliser la planification WP-Cron" 784 780 785 #: admin/options.php:19 6781 #: admin/options.php:197 786 782 msgid "Site uses a custom trigger for WP-Cron tasks" 787 783 msgstr "Le site utilise un déclencheur personnalisé pour les tâches WP-Cron" 788 784 789 #: admin/options.php:19 7785 #: admin/options.php:198 790 786 msgid "Asynchronous Publishing" 791 787 msgstr "Publication asynchrone" 792 788 793 #: admin/options.php:19 8 admin/options.php:199789 #: admin/options.php:199 admin/options.php:200 794 790 msgid "Update Publish Date" 795 791 msgstr "Mettre à jour la date de publication" 796 792 797 #: admin/options.php:20 0 admin/options.php:201793 #: admin/options.php:201 admin/options.php:202 798 794 msgid "Update Modified Date" 799 795 msgstr "Mettre à jour la date de modification" 800 796 801 #: admin/options.php:20 4 admin/options.php:205797 #: admin/options.php:205 admin/options.php:206 802 798 #, php-format 803 799 msgid "Use %1$sPlanner Notifications%2$s" 804 800 msgstr "Utiliser les %1$sNotifications du planificateur%2$s" 805 801 806 #: admin/options.php:20 7802 #: admin/options.php:208 807 803 #, php-format 808 804 msgid "Email original Author when a %s is submitted" … … 811 807 "est envoyée" 812 808 813 #: admin/options.php:20 8809 #: admin/options.php:209 814 810 #, php-format 815 811 msgid "Email the original Author when a %s is approved" … … 818 814 "est approuvée" 819 815 820 #: admin/options.php:2 09816 #: admin/options.php:210 821 817 #, php-format 822 818 msgid "Email the Revisor when a %s is approved" … … 824 820 "Envoyer un e-mail aux relecteurs/relectrices quand une %s est approuvée" 825 821 826 #: admin/options.php:21 0822 #: admin/options.php:211 827 823 #, php-format 828 824 msgid "Email the original Author when a %s is published" … … 831 827 "est publiée" 832 828 833 #: admin/options.php:21 1829 #: admin/options.php:212 834 830 #, php-format 835 831 msgid "Email the Revisor when a %s is published" 836 832 msgstr "Envoyer un e-mail aux relecteurs/relectrices quand une %s est publiée" 837 833 838 #: admin/options.php:21 2834 #: admin/options.php:213 839 835 msgid "Enable notification buffer" 840 836 msgstr "Activer la mémoire tampon de notification" 841 837 842 #: admin/options.php:21 3838 #: admin/options.php:214 843 839 msgid "Revisors can create a new revision for any custom post type" 844 840 msgstr "" … … 846 842 "type de publication personnalisé" 847 843 848 #: admin/options.php:21 4844 #: admin/options.php:215 849 845 msgid "Prevent Revisors from editing others' unpublished Posts" 850 846 msgstr "" … … 852 848 "publiées d’autres utilisateurs/utilisatrices" 853 849 854 #: admin/options.php:21 5850 #: admin/options.php:216 855 851 msgid "Display Hints" 856 852 msgstr "Afficher les conseils" 857 853 858 #: admin/options.php:21 6854 #: admin/options.php:217 859 855 msgid "Delete settings and Revisions if plugin is deleted" 860 856 msgstr "Supprimer les réglages et les révisions si on supprime l’extension" 861 857 862 #: admin/options.php:21 7858 #: admin/options.php:218 863 859 msgid "Show Preview Links" 864 860 msgstr "Afficher les liens d’aperçu" 865 861 866 #: admin/options.php:21 8862 #: admin/options.php:219 867 863 msgid "Preview Link Type" 868 864 msgstr "Type de lien d’aperçu" 869 865 870 #: admin/options.php:2 19866 #: admin/options.php:220 871 867 msgid "Modify preview link for better theme compatibility" 872 868 msgstr "" … … 874 870 "le thème" 875 871 876 #: admin/options.php:22 0872 #: admin/options.php:221 877 873 msgid "Theme Compat: For front page revision preview, set home flag" 878 874 msgstr "" … … 880 876 "page d’accueil, définir le drapeau de la page d’accueil" 881 877 882 #: admin/options.php:22 1878 #: admin/options.php:222 883 879 msgid "Approve Button on Compare screen" 884 880 msgstr "Bouton « Approuver » sur l’écran « Comparer »" 885 881 886 #: admin/options.php:22 2882 #: admin/options.php:223 887 883 msgid "Copy revision comments to published post" 888 884 msgstr "Copier les commentaires de révision dans la publication" 889 885 890 #: admin/options.php:22 3886 #: admin/options.php:224 891 887 msgid "Compare Past Revisions ordering:" 892 888 msgstr "Trier la comparaison des révisions précédentes :" 893 889 894 #: admin/options.php:224895 #, php-format896 msgid ""897 "List %s in Revision Queue for \"My Activity\" or \"Revisions to My Posts\" "898 "view"899 msgstr ""900 "Lister %s dans la file d’attente des révisions pour la vue « Mon activité » "901 "ou « Révisions de mes publications »."902 903 890 #: admin/options.php:225 891 #, php-format 892 msgid "List %s for \"My Activity\" or \"Revisions to My Posts\" view" 893 msgstr "" 894 "Lister %s pour la vue « Mon activité » ou « Révisions de mes publications »" 895 896 #: admin/options.php:226 904 897 msgid "Store custom fields of submitted and scheduled revisions for archive" 905 898 msgstr "" … … 907 900 "les archiver" 908 901 909 #: admin/options.php:22 6902 #: admin/options.php:227 910 903 msgid "Keep an archive of revision edits, even after the revision is published" 911 904 msgstr "" … … 913 906 "publication" 914 907 915 #: admin/options.php:22 7908 #: admin/options.php:228 916 909 msgid "On Revision publication, delete Editorial Comments" 917 910 msgstr "" 918 911 "Lors de la publication de la révision, supprimer les commentaires éditoriaux" 919 912 920 #: admin/options.php:22 8913 #: admin/options.php:229 921 914 msgid "Enable deletion queue" 922 915 msgstr "Activer la file d’attente de suppression" 923 916 924 #: admin/options.php:2 29917 #: admin/options.php:230 925 918 msgid "Allow Past Revisions to be deleted" 926 919 msgstr "Autoriser la suppression des révisions précédentes" 927 920 928 #: admin/options.php:23 0921 #: admin/options.php:231 929 922 msgid "Restoring a Revision requires role capability" 930 923 msgstr "" 931 924 "Pour restaurer une révision est obligatoire avoir la permission de rôle" 932 925 933 #: admin/options.php:23 1926 #: admin/options.php:232 934 927 msgid "Compatibility Mode" 935 928 msgstr "Mode de compatibilité" 936 929 937 #: admin/options.php:23 2930 #: admin/options.php:233 938 931 msgid "Planner Notifications Access-Limited" 939 932 msgstr "Accès limité aux notifications du planificateur" 940 933 941 #: admin/options.php:23 3934 #: admin/options.php:234 942 935 msgid "Maximum Revisions per post" 943 936 msgstr "Maximum Revisions per post" 944 937 945 #: admin/options.php:23 4938 #: admin/options.php:235 946 939 msgid "Apply Post Permissions to Revisions" 947 940 msgstr "Appliquer les droits de la publication à les révisions" 948 941 949 #: admin/options.php:23 5942 #: admin/options.php:236 950 943 msgid "Enable legacy email notifications" 951 944 msgstr "Activer les notifications par les e-mails anciens" 952 945 953 #: admin/options.php:23 6946 #: admin/options.php:237 954 947 msgid "Use extended captions for Approve button in Post Editor" 955 948 msgstr "" … … 957 950 "de publication" 958 951 959 #: admin/options.php:23 7952 #: admin/options.php:238 960 953 msgid "Create Revision button in editor opens new tab" 961 954 msgstr "Le bouton « Créer une révision » dans l’éditeur ouvre un nouvel onglet" 962 955 963 #: admin/options.php:23 8956 #: admin/options.php:239 964 957 msgid "Disable Rank Math SEO panel for Revision edit" 965 958 msgstr "Désactiver le panneau deRank Math SEO pour modifier la révision" 966 959 967 #: admin/options.php:24 3960 #: admin/options.php:244 968 961 #, php-format 969 962 msgid "Email designated Publishers when a %s is submitted" … … 971 964 "Envoyer un e-mail aux maisons d’édition désignées quand une %s est envoyée" 972 965 973 #: admin/options.php:24 4966 #: admin/options.php:245 974 967 #, php-format 975 968 msgid "Email designated Publishers when a %s is published" … … 977 970 "Envoyer un e-mail aux maisons d’édition désignées quand une %s est publiée" 978 971 979 #: admin/options.php:24 5972 #: admin/options.php:246 980 973 #, php-format 981 974 msgid "Email designated Publishers when a %s is approved" … … 983 976 "Envoyer un e-mail aux maisons d’édition désignées quand une %s est approuvée" 984 977 985 #: admin/options.php:24 7978 #: admin/options.php:248 986 979 #, php-format 987 980 msgid "Email Editors and Administrators when a %s is submitted" … … 990 983 "administratrices quand une %s est envoyée" 991 984 992 #: admin/options.php:24 8985 #: admin/options.php:249 993 986 #, php-format 994 987 msgid "Email Editors and Administrators when a %s is published" … … 997 990 "administratrices quand une %s est publiée" 998 991 999 #: admin/options.php:2 49992 #: admin/options.php:250 1000 993 #, php-format 1001 994 msgid "Email Editors and Administrators when a %s is approved" … … 1004 997 "administratrices quand une %s est approuvée" 1005 998 1006 #: admin/options.php:32 8999 #: admin/options.php:329 1007 1000 msgid "PublishPress Revisions Site Settings" 1008 1001 msgstr "Réglages de PublishPress Revisions pour le site" 1009 1002 1010 #: admin/options.php:35 81003 #: admin/options.php:359 1011 1004 msgid "" 1012 1005 "These are the default settings for options which can be adjusted per-site." … … 1015 1008 "par site." 1016 1009 1017 #: admin/options.php:39 61010 #: admin/options.php:397 1018 1011 #, php-format 1019 1012 msgid "" … … 1024 1017 "l’échelle du réseau. %s" 1025 1018 1026 #: admin/options.php: 3991019 #: admin/options.php:400 1027 1020 #, php-format 1028 1021 msgid "You can also specify %1$sdefaults for site-specific settings%2$s." … … 1031 1024 "site%2$s." 1032 1025 1033 #: admin/options.php:40 21026 #: admin/options.php:403 1034 1027 msgid "" 1035 1028 "Here you can change the default value for settings which are controlled " … … 1039 1032 "contrôlés séparément sur chaque site." 1040 1033 1041 #: admin/options.php:41 2 admin/options.php:4141034 #: admin/options.php:413 admin/options.php:415 1042 1035 #, php-format 1043 1036 msgid "Note that %1$s network-wide settings%2$s may also be available." … … 1046 1039 "être disponibles." 1047 1040 1048 #: admin/options.php: 4991041 #: admin/options.php:500 1049 1042 msgid "License" 1050 1043 msgstr "Licence" 1051 1044 1052 #: admin/options.php:542 1053 msgid "" 1054 "Past Revisions are earlier versions of a post. They are listed in the " 1055 "Revision Archive." 1056 msgstr "" 1057 "Les révisions précédentes sont les versions précédentes d’une publication. " 1058 "Elles sont listées dans les archives des révisions." 1059 1060 #: admin/options.php:597 1045 #: admin/options.php:543 1046 msgid "Past Revisions are earlier versions of a post." 1047 msgstr "" 1048 "Les révisions précédentes sont les versions précédentes d’une publication." 1049 1050 #: admin/options.php:598 1061 1051 msgid "This post type does not support Past Revisions." 1062 1052 msgstr "" 1063 1053 "Ce type de publication ne prend pas en charge les révisions précédentes." 1064 1054 1065 #: admin/options.php:639 1066 msgid "" 1067 "New Revisions are changes which are not yet published. They are listed in " 1068 "the Revision Queue." 1055 #: admin/options.php:640 1056 msgid "New Revisions are changes which are not yet published." 1069 1057 msgstr "" 1070 1058 "Les nouvelles révisions sont des modifications qui n’ont pas encore été " 1071 "publiées. Elles sont listées dans la file d’attente des révisions."1072 1073 #: admin/options.php:72 81059 "publiées." 1060 1061 #: admin/options.php:729 1074 1062 msgid "" 1075 1063 "Note: Third party code may cause some post types to be incompatible with " … … 1079 1067 "de publication avec PublishPress Revisions." 1080 1068 1081 #: admin/options.php:73 81069 #: admin/options.php:739 1082 1070 #, php-format 1083 1071 msgid "" … … 1089 1077 "Planner Pro%s." 1090 1078 1091 #: admin/options.php:7 591079 #: admin/options.php:760 1092 1080 msgid "Ready to enhance your revision workflow?" 1093 1081 msgstr "Prêt à améliorer votre flux de travail de révision ?" 1094 1082 1095 #: admin/options.php:76 21083 #: admin/options.php:763 1096 1084 msgid "" 1097 1085 "Get PublishPress Statuses Pro and optimize your revision process with custom " … … 1101 1089 "grâce à des états de révision personnalisés." 1102 1090 1103 #: admin/options.php:76 81091 #: admin/options.php:769 1104 1092 msgid "Define your own statuses before or after Revision Submitted" 1105 1093 msgstr "Définissez vos propres états avant ou après avoir envoyé la révision" 1106 1094 1107 #: admin/options.php:77 11095 #: admin/options.php:772 1108 1096 msgid "New predefined statuses: Deferred, Needs Work, Rejected" 1109 1097 msgstr "" … … 1111 1099 "« Rejetée »" 1112 1100 1113 #: admin/options.php:77 41101 #: admin/options.php:775 1114 1102 msgid "Statuses can be specific to a post type" 1115 1103 msgstr "Les états peuvent être spécifiques à un type de publication" 1116 1104 1117 #: admin/options.php:77 71105 #: admin/options.php:778 1118 1106 msgid "Control access to statuses per-role" 1119 1107 msgstr "Contrôler l’accès aux états par rôle" 1120 1108 1121 #: admin/options.php:78 01109 #: admin/options.php:781 1122 1110 msgid "Status workflow can be nested with sub-statuses" 1123 1111 msgstr "Le flux de travail des états peut être imbriqué avec des sous-états" 1124 1112 1125 #: admin/options.php:7 891113 #: admin/options.php:790 1126 1114 msgid "Get PublishPress Statuses Pro" 1127 1115 msgstr "Obtenir PublishPress Statuses Pro" 1128 1116 1129 #: admin/options.php:79 4 admin/options.php:812 admin/options.php:17611130 #: admin/options.php:17 79 admin/options.php:2310 admin/options.php:23241131 #: admin/options.php:233 4 admin/options.php:23441117 #: admin/options.php:795 admin/options.php:813 admin/options.php:1762 1118 #: admin/options.php:1780 admin/options.php:2314 admin/options.php:2328 1119 #: admin/options.php:2338 admin/options.php:2348 1132 1120 msgid "Learn More" 1133 1121 msgstr "Lire la suite" 1134 1122 1135 #: admin/options.php:80 71123 #: admin/options.php:808 1136 1124 msgid "Pro Plugin" 1137 1125 msgstr "Extension Pro" 1138 1126 1139 #: admin/options.php:80 81127 #: admin/options.php:809 1140 1128 msgid "Install Statuses Pro to unlock custom revision statuses." 1141 1129 msgstr "" 1142 1130 "Installer Statuses Pro pour débloquer les états de révision personnalisés." 1143 1131 1144 #: admin/options.php:8 091132 #: admin/options.php:810 1145 1133 msgid "Configure for any post type and role to match your editing workflow." 1146 1134 msgstr "" … … 1148 1136 "votre flux de travail de modification." 1149 1137 1150 #: admin/options.php:81 61138 #: admin/options.php:817 1151 1139 msgid "Get Statuses Pro" 1152 1140 msgstr "Obtenir Statuses Pro" 1153 1141 1154 #: admin/options.php:89 0 admin/options.php:1056 admin/options.php:12911155 #: admin/options.php:131 7 admin/options.php:1343 admin/options.php:13711156 #: admin/options.php:18 791142 #: admin/options.php:891 admin/options.php:1057 admin/options.php:1292 1143 #: admin/options.php:1318 admin/options.php:1344 admin/options.php:1372 1144 #: admin/options.php:1880 1157 1145 #, php-format 1158 1146 msgid "%s capability" 1159 1147 msgstr "Permission %s" 1160 1148 1161 #: admin/options.php:89 5 admin/options.php:1061 admin/options.php:12961162 #: admin/options.php:132 2 admin/options.php:1348 admin/options.php:13761163 #: admin/options.php:188 41149 #: admin/options.php:896 admin/options.php:1062 admin/options.php:1297 1150 #: admin/options.php:1323 admin/options.php:1349 admin/options.php:1377 1151 #: admin/options.php:1885 1164 1152 msgid "Assign capability to roles" 1165 1153 msgstr "Assigner la permission aux rôles" 1166 1154 1167 #: admin/options.php:90 21155 #: admin/options.php:903 1168 1156 #, php-format 1169 1157 msgid "Prevent non-Administrators from restoring a revision without the %s." … … 1172 1160 "révision sans la %s." 1173 1161 1174 #: admin/options.php:90 81162 #: admin/options.php:909 1175 1163 msgid "" 1176 1164 "Prevent non-Administrators from restoring a revision without the " … … 1180 1168 "révision sans la permission « restore_revisions »" 1181 1169 1182 #: admin/options.php:92 11170 #: admin/options.php:922 1183 1171 msgid "Modification Date" 1184 1172 msgstr "Date de modification" 1185 1173 1186 #: admin/options.php:9 491174 #: admin/options.php:950 1187 1175 msgid "Revision Creation" 1188 1176 msgstr "Création de révisions" 1189 1177 1190 #: admin/options.php:95 01178 #: admin/options.php:951 1191 1179 msgid "Submission" 1192 1180 msgstr "Envoi" 1193 1181 1194 #: admin/options.php:95 11182 #: admin/options.php:952 1195 1183 msgid "Scheduling" 1196 1184 msgstr "Planification" 1197 1185 1198 #: admin/options.php:95 21186 #: admin/options.php:953 1199 1187 msgid "Publication" 1200 1188 msgstr "Publication" 1201 1189 1202 #: admin/options.php:100 61190 #: admin/options.php:1007 1203 1191 msgid "Create Revision capabilities" 1204 1192 msgstr "Créer les permissions de révision" 1205 1193 1206 #: admin/options.php:101 1 admin/options.php:1036 admin/options.php:11781194 #: admin/options.php:1012 admin/options.php:1037 admin/options.php:1179 1207 1195 msgid "Assign capabilities to roles" 1208 1196 msgstr "Assigner les permissions aux rôles" 1209 1197 1210 #: admin/options.php:101 8 admin/options.php:11851198 #: admin/options.php:1019 admin/options.php:1186 1211 1199 #, php-format 1212 1200 msgid "If the user can't edit the published post, require %s." … … 1215 1203 "il est obligatorie avoir la %s." 1216 1204 1217 #: admin/options.php:102 41205 #: admin/options.php:1025 1218 1206 msgid "" 1219 1207 "If the user can't edit the published post, require Create Revision " … … 1224 1212 "(copy_posts, copy_others_pages, etc.)" 1225 1213 1226 #: admin/options.php:103 21214 #: admin/options.php:1033 1227 1215 #, php-format 1228 1216 msgid "To expand the Pages list, assign %s." 1229 1217 msgstr "Pour élargir la liste des pages, assigner %s." 1230 1218 1231 #: admin/options.php:103 51219 #: admin/options.php:1036 1232 1220 msgid "Listing capabilities" 1233 1221 msgstr "Permissions pour lister" 1234 1222 1235 #: admin/options.php:104 21223 #: admin/options.php:1043 1236 1224 msgid "" 1237 1225 "To expand the Pages list, assign Listing capabilities (list_others_pages, " … … 1241 1229 "(list_others_pages, list_published_posts, etc.)" 1242 1230 1243 #: admin/options.php:104 81231 #: admin/options.php:1049 1244 1232 msgid "This plugin introduces a new user role, \"Revisor.\"" 1245 1233 msgstr "" 1246 1234 "Ce plugin introduit un nouveau rôle du compte, « Relecteur/relectrice »." 1247 1235 1248 #: admin/options.php:106 81236 #: admin/options.php:1069 1249 1237 #, php-format 1250 1238 msgid "" … … 1255 1243 "suppression de toutes les balises HTML personnalisées." 1256 1244 1257 #: admin/options.php:107 41245 #: admin/options.php:1075 1258 1246 msgid "" 1259 1247 "Revision by a user who does not have the unfiltered_html capability will " … … 1264 1252 "personnalisées." 1265 1253 1266 #: admin/options.php:109 11254 #: admin/options.php:1092 1267 1255 msgid "Broadest compat including Elementor, Divi, Beaver Builder" 1268 1256 msgstr "La plus large prise en charge incluant Elementor, Divi, Beaver Builder" 1269 1257 1270 #: admin/options.php:109 21258 #: admin/options.php:1093 1271 1259 msgid "Standard storage schema for broadest 3rd party compat" 1272 1260 msgstr "" … … 1274 1262 "par des tiers" 1275 1263 1276 #: admin/options.php:109 71264 #: admin/options.php:1098 1277 1265 msgid "Enhanced Revision access control with PublishPress plugins" 1278 1266 msgstr "" 1279 1267 "Contrôle d’accès à la révision amélioré avec les extensions PublishPress" 1280 1268 1281 #: admin/options.php:110 81269 #: admin/options.php:1109 1282 1270 msgid "" 1283 1271 "In enhanced mode, a Revision's status is stored by standard WordPress " … … 1287 1275 "standard. Certaines extensions sont incompatibles." 1288 1276 1289 #: admin/options.php:111 51277 #: admin/options.php:1116 1290 1278 msgid "" 1291 1279 "Prevent Revision creation if the post already has another Revision in " … … 1295 1283 "révision en cours." 1296 1284 1297 #: admin/options.php:11 191285 #: admin/options.php:1120 1298 1286 msgid "" 1299 1287 "Work around cache plugin conflicts by requerying for revisions before " … … 1303 1291 "avant de supprimer le lien « Nouvelle révision »." 1304 1292 1305 #: admin/options.php:113 81293 #: admin/options.php:1139 1306 1294 #, php-format 1307 1295 msgid "" … … 1312 1300 "normal, le lien %s est recréé en tant que « Modification »." 1313 1301 1314 #: admin/options.php:114 11302 #: admin/options.php:1142 1315 1303 msgid "" 1316 1304 "Default labels are \"Not Submitted for Approval\", \"Submitted for " … … 1320 1308 "pour approbation », « Révision planifiée »" 1321 1309 1322 #: admin/options.php:11 591310 #: admin/options.php:1160 1323 1311 #, php-format 1324 1312 msgid "" 1325 1313 "Enable published content to be copied, edited, submitted for approval and " 1326 "managed in %sRevision Queue%s."1327 msgstr "" 1328 "Active zle contenu publié pour qu’il puisse être copié, modifié, envoyé pour "1329 "approbation et géré dans %sFile d’attente des révisions%s."1330 1331 #: admin/options.php:117 31314 "managed on the %sNew Revisions%s screen." 1315 msgstr "" 1316 "Activer le contenu publié pour qu’il puisse être copié, modifié, envoyé pour " 1317 "approbation et géré dans l’écran %sNouvelles révisions%s." 1318 1319 #: admin/options.php:1174 1332 1320 msgid "Submit Revision capabilities" 1333 1321 msgstr "Envoyer les permissions de révision" 1334 1322 1335 #: admin/options.php:119 11323 #: admin/options.php:1192 1336 1324 msgid "" 1337 1325 "If the user can't edit the published post, require Submit Revision " … … 1342 1330 "(revise_posts, revise_others_pages, etc.)" 1343 1331 1344 #: admin/options.php:119 6 admin/options.php:12281332 #: admin/options.php:1197 admin/options.php:1229 1345 1333 #, php-format 1346 1334 msgid "When a %s is published, update post publish date to current time." … … 1349 1337 "publication à l’heure actuelle." 1350 1338 1351 #: admin/options.php:1 199 admin/options.php:12311339 #: admin/options.php:1200 admin/options.php:1232 1352 1340 #, php-format 1353 1341 msgid "When a %s is published, update post modified date to current time." … … 1356 1344 "publication à l’heure actuelle." 1357 1345 1358 #: admin/options.php:120 21346 #: admin/options.php:1203 1359 1347 msgid "" 1360 1348 "When a user who has publishing capabilities creates a Revision, set it to " … … 1364 1352 "une révision, lui attribuer à l’état « Envoyé »." 1365 1353 1366 #: admin/options.php:120 51354 #: admin/options.php:1206 1367 1355 msgid "" 1368 1356 "This allows immediate approval within the Compare screen. If disabled, a " … … 1372 1360 "désactivé, un lien d’aperçu est fourni à la place." 1373 1361 1374 #: admin/options.php:122 21362 #: admin/options.php:1223 1375 1363 msgid "" 1376 1364 "If a currently published post or page is edited and a future date set, the " … … 1381 1369 "sélectionnée." 1382 1370 1383 #: admin/options.php:123 61371 #: admin/options.php:1237 1384 1372 msgid "" 1385 1373 "Publish scheduled revisions using the WP-Cron mechanism. On some sites, " … … 1389 1377 "certains sites, la publication échouera si ce réglage est désactivé." 1390 1378 1391 #: admin/options.php:124 01379 #: admin/options.php:1241 1392 1380 msgid "" 1393 1381 "Publish scheduled revisions asynchronously, via a secondary http request " … … 1399 1387 "élimine les délais, mais certains serveurs ne la prennent pas en charge." 1400 1388 1401 #: admin/options.php:124 51389 #: admin/options.php:1246 1402 1390 msgid "" 1403 1391 "The WP-Cron trigger is disabled, but scheduled tasks are still excecuted " … … 1407 1395 "toujours exécutées à l’aide d’un déclencheur personnalisé." 1408 1396 1409 #: admin/options.php:12 591397 #: admin/options.php:1260 1410 1398 msgid "" 1411 1399 "Caption the button as either \"Approve and Publish\" or \"Approve and " … … 1414 1402 "Intituler le bouton « Approuver et publier » ou « Approuver et planifier »." 1415 1403 1416 #: admin/options.php:126 81404 #: admin/options.php:1269 1417 1405 msgid "This may improve compatibility with some plugins." 1418 1406 msgstr "Cela peut améliorer la compatibilité avec certaines extensions." 1419 1407 1420 #: admin/options.php:1303 1421 #, php-format 1422 msgid "Control Revision Queue access with the %s." 1423 msgstr "Contrôler l’accès à la file d’attente de révision avec la %s." 1424 1425 #: admin/options.php:1309 1426 msgid "" 1427 "Control Revision Queue access with the manage_revision_queue capability." 1428 msgstr "" 1429 "Contrôler l’accès à la file d’attente de révision avec la permissions " 1408 #: admin/options.php:1304 1409 #, php-format 1410 msgid "Control New Revisions access with the %s." 1411 msgstr "Contrôler l’accès à les nouvelles révisions avec la %s." 1412 1413 #: admin/options.php:1310 1414 msgid "Control New Revisions access with the manage_revision_queue capability." 1415 msgstr "" 1416 "Contrôler l’accès à les nouvelles révisions avec la permission " 1430 1417 "« manage_revision_queue »." 1431 1418 1432 #: admin/options.php:13 291419 #: admin/options.php:1330 1433 1420 #, php-format 1434 1421 msgid "Users will need the %s to edit others' Unsubmitted Revisions." … … 1437 1424 "révisions non envoyées des autres." 1438 1425 1439 #: admin/options.php:133 51426 #: admin/options.php:1336 1440 1427 msgid "" 1441 1428 "Users will need the manage_unsubmitted_revisions capability to edit others' " … … 1446 1433 "des autres." 1447 1434 1448 #: admin/options.php:135 5 admin/options.php:13831435 #: admin/options.php:1356 admin/options.php:1384 1449 1436 #, php-format 1450 1437 msgid "If the user can't edit the published post, require the %s." … … 1453 1440 "il est obligatorie avoir les %s." 1454 1441 1455 #: admin/options.php:136 11442 #: admin/options.php:1362 1456 1443 msgid "" 1457 1444 "If the user can't edit the published post, require the edit_others_revisions " … … 1461 1448 "il est obligatorie avoir la permission « edit_others_revisions »." 1462 1449 1463 #: admin/options.php:13 891450 #: admin/options.php:1390 1464 1451 msgid "" 1465 1452 "If the user can't edit the published post, require the list_others_revisions " … … 1469 1456 "il est obligatorie avoir la permission « list_others_revisions »." 1470 1457 1471 #: admin/options.php:139 41458 #: admin/options.php:1395 1472 1459 msgid "" 1473 1460 "Bypass the above restrictions for others' revisions to logged in user's own " … … 1477 1464 "publications de la personne connectée." 1478 1465 1479 #: admin/options.php:140 51466 #: admin/options.php:1406 1480 1467 msgid "Regenerate \"post has revision\" flags" 1481 1468 msgstr "Régénérer les drapeaux « publication avec révision »" 1482 1469 1483 #: admin/options.php:140 81470 #: admin/options.php:1409 1484 1471 msgid "" 1485 1472 "Apply this maintenance operation if Has Revision labels on Posts / Pages " 1486 "screens mismatch the Revision Queuelisting."1473 "screens mismatch the New Revisions listing." 1487 1474 msgstr "" 1488 1475 "Appliquer cette opération de maintenance si les libellés « Dispose d’une " 1489 1476 "révision » sur les écrans Publications/Pages ne correspondent pas à la liste " 1490 "de la file d’attente des révisions."1491 1492 #: admin/options.php:143 31477 "des nouvelles révisions." 1478 1479 #: admin/options.php:1434 1493 1480 #, php-format 1494 1481 msgid "For enhanced notifications, install %sPublishPress Planner%s." 1495 1482 msgstr "Pour des notifications améliorées, installer %sPublishPress Planner%s." 1496 1483 1497 #: admin/options.php:144 61484 #: admin/options.php:1447 1498 1485 #, php-format 1499 1486 msgid "For enhanced notifications, update %sPublishPress Planner%s." … … 1501 1488 "Pour des notifications améliorées, mettre à jour %sPublishPress Planner%s." 1502 1489 1503 #: admin/options.php:146 81490 #: admin/options.php:1469 1504 1491 #, php-format 1505 1492 msgid "" … … 1510 1497 "personnalisable %1$sPublishPress Planner Notifications%2$s." 1511 1498 1512 #: admin/options.php:14 691499 #: admin/options.php:1470 1513 1500 #, php-format 1514 1501 msgid "" … … 1520 1507 "Notifications%2$s." 1521 1508 1522 #: admin/options.php:148 11509 #: admin/options.php:1482 1523 1510 msgid "" 1524 1511 "Users matching Planner > Notifications configuration get revision " … … 1529 1516 "peuvent modifier la publication publiée." 1530 1517 1531 #: admin/options.php:152 3 admin/options.php:15451518 #: admin/options.php:1524 admin/options.php:1546 1532 1519 msgid "Never" 1533 1520 msgstr "Jamais" 1534 1521 1535 #: admin/options.php:152 3 admin/options.php:15451522 #: admin/options.php:1524 admin/options.php:1546 1536 1523 msgid "By default" 1537 1524 msgstr "Par défaut" 1538 1525 1539 #: admin/options.php:152 3 admin/options.php:15451526 #: admin/options.php:1524 admin/options.php:1546 1540 1527 msgid "Always" 1541 1528 msgstr "Toujours" 1542 1529 1543 #: admin/options.php:153 4 admin/options.php:15811530 #: admin/options.php:1535 admin/options.php:1582 1544 1531 msgid "select recipients" 1545 1532 msgstr "sélectionner les destinataires" 1546 1533 1547 #: admin/options.php:159 51534 #: admin/options.php:1596 1548 1535 msgid "" 1549 1536 "To avoid notification failures, buffer emails for delayed sending once " … … 1554 1541 "jours sont dépassées." 1555 1542 1556 #: admin/options.php:161 61543 #: admin/options.php:1617 1557 1544 msgid "Notification Buffer" 1558 1545 msgstr "Tampon de notification" 1559 1546 1560 #: admin/options.php:164 41547 #: admin/options.php:1645 1561 1548 msgid "Notification Log" 1562 1549 msgstr "Journal de notification" 1563 1550 1564 #: admin/options.php:167 31551 #: admin/options.php:1674 1565 1552 msgid "Purge Notification Buffer" 1566 1553 msgstr "Tampon de notification de purge" 1567 1554 1568 #: admin/options.php:16 791555 #: admin/options.php:1680 1569 1556 msgid "Truncate Notification Log" 1570 1557 msgstr "Journal des notifications tronquées" 1571 1558 1572 #: admin/options.php:168 51559 #: admin/options.php:1686 1573 1560 #, php-format 1574 1561 msgid "Sent in last minute: %d / %d" 1575 1562 msgstr "Envoyée à la dernière minute : %d/%d" 1576 1563 1577 #: admin/options.php:168 61564 #: admin/options.php:1687 1578 1565 #, php-format 1579 1566 msgid "Sent in last hour: %d / %d" 1580 1567 msgstr "Envoyé dans la dernière heure: %d/%d" 1581 1568 1582 #: admin/options.php:168 71569 #: admin/options.php:1688 1583 1570 #, php-format 1584 1571 msgid "Sent in last day: %d / %d" 1585 1572 msgstr "Envoyé le dernier jour: %d/%d" 1586 1573 1587 #: admin/options.php:169 41574 #: admin/options.php:1695 1588 1575 #, php-format 1589 1576 msgid "Seconds until next buffer processing time: %d" … … 1591 1578 "Secondes jusqu’au temps de traitement de la mémoire tampon suivante : %d" 1592 1579 1593 #: admin/options.php:170 51580 #: admin/options.php:1706 1594 1581 msgid "Show Notification Log / Buffer" 1595 1582 msgstr "Afficher le journal des notifications/tampon" 1596 1583 1597 #: admin/options.php:170 71584 #: admin/options.php:1708 1598 1585 msgid "Show with message content" 1599 1586 msgstr "Afficher avec le contenu du message" 1600 1587 1601 #: admin/options.php:17 291588 #: admin/options.php:1730 1602 1589 msgid "Ready to enhance your revision notifications?" 1603 1590 msgstr "Prêt à améliorer vos notifications de révision ?" 1604 1591 1605 #: admin/options.php:173 21592 #: admin/options.php:1733 1606 1593 msgid "" 1607 1594 "Upgrade to Revisions Pro for integration with our PublishPress Planner " … … 1611 1598 "Planner Notifications." 1612 1599 1613 #: admin/options.php:173 81600 #: admin/options.php:1739 1614 1601 msgid "Customize notification message and subject" 1615 1602 msgstr "Personnaliser le message et l’objet de notification" 1616 1603 1617 #: admin/options.php:174 11604 #: admin/options.php:1742 1618 1605 msgid "Notify for a specific post type, category or term" 1619 1606 msgstr "" 1620 1607 "Notifier pour un type de publication, une catégorie ou un terme spécifique" 1621 1608 1622 #: admin/options.php:174 41609 #: admin/options.php:1745 1623 1610 msgid "Target specific roles, users, or user groups" 1624 1611 msgstr "" … … 1626 1613 "d’utilisateurs/utilisatrices spécifiques" 1627 1614 1628 #: admin/options.php:174 71615 #: admin/options.php:1748 1629 1616 msgid "With PublishPress Planner Pro, send notifications to a Slack channel" 1630 1617 msgstr "" 1631 1618 "Envoyer des notifications à un canal Slack avec PublishPress Planner Pro" 1632 1619 1633 #: admin/options.php:177 4 admin/options.php:23041620 #: admin/options.php:1775 admin/options.php:2308 1634 1621 msgid "Pro Feature" 1635 1622 msgstr "Fonctionnalité Pro" 1636 1623 1637 #: admin/options.php:177 51624 #: admin/options.php:1776 1638 1625 msgid "Upgrade to Revisions Pro to unlock Planner Notifications integration." 1639 1626 msgstr "" … … 1641 1628 "Notifications." 1642 1629 1643 #: admin/options.php:177 61630 #: admin/options.php:1777 1644 1631 msgid "" 1645 1632 "Customize notification content and recipients for each notification type." … … 1647 1634 "Personnaliser le contenu et les destinataires de chaque type de notification." 1648 1635 1649 #: admin/options.php:180 01636 #: admin/options.php:1801 1650 1637 msgid "Some themes may block revision preview." 1651 1638 msgstr "Certains thèmes peuvent bloquer l’aperçu de la révision." 1652 1639 1653 #: admin/options.php:181 71640 #: admin/options.php:1818 1654 1641 msgid "Published Post Slug" 1655 1642 msgstr "Slug de la publication publiée" 1656 1643 1657 #: admin/options.php:181 81644 #: admin/options.php:1819 1658 1645 msgid "Revision Slug" 1659 1646 msgstr "Slug de la révision" 1660 1647 1661 #: admin/options.php:18 191648 #: admin/options.php:1820 1662 1649 msgid "Revision ID only" 1663 1650 msgstr "ID de révision uniquement" 1664 1651 1665 #: admin/options.php:183 41652 #: admin/options.php:1835 1666 1653 msgid "" 1667 1654 "Some themes or plugins may require Revision Slug or Revision ID link type " … … 1672 1659 "l’affichage du champ." 1673 1660 1674 #: admin/options.php:184 31661 #: admin/options.php:1844 1675 1662 #, php-format 1676 1663 msgid "The revision preview argument is configured by constant definition: %s" … … 1679 1666 "définition de la constante : %s" 1680 1667 1681 #: admin/options.php:185 01668 #: admin/options.php:1851 1682 1669 msgid "" 1683 1670 "Adjust preview links to use \"rv_preview\" argument instead of \"preview\". " … … 1688 1675 "fonctionne le mieux avec votre thème." 1689 1676 1690 #: admin/options.php:185 41677 #: admin/options.php:1855 1691 1678 msgid "" 1692 1679 "Some themes may require this setting for correct revision preview display." … … 1695 1682 "la révision s’affiche correctement." 1696 1683 1697 #: admin/options.php:189 11684 #: admin/options.php:1892 1698 1685 #, php-format 1699 1686 msgid "" … … 1703 1690 "la %s pour modifier les publications non publiées des autres." 1704 1691 1705 #: admin/options.php:189 71692 #: admin/options.php:1898 1706 1693 msgid "" 1707 1694 "If the user can't publish, require the edit_others_drafts capability to edit " … … 1712 1699 "publiées des autres." 1713 1700 1714 #: admin/options.php:190 31701 #: admin/options.php:1904 1715 1702 msgid "" 1716 1703 "If post-specific permissions restrict or expand access to a post, apply " … … 1720 1707 "à celle-ci, ces droits s’appliquent également à ses révisions." 1721 1708 1722 #: admin/options.php:191 21709 #: admin/options.php:1916 1723 1710 msgid "Rank Math SEO may prevent Revision update on some sites." 1724 1711 msgstr "" 1725 1712 "Rank Math SEO peut empêcher la mise à jour de la révision dans des sites." 1726 1713 1727 #: admin/options.php:19 19includes/CoreAdmin.php:2051714 #: admin/options.php:1923 includes/CoreAdmin.php:205 1728 1715 msgid "WPML Translation Management" 1729 1716 msgstr "Gestion des traductions WPML" 1730 1717 1731 #: admin/options.php:192 41718 #: admin/options.php:1928 1732 1719 msgid "Sync \"Needs Update\" flags" 1733 1720 msgstr "Synchroniser les drapeaux « Nécessite une mise à jour »" 1734 1721 1735 #: admin/options.php:19 281722 #: admin/options.php:1932 1736 1723 msgid "" 1737 1724 "Set \"Needs Update\" for any post with translations which was updated " … … 1742 1729 "révision) plus récemment que ses traductions." 1743 1730 1744 #: admin/options.php:19 381731 #: admin/options.php:1942 1745 1732 msgid "Show descriptive captions for PublishPress Revisions settings." 1746 1733 msgstr "" … … 1748 1735 "Revisions." 1749 1736 1750 #: admin/options.php:194 11751 msgid "" 1752 "Plugin settings, Revision Queuecontents and related data will be deleted, "1737 #: admin/options.php:1945 1738 msgid "" 1739 "Plugin settings, New Revisions contents and related data will be deleted, " 1753 1740 "but only after the last copy of Revisions / Revisions Pro is deleted." 1754 1741 msgstr "" 1755 "Les réglages de l’extension, le contenu de la file d’attente des révisions "1756 " et les données associées seront supprimés, mais uniquement après la"1757 " suppression dela dernière copie de Revisions/Revisions Pro."1758 1759 #: admin/options.php:196 21742 "Les réglages de l’extension, le contenu des nouvelles révisions et les " 1743 "données associées seront supprimés, mais uniquement après la suppression de " 1744 "la dernière copie de Revisions/Revisions Pro." 1745 1746 #: admin/options.php:1966 1760 1747 msgid "Unlock Pro Integrations" 1761 1748 msgstr "Déverrouiller les intégrations Pro" 1762 1749 1763 #: admin/options.php:196 31750 #: admin/options.php:1967 1764 1751 msgid "" 1765 1752 "Upgrade to the Pro version for optimal compatibility and prompt, " … … 1769 1756 "et professionnel." 1770 1757 1771 #: admin/options.php:198 1 admin/options.php:22291758 #: admin/options.php:1985 admin/options.php:2233 1772 1759 msgid "Admin" 1773 1760 msgstr "Administrateur/administratrice" 1774 1761 1775 #: admin/options.php:198 4 admin/options.php:22271762 #: admin/options.php:1988 admin/options.php:2231 1776 1763 msgid "Builder" 1777 1764 msgstr "Constructeur" 1778 1765 1779 #: admin/options.php:19 87 admin/options.php:22311766 #: admin/options.php:1991 admin/options.php:2235 1780 1767 msgid "Cache" 1781 1768 msgstr "Cache" 1782 1769 1783 #: admin/options.php:199 01770 #: admin/options.php:1994 1784 1771 msgid "E-Commerce" 1785 1772 msgstr "E-Commerce" 1786 1773 1787 #: admin/options.php:199 3 admin/options.php:22371774 #: admin/options.php:1997 admin/options.php:2241 1788 1775 msgid "Fields" 1789 1776 msgstr "Champs" 1790 1777 1791 #: admin/options.php: 19971778 #: admin/options.php:2001 1792 1779 msgid "Multilingual" 1793 1780 msgstr "Multilingue" 1794 1781 1795 #: admin/options.php:200 1 admin/options.php:22331782 #: admin/options.php:2005 admin/options.php:2237 1796 1783 msgid "SEO" 1797 1784 msgstr "SEO" 1798 1785 1799 #: admin/options.php:200 4 admin/options.php:22431786 #: admin/options.php:2008 admin/options.php:2247 1800 1787 msgid "Workflow" 1801 1788 msgstr "Flux de travail" 1802 1789 1803 #: admin/options.php:20 861790 #: admin/options.php:2090 1804 1791 msgid "" 1805 1792 "Specify which PublishPress Revisions Settings to control network-wide. " … … 1810 1797 "chaque site." 1811 1798 1812 #: admin/options.php:2 0961799 #: admin/options.php:2100 1813 1800 #, php-format 1814 1801 msgctxt "opentag option_tabname closetag (explanatory note)" … … 1816 1803 msgstr "%1$s%2$s%3$s (%4$s)" 1817 1804 1818 #: admin/options.php:213 21805 #: admin/options.php:2136 1819 1806 #, php-format 1820 1807 msgid "network-wide control of \"%s\"" 1821 1808 msgstr "contrôle à l’échelle du réseau des « %s »" 1822 1809 1823 #: admin/options.php:21 591810 #: admin/options.php:2163 1824 1811 msgid "Save Changes" 1825 1812 msgstr "Enregistrer le modifications" 1826 1813 1827 #: admin/options.php:216 01814 #: admin/options.php:2164 1828 1815 msgid "Revert to Defaults" 1829 1816 msgstr "Revenir à la valeur par défaut" 1830 1817 1831 #: admin/options.php:216 21818 #: admin/options.php:2166 1832 1819 msgid "" 1833 1820 "All settings in this form (including those on unselected tabs) will be reset " … … 1837 1824 "sélectionnés) seront réinitialisés aux valeurs par défaut. Confirmez-vous ?" 1838 1825 1839 #: admin/options.php:223 51826 #: admin/options.php:2239 1840 1827 msgid "Commerce" 1841 1828 msgstr "Commerce" 1842 1829 1843 #: admin/options.php:22 391830 #: admin/options.php:2243 1844 1831 msgid "Multilang" 1845 1832 msgstr "Multilingue" 1846 1833 1847 #: admin/options.php:224 11834 #: admin/options.php:2245 1848 1835 msgid "Community" 1849 1836 msgstr "Communauté" 1850 1837 1851 #: admin/options.php:22 591838 #: admin/options.php:2263 1852 1839 msgid "Pro" 1853 1840 msgstr "Pro" 1854 1841 1855 #: admin/options.php:226 41842 #: admin/options.php:2268 1856 1843 msgid "Supported" 1857 1844 msgstr "Prise en charge" 1858 1845 1859 #: admin/options.php:22 67 admin/options.php:23211846 #: admin/options.php:2271 admin/options.php:2325 1860 1847 msgid "Active Plugin" 1861 1848 msgstr "Extension active" 1862 1849 1863 #: admin/options.php:22 791850 #: admin/options.php:2283 1864 1851 msgid "Supported by PublishPress Revisions" 1865 1852 msgstr "Prise en charge par PublishPress Revisions" 1866 1853 1867 #: admin/options.php:228 11854 #: admin/options.php:2285 1868 1855 msgid "Supported by Revisions Pro" 1869 1856 msgstr "Prise en charge par Revisions Pro" 1870 1857 1871 #: admin/options.php:229 41858 #: admin/options.php:2298 1872 1859 msgid "Integration Active" 1873 1860 msgstr "Intégration active" 1874 1861 1875 #: admin/options.php:2 2961862 #: admin/options.php:2300 1876 1863 msgid "Upgrade to Pro to enable this integration" 1877 1864 msgstr "Passer à la version Pro pour activer cette intégration" 1878 1865 1879 #: admin/options.php:230 51866 #: admin/options.php:2309 1880 1867 #, php-format 1881 1868 msgid "Unlock %s integration to enhance your revisions solution." … … 1883 1870 "Déverrouiller l’intégration %s pour améliorer votre solution de révision." 1884 1871 1885 #: admin/options.php:232 11872 #: admin/options.php:2325 1886 1873 msgid "Active Plugin Integration" 1887 1874 msgstr "Intégration de l’extension active" 1888 1875 1889 #: admin/options.php:233 11876 #: admin/options.php:2335 1890 1877 msgid "Supported Plugin Integration" 1891 1878 msgstr "Intégration des extensions prises en charge" 1892 1879 1893 #: admin/options.php:234 11880 #: admin/options.php:2345 1894 1881 msgid "Supported Plugin" 1895 1882 msgstr "Extension prise en charge" 1896 1883 1897 #: admin/post-edit-block-ui_rvy.php:170 admin/post-edit_rvy.php:33 41884 #: admin/post-edit-block-ui_rvy.php:170 admin/post-edit_rvy.php:336 1898 1885 msgid "Author" 1899 1886 msgstr "Auteur/autrice" … … 2005 1992 msgstr "Voir la révision en cours" 2006 1993 2007 #: admin/post-edit_rvy.php:18 61994 #: admin/post-edit_rvy.php:188 2008 1995 msgid "Compare this revision to published copy, or to other revisions" 2009 1996 msgstr "Comparez cette révision à la copie publiée ou à d’autres révisions" 2010 1997 2011 #: admin/post-edit_rvy.php:22 11998 #: admin/post-edit_rvy.php:223 2012 1999 msgid "View / moderate saved revision" 2013 2000 msgstr "Voir/modérer la révision enregistrée" 2014 2001 2015 #: admin/post-edit_rvy.php:22 42002 #: admin/post-edit_rvy.php:226 2016 2003 msgid "View saved revision" 2017 2004 msgstr "Voir la révision enregistrée" … … 2146 2133 #, php-format 2147 2134 msgctxt "PublishedPostName (other filter captions)" 2148 msgid " Revision Queuefor \"%s\"%s"2149 msgstr " File d’attente de révisionpour « %s »%s"2135 msgid "New Revisions for \"%s\"%s" 2136 msgstr "Nouvelles révisions pour « %s »%s" 2150 2137 2151 2138 #: admin/revision-queue_rvy.php:157 2152 2139 #, php-format 2153 msgid " Revision Queue%s"2154 msgstr " File d’attente de révision%s"2140 msgid "New Revisions %s" 2141 msgstr "Nouvelles révisions %s" 2155 2142 2156 2143 #: admin/revision-ui_rvy.php:45 … … 2592 2579 msgstr "%1$s requêtes en %2$s secondes. %3$s Mo utilisé." 2593 2580 2594 #: revision-creation_rvy.php:2 192581 #: revision-creation_rvy.php:221 2595 2582 msgid "Could not insert revision into the database" 2596 2583 msgstr "Impossible d’insérer une révision dans la base de données" … … 2625 2612 2626 2613 #: revision-workflow_rvy.php:187 2627 msgid " Revision Queue: "2628 msgstr " File d’attente des révisions : "2614 msgid "New Revisions: " 2615 msgstr "Nouvelles révisions : " 2629 2616 2630 2617 #: revision-workflow_rvy.php:189 … … 2917 2904 msgid "Revision Workflow" 2918 2905 msgstr "Flux de travail de révision" 2906 2907 #~ msgid "Revision Queue" 2908 #~ msgstr "File d’attente des révisions" 2909 2910 #~ msgid "Revision Archive" 2911 #~ msgstr "Archive des révisions" 2912 2913 #~ msgid "Can see Revisions from other users in Revision Queue." 2914 #~ msgstr "" 2915 #~ "Peut voir les révisions des autres utilisateurs/utilisatrices dans la " 2916 #~ "file d’attente des révisions." 2917 2918 #~ msgid "View the Revision Archive, a list of past Revisions." 2919 #~ msgstr "Voir l’archive des révisions, une liste des révisions précédentes." 2920 2921 #, php-format 2922 #~ msgid "Revision Queue %s" 2923 #~ msgstr "File d’attente de révision %s" 2924 2925 #~ msgid "Revision Queue: " 2926 #~ msgstr "File d’attente des révisions : " 2919 2927 2920 2928 #~ msgid "Count" -
revisionary/trunk/languages/revisionary-it_IT.po
r3394622 r3397524 6 6 "Submit, Approve and Schedule Content Changes - Stable (latest release)\n" 7 7 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n" 8 "POT-Creation-Date: 2025-1 0-30T15:00:36+00:00\n"9 "PO-Revision-Date: 2025-11- 09 11:01+0100\n"8 "POT-Creation-Date: 2025-11-12T19:30:03+00:00\n" 9 "PO-Revision-Date: 2025-11-13 10:18+0100\n" 10 10 "Last-Translator: \n" 11 11 "Language-Team: Angelo Giammarresi - info@wocmultimedia.com\n" … … 98 98 99 99 #: admin/admin-posts_rvy.php:294 admin/admin_rvy.php:365 100 #: admin/admin_rvy.php:433 admin/options.php:953 101 msgid "Revision Queue" 102 msgstr "Coda revisioni" 103 104 #: admin/admin_lib-mu_rvy.php:10 admin/options.php:324 100 #: admin/admin_rvy.php:433 admin/options.php:159 admin/options.php:636 101 #: admin/options.php:954 102 msgid "New Revisions" 103 msgstr "Nuove revisioni" 104 105 #: admin/admin_lib-mu_rvy.php:10 admin/options.php:325 105 106 msgid "PublishPress Revisions Network Settings" 106 107 msgstr "Impostazioni di rete di PublishPress Revisions" … … 110 111 msgstr "Impostazioni rete" 111 112 112 #: admin/admin_lib-mu_rvy.php:21 admin/options.php:32 6113 #: admin/admin_lib-mu_rvy.php:21 admin/options.php:327 113 114 msgid "PublishPress Revisions Network Defaults" 114 115 msgstr "Reti predefinite di PublishPress Revisions" … … 139 140 140 141 #: admin/admin_rvy.php:374 admin/admin_rvy.php:375 admin/admin_rvy.php:434 141 #: admin/revision-archive_rvy.php:81 142 msgid "Revision Archive" 143 msgstr "Archivio revisioni" 144 145 #: admin/admin_rvy.php:392 admin/options.php:330 142 #: admin/options.php:158 admin/options.php:539 143 #: admin/revision-archive_rvy.php:81 admin/revisions.php:237 144 msgid "Past Revisions" 145 msgstr "Revisioni passate" 146 147 #: admin/admin_rvy.php:392 admin/options.php:331 146 148 msgid "PublishPress Revisions Settings" 147 149 msgstr "Impostazione di PublishPress Revisions" … … 152 154 153 155 #: admin/admin_rvy.php:399 admin/admin_rvy.php:400 admin/admin_rvy.php:440 154 #: admin/options.php:175 6 admin/options.php:1783 admin/options.php:1967155 #: admin/options.php:231 4includes/CoreAdmin.php:212156 #: admin/options.php:1757 admin/options.php:1784 admin/options.php:1971 157 #: admin/options.php:2318 includes/CoreAdmin.php:212 156 158 msgid "Upgrade to Pro" 157 159 msgstr "Aggiornare a Pro" … … 166 168 167 169 #: admin/admin_rvy.php:483 168 msgid "Can see Revisions from other users in Revision Queue."169 msgstr "Può vedere le revisioni di altri utenti della coda di revisione."170 msgid "Can see New Revisions from other users." 171 msgstr "Può vedere le nuove revisioni degli altri utenti." 170 172 171 173 #: admin/admin_rvy.php:484 172 msgid "Can access Revision Queue."173 msgstr "Può accedere all a coda di revisione."174 msgid "Can access New Revisions." 175 msgstr "Può accedere alle nuove revisioni." 174 176 175 177 #: admin/admin_rvy.php:485 … … 188 190 189 191 #: admin/admin_rvy.php:488 190 msgid "View the Revision Archive, a list of past Revisions." 191 msgstr "" 192 "Visualizza l'archivio delle revisioni, un elenco delle revisioni passate." 192 msgid "View Past Revisions." 193 msgstr "Visualizza le revisioni passate." 193 194 194 195 #: admin/admin_rvy.php:518 … … 359 360 msgstr "Reimposta i filtri" 360 361 361 #: admin/class-list-table-archive.php:794 admin/options.php:19 78362 #: admin/class-list-table-archive.php:794 admin/options.php:1982 362 363 msgid "All" 363 364 msgstr "Tutto" … … 373 374 374 375 #: admin/class-list-table-archive.php:862 admin/class-list-table_rvy.php:1686 375 #: admin/post-edit_rvy.php:18 5 admin/post-edit_rvy.php:249376 #: admin/post-edit_rvy.php:26 3376 #: admin/post-edit_rvy.php:187 admin/post-edit_rvy.php:251 377 #: admin/post-edit_rvy.php:265 377 378 msgctxt "revisions" 378 379 msgid "Compare" … … 438 439 msgstr "Questa revisione non è ancora programmata. Dovrà essere approvata." 439 440 440 #: admin/class-list-table_rvy.php:860 admin/history_rvy.php:90 3441 #: admin/class-list-table_rvy.php:860 admin/history_rvy.php:907 441 442 msgid "No author" 442 443 msgstr "Senza autore" … … 475 476 476 477 #: admin/class-list-table_rvy.php:1318 477 #| msgid "Revision Status"478 478 msgid "All Revision Statuses" 479 479 msgstr "Tutti gli stati di revisione" … … 522 522 msgstr "Revisione aggiornata." 523 523 524 #: admin/history_rvy.php:8 3 admin/history_rvy.php:87 admin/history_rvy.php:93525 #: admin/history_rvy.php: 96rvy_init-functions.php:267524 #: admin/history_rvy.php:87 admin/history_rvy.php:91 admin/history_rvy.php:97 525 #: admin/history_rvy.php:100 rvy_init-functions.php:267 526 526 msgid "Copy" 527 527 msgstr "Copia" 528 528 529 #: admin/history_rvy.php:8 3 admin/history_rvy.php:87529 #: admin/history_rvy.php:87 admin/history_rvy.php:91 530 530 msgid "Copy content to the clipboard." 531 531 msgstr "Copia i contenuti negli appunti." 532 532 533 #: admin/history_rvy.php:9 3 admin/history_rvy.php:96533 #: admin/history_rvy.php:97 admin/history_rvy.php:100 534 534 msgid "Copy the above content to the clipboard." 535 535 msgstr "Copia i contenuti di sopra negli appunti." 536 536 537 #: admin/history_rvy.php:2 78 admin/history_rvy.php:294537 #: admin/history_rvy.php:282 admin/history_rvy.php:298 538 538 #, php-format 539 539 msgid "Compare %s of \"%s\"" 540 540 msgstr "Compara %s di \"%s\"" 541 541 542 #: admin/history_rvy.php:6 47 admin/options.php:921542 #: admin/history_rvy.php:651 admin/options.php:922 543 543 msgid "Post Date" 544 544 msgstr "Data articolo" 545 545 546 #: admin/history_rvy.php:6 48546 #: admin/history_rvy.php:652 547 547 msgid "Post Parent" 548 548 msgstr "Articoli genitore" 549 549 550 #: admin/history_rvy.php:6 49550 #: admin/history_rvy.php:653 551 551 msgid "Menu Order" 552 552 msgstr "Ordinamento menu" 553 553 554 #: admin/history_rvy.php:65 0554 #: admin/history_rvy.php:654 555 555 msgid "Comment Status" 556 556 msgstr "Stato del commento" 557 557 558 #: admin/history_rvy.php:65 1558 #: admin/history_rvy.php:655 559 559 msgid "Ping Status" 560 560 msgstr "Stato di ping" 561 561 562 #: admin/history_rvy.php:79 1562 #: admin/history_rvy.php:795 563 563 msgid "Page Template" 564 564 msgstr "Template Pagina" 565 565 566 #: admin/history_rvy.php:79 4566 #: admin/history_rvy.php:798 567 567 msgid "Featured Image" 568 568 msgstr "Immagine in evidenza" 569 569 570 #: admin/history_rvy.php: 798570 #: admin/history_rvy.php:802 571 571 msgid "Beaver Builder Data" 572 572 msgstr "Dati Beaver Builder" 573 573 574 #: admin/history_rvy.php: 799574 #: admin/history_rvy.php:803 575 575 msgid "Beaver Builder Settings" 576 576 msgstr "Impostazioni di Beaver Builder" 577 577 578 #: admin/history_rvy.php:105 0578 #: admin/history_rvy.php:1054 579 579 msgid "Scheduled for " 580 580 msgstr "Programmato per " 581 581 582 #: admin/history_rvy.php:105 5582 #: admin/history_rvy.php:1059 583 583 msgid "Requested for " 584 584 msgstr "Richiesto per " 585 585 586 #: admin/history_rvy.php:106 0586 #: admin/history_rvy.php:1064 587 587 msgid "Modified " 588 588 msgstr "Modificato " 589 589 590 #: admin/history_rvy.php:106 5590 #: admin/history_rvy.php:1069 591 591 #, php-format 592 592 msgid "%s%s from now" 593 593 msgstr "%s%s da adesso" 594 594 595 #: admin/history_rvy.php:10 76595 #: admin/history_rvy.php:1080 596 596 msgid "M j, Y @ g:i a" 597 597 msgstr "J M, Y @ g:i a" 598 598 599 #: admin/history_rvy.php:112 1599 #: admin/history_rvy.php:1125 600 600 msgid "M j, Y @ H:i" 601 601 msgstr "J M, Y @ H:i" 602 602 603 #: admin/history_rvy.php:112 2603 #: admin/history_rvy.php:1126 604 604 msgctxt "revision date short format" 605 605 msgid "j M @ H:i" 606 606 msgstr "j M @ H:i" 607 607 608 #: admin/history_rvy.php:12 08front_rvy.php:597 front_rvy.php:607608 #: admin/history_rvy.php:1212 front_rvy.php:597 front_rvy.php:607 609 609 #: front_rvy.php:626 front_rvy.php:657 rvy_init-functions.php:271 610 610 #: rvy_init-functions.php:289 rvy_init-functions.php:328 … … 613 613 msgstr "Approva" 614 614 615 #: admin/history_rvy.php:12 08615 #: admin/history_rvy.php:1212 616 616 msgid "Preview / Approve" 617 617 msgstr "Anteprima/Approva" 618 618 619 #: admin/history_rvy.php:121 0admin/post-editor-workflow-ui_rvy.php:77619 #: admin/history_rvy.php:1214 admin/post-editor-workflow-ui_rvy.php:77 620 620 #: admin/post-editor-workflow-ui_rvy.php:118 621 621 #: admin/post-editor-workflow-ui_rvy.php:231 … … 624 624 msgstr "Anteprima" 625 625 626 #: admin/history_rvy.php:130 4626 #: admin/history_rvy.php:1308 627 627 msgid "Preview / Restore" 628 628 msgstr "Anteprima/ripristina" 629 629 630 #: admin/history_rvy.php:131 1630 #: admin/history_rvy.php:1315 631 631 msgid "Manage" 632 632 msgstr "Gestisci" 633 633 634 #: admin/history_rvy.php:131 2634 #: admin/history_rvy.php:1316 635 635 msgid "List" 636 636 msgstr "Elenco" … … 649 649 msgstr "Caratteristiche" 650 650 651 #: admin/options.php:158 admin/options.php:538 admin/revisions.php:237652 msgid "Past Revisions"653 msgstr "Revisioni passate"654 655 #: admin/options.php:159 admin/options.php:635656 msgid "New Revisions"657 msgstr "Nuove revisioni"658 659 651 #: admin/options.php:160 660 652 msgid "Options" … … 669 661 msgstr "Stati" 670 662 671 #: admin/options.php:163 admin/options.php:95 4663 #: admin/options.php:163 admin/options.php:955 672 664 msgid "Notifications" 673 665 msgstr "Notifiche" … … 686 678 687 679 #: admin/options.php:178 688 msgid "Revision Queue access requires role capability" 689 msgstr "" 690 "Per accedere alla coda di revisione è obbligatoria la capacità di ruolo" 680 msgid "New Revisions access requires role capability" 681 msgstr "Per l'accesso alle nuove revisioni è obbligatorio la capacità di ruolo" 691 682 692 683 #: admin/options.php:179 … … 774 765 775 766 #: admin/options.php:195 767 msgid "Hide copy buttons on Compare screen" 768 msgstr "Nascondi i pulsanti \"Copia\" nella schermata \"Compara\"" 769 770 #: admin/options.php:196 776 771 msgid "Use WP-Cron scheduling" 777 772 msgstr "Utilizza la programmazione WP-Cron" 778 773 779 #: admin/options.php:19 6774 #: admin/options.php:197 780 775 msgid "Site uses a custom trigger for WP-Cron tasks" 781 776 msgstr "Il sito utilizza un trigger personalizzato per le attività di WP-Cron" 782 777 783 #: admin/options.php:19 7778 #: admin/options.php:198 784 779 msgid "Asynchronous Publishing" 785 780 msgstr "Pubblicazione asincrona" 786 781 787 #: admin/options.php:19 8 admin/options.php:199782 #: admin/options.php:199 admin/options.php:200 788 783 msgid "Update Publish Date" 789 784 msgstr "Aggiorna data pubblicazione" 790 785 791 #: admin/options.php:20 0 admin/options.php:201786 #: admin/options.php:201 admin/options.php:202 792 787 msgid "Update Modified Date" 793 788 msgstr "Aggiorna la data di modifica" 794 789 795 #: admin/options.php:20 4 admin/options.php:205790 #: admin/options.php:205 admin/options.php:206 796 791 #, php-format 797 792 msgid "Use %1$sPlanner Notifications%2$s" 798 793 msgstr "Usa %1$sNotifiche di Planner%2$s" 799 794 800 #: admin/options.php:20 7795 #: admin/options.php:208 801 796 #, php-format 802 797 msgid "Email original Author when a %s is submitted" 803 798 msgstr "Invia una email agli autori originali quando una %s è stata inviata" 804 799 805 #: admin/options.php:20 8800 #: admin/options.php:209 806 801 #, php-format 807 802 msgid "Email the original Author when a %s is approved" 808 803 msgstr "Invia una email agli autori originali quando una %s è stata approvata" 809 804 810 #: admin/options.php:2 09805 #: admin/options.php:210 811 806 #, php-format 812 807 msgid "Email the Revisor when a %s is approved" 813 808 msgstr "Invia una email ai revisori quando una %s è stata approvata" 814 809 815 #: admin/options.php:21 0810 #: admin/options.php:211 816 811 #, php-format 817 812 msgid "Email the original Author when a %s is published" 818 813 msgstr "Invia una email agli autori originali quando una %s è stata pubblicata" 819 814 820 #: admin/options.php:21 1815 #: admin/options.php:212 821 816 #, php-format 822 817 msgid "Email the Revisor when a %s is published" 823 818 msgstr "Invia una email ai revisori quando una %s è stata pubblicata" 824 819 825 #: admin/options.php:21 2820 #: admin/options.php:213 826 821 msgid "Enable notification buffer" 827 822 msgstr "Attiva buffer delle notifche" 828 823 829 #: admin/options.php:21 3824 #: admin/options.php:214 830 825 msgid "Revisors can create a new revision for any custom post type" 831 826 msgstr "" 832 827 "I revisori possono crare una nuova revisione per ogni tipo di contenuto" 833 828 834 #: admin/options.php:21 4829 #: admin/options.php:215 835 830 msgid "Prevent Revisors from editing others' unpublished Posts" 836 831 msgstr "" 837 832 "Impedisci ai revisori di modificare gli articoli non pubblicati di altri" 838 833 839 #: admin/options.php:21 5834 #: admin/options.php:216 840 835 msgid "Display Hints" 841 836 msgstr "Visualizza suggerimenti" 842 837 843 #: admin/options.php:21 6838 #: admin/options.php:217 844 839 msgid "Delete settings and Revisions if plugin is deleted" 845 840 msgstr "" 846 841 "Elimina le impostazioni e le revisioni quando il plugin viene eliminato" 847 842 848 #: admin/options.php:21 7843 #: admin/options.php:218 849 844 msgid "Show Preview Links" 850 845 msgstr "Mostra i link di anteprima" 851 846 852 #: admin/options.php:21 8847 #: admin/options.php:219 853 848 msgid "Preview Link Type" 854 849 msgstr "Anteprima tipo di collegamento" 855 850 856 #: admin/options.php:2 19851 #: admin/options.php:220 857 852 msgid "Modify preview link for better theme compatibility" 858 853 msgstr "Adatta i link di anteprima per una migliore compatibilità con il tema" 859 854 860 #: admin/options.php:22 0855 #: admin/options.php:221 861 856 msgid "Theme Compat: For front page revision preview, set home flag" 862 857 msgstr "" … … 864 859 "impostare il contrassegno home" 865 860 866 #: admin/options.php:22 1861 #: admin/options.php:222 867 862 msgid "Approve Button on Compare screen" 868 863 msgstr "Pulsante approva nella schermata «Confronta»" 869 864 870 #: admin/options.php:22 2865 #: admin/options.php:223 871 866 msgid "Copy revision comments to published post" 872 867 msgstr "Copia i commenti di revisione nell'articolo pubblicato" 873 868 874 #: admin/options.php:22 3869 #: admin/options.php:224 875 870 msgid "Compare Past Revisions ordering:" 876 871 msgstr "Ordine per confrontare le revisioni precedenti:" 877 872 878 #: admin/options.php:224879 #, php-format880 msgid ""881 "List %s in Revision Queue for \"My Activity\" or \"Revisions to My Posts\" "882 "view"883 msgstr ""884 "Elenca %s nella coda di revisioni per la vista \"Le mie attività\" o "885 "\"Revisioni dei miei articoli\""886 887 873 #: admin/options.php:225 874 #, php-format 875 msgid "List %s for \"My Activity\" or \"Revisions to My Posts\" view" 876 msgstr "" 877 "Elenca %s per la visualizzazione \"Le mie attività\" o \"Revisioni dei miei " 878 "articoli\"" 879 880 #: admin/options.php:226 888 881 msgid "Store custom fields of submitted and scheduled revisions for archive" 889 882 msgstr "" … … 891 884 "l'archivio" 892 885 893 #: admin/options.php:22 6886 #: admin/options.php:227 894 887 msgid "Keep an archive of revision edits, even after the revision is published" 895 888 msgstr "" … … 897 890 "revisione è stata pubblicata" 898 891 899 #: admin/options.php:22 7892 #: admin/options.php:228 900 893 msgid "On Revision publication, delete Editorial Comments" 901 894 msgstr "Quando la revisione viene pubblicata, eliminare i commenti editoriali" 902 895 903 #: admin/options.php:22 8896 #: admin/options.php:229 904 897 msgid "Enable deletion queue" 905 898 msgstr "Abilita la coda di cancellazione" 906 899 907 #: admin/options.php:2 29900 #: admin/options.php:230 908 901 msgid "Allow Past Revisions to be deleted" 909 902 msgstr "Conasenti l'eliminazione delle revisioni precedenti" 910 903 911 #: admin/options.php:23 0904 #: admin/options.php:231 912 905 msgid "Restoring a Revision requires role capability" 913 906 msgstr "Per ripristinare una revisione è obbligatoria la capacità di ruolo" 914 907 915 #: admin/options.php:23 1908 #: admin/options.php:232 916 909 msgid "Compatibility Mode" 917 910 msgstr "Modalità di compatibilità" 918 911 919 #: admin/options.php:23 2912 #: admin/options.php:233 920 913 msgid "Planner Notifications Access-Limited" 921 914 msgstr "Accesso limitato alle notifiche di Planner" 922 915 923 #: admin/options.php:23 3916 #: admin/options.php:234 924 917 msgid "Maximum Revisions per post" 925 918 msgstr "Numero massimo di revisioni per articolo" 926 919 927 #: admin/options.php:23 4920 #: admin/options.php:235 928 921 msgid "Apply Post Permissions to Revisions" 929 922 msgstr "Applica le autorizzazioni dell'articolo alla revisione" 930 923 931 #: admin/options.php:23 5924 #: admin/options.php:236 932 925 msgid "Enable legacy email notifications" 933 926 msgstr "Abilita le notifiche delle email legacy" 934 927 935 #: admin/options.php:23 6928 #: admin/options.php:237 936 929 msgid "Use extended captions for Approve button in Post Editor" 937 930 msgstr "" … … 939 932 "dell'articolo" 940 933 941 #: admin/options.php:23 7934 #: admin/options.php:238 942 935 msgid "Create Revision button in editor opens new tab" 943 936 msgstr "Il pulsante \"Crea revisione\" nell'editor apre una nuova scheda" 944 937 945 #: admin/options.php:23 8938 #: admin/options.php:239 946 939 msgid "Disable Rank Math SEO panel for Revision edit" 947 940 msgstr "Disabilitare il pannello di Rank Math SEO per modificare la revisione" 948 941 949 #: admin/options.php:24 3942 #: admin/options.php:244 950 943 #, php-format 951 944 msgid "Email designated Publishers when a %s is submitted" 952 945 msgstr "Invia una email agli editori designati quando una %s è stata inviata" 953 946 954 #: admin/options.php:24 4947 #: admin/options.php:245 955 948 #, php-format 956 949 msgid "Email designated Publishers when a %s is published" … … 958 951 "Invia una email agli editori designati quando una %s è stata pubblicata" 959 952 960 #: admin/options.php:24 5953 #: admin/options.php:246 961 954 #, php-format 962 955 msgid "Email designated Publishers when a %s is approved" … … 964 957 "Invia una email agli editori prestabiliti quando una %s è stata approvata" 965 958 966 #: admin/options.php:24 7959 #: admin/options.php:248 967 960 #, php-format 968 961 msgid "Email Editors and Administrators when a %s is submitted" … … 970 963 "Invia una email agli editor e amministratori quando una %s è stata inviata" 971 964 972 #: admin/options.php:24 8965 #: admin/options.php:249 973 966 #, php-format 974 967 msgid "Email Editors and Administrators when a %s is published" … … 976 969 "Invia una email agli editor e amministratori quando una %s è stata pubblicata" 977 970 978 #: admin/options.php:2 49971 #: admin/options.php:250 979 972 #, php-format 980 973 msgid "Email Editors and Administrators when a %s is approved" … … 982 975 "Invia una email agli editor e amministratori quando una %s è stata approvata" 983 976 984 #: admin/options.php:32 8977 #: admin/options.php:329 985 978 msgid "PublishPress Revisions Site Settings" 986 979 msgstr "Impostazioni del sito per PublishPress Revisions" 987 980 988 #: admin/options.php:35 8981 #: admin/options.php:359 989 982 msgid "" 990 983 "These are the default settings for options which can be adjusted per-site." … … 993 986 "modificate per ogni sito." 994 987 995 #: admin/options.php:39 6988 #: admin/options.php:397 996 989 #, php-format 997 990 msgid "" … … 1002 995 "PublishPress Revisions su TUTTA LA RETE. %s" 1003 996 1004 #: admin/options.php: 399997 #: admin/options.php:400 1005 998 #, php-format 1006 999 msgid "You can also specify %1$sdefaults for site-specific settings%2$s." … … 1009 1002 "sito%2$s." 1010 1003 1011 #: admin/options.php:40 21004 #: admin/options.php:403 1012 1005 msgid "" 1013 1006 "Here you can change the default value for settings which are controlled " … … 1017 1010 "controllate separatamente su ogni sito." 1018 1011 1019 #: admin/options.php:41 2 admin/options.php:4141012 #: admin/options.php:413 admin/options.php:415 1020 1013 #, php-format 1021 1014 msgid "Note that %1$s network-wide settings%2$s may also be available." … … 1024 1017 "rete%2$s." 1025 1018 1026 #: admin/options.php: 4991019 #: admin/options.php:500 1027 1020 msgid "License" 1028 1021 msgstr "Licenza" 1029 1022 1030 #: admin/options.php:542 1031 msgid "" 1032 "Past Revisions are earlier versions of a post. They are listed in the " 1033 "Revision Archive." 1034 msgstr "" 1035 "Le revisioni passate sono versioni precedenti di un articolo. Queste sono " 1036 "elencate nell'archivio di revisione." 1037 1038 #: admin/options.php:597 1023 #: admin/options.php:543 1024 msgid "Past Revisions are earlier versions of a post." 1025 msgstr "Le revisioni passate sono versioni precedenti di un articolo." 1026 1027 #: admin/options.php:598 1039 1028 msgid "This post type does not support Past Revisions." 1040 1029 msgstr "Questo tipo di contenuto non è compatibile con \"Revisioni passate\"." 1041 1030 1042 #: admin/options.php:639 1043 msgid "" 1044 "New Revisions are changes which are not yet published. They are listed in " 1045 "the Revision Queue." 1046 msgstr "" 1047 "Le nuove revisioni sono modifiche non ancora pubblicate. Queste vengono " 1048 "elencate nella coda di revisione." 1049 1050 #: admin/options.php:728 1031 #: admin/options.php:640 1032 msgid "New Revisions are changes which are not yet published." 1033 msgstr "Le nuove revisioni sono modifiche non ancora pubblicate." 1034 1035 #: admin/options.php:729 1051 1036 msgid "" 1052 1037 "Note: Third party code may cause some post types to be incompatible with " … … 1056 1041 "di articoli con PublishPress Revisions." 1057 1042 1058 #: admin/options.php:73 81043 #: admin/options.php:739 1059 1044 #, php-format 1060 1045 msgid "" … … 1066 1051 "Pro%s." 1067 1052 1068 #: admin/options.php:7 591053 #: admin/options.php:760 1069 1054 msgid "Ready to enhance your revision workflow?" 1070 1055 msgstr "Sei pronto a migliorare il tuo flusso di lavoro di revisione?" 1071 1056 1072 #: admin/options.php:76 21057 #: admin/options.php:763 1073 1058 msgid "" 1074 1059 "Get PublishPress Statuses Pro and optimize your revision process with custom " … … 1078 1063 "con gli stati di revisione personalizzati." 1079 1064 1080 #: admin/options.php:76 81065 #: admin/options.php:769 1081 1066 msgid "Define your own statuses before or after Revision Submitted" 1082 1067 msgstr "Definisci i tuoi stati prima o dopo l'invio della revisione" 1083 1068 1084 #: admin/options.php:77 11069 #: admin/options.php:772 1085 1070 msgid "New predefined statuses: Deferred, Needs Work, Rejected" 1086 1071 msgstr "" 1087 1072 "Nuovi stati predefiniti: \"Rimandata\", \"Necessita modifiche\", \"Respinta\"" 1088 1073 1089 #: admin/options.php:77 41074 #: admin/options.php:775 1090 1075 msgid "Statuses can be specific to a post type" 1091 1076 msgstr "Gli stati possono essere specifici per un tipo di contenuto" 1092 1077 1093 #: admin/options.php:77 71078 #: admin/options.php:778 1094 1079 msgid "Control access to statuses per-role" 1095 1080 msgstr "Controlla l'accesso agli stati per ogni ruolo" 1096 1081 1097 #: admin/options.php:78 01082 #: admin/options.php:781 1098 1083 msgid "Status workflow can be nested with sub-statuses" 1099 1084 msgstr "" 1100 1085 "Il flusso di lavoro dello stato può essere nidificato con dei sottostati" 1101 1086 1102 #: admin/options.php:7 891087 #: admin/options.php:790 1103 1088 msgid "Get PublishPress Statuses Pro" 1104 1089 msgstr "Ottieni PublishPress Statuses Pro" 1105 1090 1106 #: admin/options.php:79 4 admin/options.php:812 admin/options.php:17611107 #: admin/options.php:17 79 admin/options.php:2310 admin/options.php:23241108 #: admin/options.php:233 4 admin/options.php:23441091 #: admin/options.php:795 admin/options.php:813 admin/options.php:1762 1092 #: admin/options.php:1780 admin/options.php:2314 admin/options.php:2328 1093 #: admin/options.php:2338 admin/options.php:2348 1109 1094 msgid "Learn More" 1110 1095 msgstr "Approfondisci" 1111 1096 1112 #: admin/options.php:80 71097 #: admin/options.php:808 1113 1098 msgid "Pro Plugin" 1114 1099 msgstr "Plugin Pro" 1115 1100 1116 #: admin/options.php:80 81101 #: admin/options.php:809 1117 1102 msgid "Install Statuses Pro to unlock custom revision statuses." 1118 1103 msgstr "" 1119 1104 "Installa Statuses Pro per sbloccare gli stati di revisione personalizzati." 1120 1105 1121 #: admin/options.php:8 091106 #: admin/options.php:810 1122 1107 msgid "Configure for any post type and role to match your editing workflow." 1123 1108 msgstr "" … … 1125 1110 "lavoro di modifica." 1126 1111 1127 #: admin/options.php:81 61112 #: admin/options.php:817 1128 1113 msgid "Get Statuses Pro" 1129 1114 msgstr "Ottieni Statuses Pro" 1130 1115 1131 #: admin/options.php:89 0 admin/options.php:1056 admin/options.php:12911132 #: admin/options.php:131 7 admin/options.php:1343 admin/options.php:13711133 #: admin/options.php:18 791116 #: admin/options.php:891 admin/options.php:1057 admin/options.php:1292 1117 #: admin/options.php:1318 admin/options.php:1344 admin/options.php:1372 1118 #: admin/options.php:1880 1134 1119 #, php-format 1135 1120 msgid "%s capability" 1136 1121 msgstr "Capacità %s" 1137 1122 1138 #: admin/options.php:89 5 admin/options.php:1061 admin/options.php:12961139 #: admin/options.php:132 2 admin/options.php:1348 admin/options.php:13761140 #: admin/options.php:188 41123 #: admin/options.php:896 admin/options.php:1062 admin/options.php:1297 1124 #: admin/options.php:1323 admin/options.php:1349 admin/options.php:1377 1125 #: admin/options.php:1885 1141 1126 msgid "Assign capability to roles" 1142 1127 msgstr "Assegna la capacità ai ruoli" 1143 1128 1144 #: admin/options.php:90 21129 #: admin/options.php:903 1145 1130 #, php-format 1146 1131 msgid "Prevent non-Administrators from restoring a revision without the %s." … … 1148 1133 "Impedisci ai non amministratori di ripristinare una revisione senza la %s." 1149 1134 1150 #: admin/options.php:90 81135 #: admin/options.php:909 1151 1136 msgid "" 1152 1137 "Prevent non-Administrators from restoring a revision without the " … … 1156 1141 "capacità restore_revisions" 1157 1142 1158 #: admin/options.php:92 11143 #: admin/options.php:922 1159 1144 msgid "Modification Date" 1160 1145 msgstr "Data di modifica" 1161 1146 1162 #: admin/options.php:9 491147 #: admin/options.php:950 1163 1148 msgid "Revision Creation" 1164 1149 msgstr "Creazione di revisioni" 1165 1150 1166 #: admin/options.php:95 01151 #: admin/options.php:951 1167 1152 msgid "Submission" 1168 1153 msgstr "Invio" 1169 1154 1170 #: admin/options.php:95 11155 #: admin/options.php:952 1171 1156 msgid "Scheduling" 1172 1157 msgstr "Programmazione" 1173 1158 1174 #: admin/options.php:95 21159 #: admin/options.php:953 1175 1160 msgid "Publication" 1176 1161 msgstr "Pubblicazione" 1177 1162 1178 #: admin/options.php:100 61163 #: admin/options.php:1007 1179 1164 msgid "Create Revision capabilities" 1180 1165 msgstr "Creare le capacità di revisione" 1181 1166 1182 #: admin/options.php:101 1 admin/options.php:1036 admin/options.php:11781167 #: admin/options.php:1012 admin/options.php:1037 admin/options.php:1179 1183 1168 msgid "Assign capabilities to roles" 1184 1169 msgstr "Assegna le capacità ai ruoli" 1185 1170 1186 #: admin/options.php:101 8 admin/options.php:11851171 #: admin/options.php:1019 admin/options.php:1186 1187 1172 #, php-format 1188 1173 msgid "If the user can't edit the published post, require %s." … … 1190 1175 "Se l'utente non può modificare l'articolo pubblicato, è obbligatoria la %s." 1191 1176 1192 #: admin/options.php:102 41177 #: admin/options.php:1025 1193 1178 msgid "" 1194 1179 "If the user can't edit the published post, require Create Revision " … … 1198 1183 "capacità per creare le revisioni (copy_posts, copy_others_pages, ecc.)" 1199 1184 1200 #: admin/options.php:103 21185 #: admin/options.php:1033 1201 1186 #, php-format 1202 1187 msgid "To expand the Pages list, assign %s." 1203 1188 msgstr "Per espandere l'elenco delle pagine, assegna %s." 1204 1189 1205 #: admin/options.php:103 51190 #: admin/options.php:1036 1206 1191 msgid "Listing capabilities" 1207 1192 msgstr "Elenco delle capacità" 1208 1193 1209 #: admin/options.php:104 21194 #: admin/options.php:1043 1210 1195 msgid "" 1211 1196 "To expand the Pages list, assign Listing capabilities (list_others_pages, " … … 1215 1200 "(list_others_pages, list_published_posts, ecc.)" 1216 1201 1217 #: admin/options.php:104 81202 #: admin/options.php:1049 1218 1203 msgid "This plugin introduces a new user role, \"Revisor.\"" 1219 1204 msgstr "Questo plugin introduce il nuovo ruolo utente di \"Revisore\"." 1220 1205 1221 #: admin/options.php:106 81206 #: admin/options.php:1069 1222 1207 #, php-format 1223 1208 msgid "" … … 1228 1213 "l'eliminazione di tutti i tag html personalizzati." 1229 1214 1230 #: admin/options.php:107 41215 #: admin/options.php:1075 1231 1216 msgid "" 1232 1217 "Revision by a user who does not have the unfiltered_html capability will " … … 1236 1221 "unfiltered_html comporterà l'eliminazione di tutti i tag html personalizzati." 1237 1222 1238 #: admin/options.php:109 11223 #: admin/options.php:1092 1239 1224 msgid "Broadest compat including Elementor, Divi, Beaver Builder" 1240 1225 msgstr "La più ampia compatibilita includendo Elementor, Divi, Beaver Builder" 1241 1226 1242 #: admin/options.php:109 21227 #: admin/options.php:1093 1243 1228 msgid "Standard storage schema for broadest 3rd party compat" 1244 1229 msgstr "" … … 1246 1231 "parti" 1247 1232 1248 #: admin/options.php:109 71233 #: admin/options.php:1098 1249 1234 msgid "Enhanced Revision access control with PublishPress plugins" 1250 1235 msgstr "" 1251 1236 "Controllo di accesso alle revisioni migliorato con i plugin PublishPress" 1252 1237 1253 #: admin/options.php:110 81238 #: admin/options.php:1109 1254 1239 msgid "" 1255 1240 "In enhanced mode, a Revision's status is stored by standard WordPress " … … 1259 1244 "standard di WordPress. Alcuni plugin non sono compatibili." 1260 1245 1261 #: admin/options.php:111 51246 #: admin/options.php:1116 1262 1247 msgid "" 1263 1248 "Prevent Revision creation if the post already has another Revision in " … … 1267 1252 "in corso." 1268 1253 1269 #: admin/options.php:11 191254 #: admin/options.php:1120 1270 1255 msgid "" 1271 1256 "Work around cache plugin conflicts by requerying for revisions before " … … 1275 1260 "prima di eliminare il link “Nuova revisione”." 1276 1261 1277 #: admin/options.php:113 81262 #: admin/options.php:1139 1278 1263 #, php-format 1279 1264 msgid "" … … 1284 1269 "\"Modifica\"." 1285 1270 1286 #: admin/options.php:114 11271 #: admin/options.php:1142 1287 1272 msgid "" 1288 1273 "Default labels are \"Not Submitted for Approval\", \"Submitted for " … … 1292 1277 "per l'approvazione\", \"Revisione programmata\"." 1293 1278 1294 #: admin/options.php:11 591279 #: admin/options.php:1160 1295 1280 #, php-format 1296 1281 msgid "" 1297 1282 "Enable published content to be copied, edited, submitted for approval and " 1298 "managed in %sRevision Queue%s."1299 msgstr "" 1300 "Abilita il contenuto pubblicato ad essere copiato, modificato, sottoposto ad"1301 " approvazione e gestito nella %sCoda revisione%s."1302 1303 #: admin/options.php:117 31283 "managed on the %sNew Revisions%s screen." 1284 msgstr "" 1285 "Abilita il contenuto pubblicato per essere copiato, modificato, inviato per " 1286 "l'approvazione e gestito nella schermata delle %sNuove revisioni%s." 1287 1288 #: admin/options.php:1174 1304 1289 msgid "Submit Revision capabilities" 1305 1290 msgstr "Capacità di inviare revisioni" 1306 1291 1307 #: admin/options.php:119 11292 #: admin/options.php:1192 1308 1293 msgid "" 1309 1294 "If the user can't edit the published post, require Submit Revision " … … 1313 1298 "capacità per inviare le revisioni (revise_posts, revise_others_pages, ecc.)" 1314 1299 1315 #: admin/options.php:119 6 admin/options.php:12281300 #: admin/options.php:1197 admin/options.php:1229 1316 1301 #, php-format 1317 1302 msgid "When a %s is published, update post publish date to current time." … … 1320 1305 "dell'articolo all'ora corrente." 1321 1306 1322 #: admin/options.php:1 199 admin/options.php:12311307 #: admin/options.php:1200 admin/options.php:1232 1323 1308 #, php-format 1324 1309 msgid "When a %s is published, update post modified date to current time." … … 1327 1312 "all'ora corrente." 1328 1313 1329 #: admin/options.php:120 21314 #: admin/options.php:1203 1330 1315 msgid "" 1331 1316 "When a user who has publishing capabilities creates a Revision, set it to " … … 1335 1320 "impostarla allo stato \"Inviata\"." 1336 1321 1337 #: admin/options.php:120 51322 #: admin/options.php:1206 1338 1323 msgid "" 1339 1324 "This allows immediate approval within the Compare screen. If disabled, a " … … 1343 1328 "confronto. Se disattivato, al suo posto viene fornito un link di anteprima." 1344 1329 1345 #: admin/options.php:122 21330 #: admin/options.php:1223 1346 1331 msgid "" 1347 1332 "If a currently published post or page is edited and a future date set, the " … … 1352 1337 "data selezionata." 1353 1338 1354 #: admin/options.php:123 61339 #: admin/options.php:1237 1355 1340 msgid "" 1356 1341 "Publish scheduled revisions using the WP-Cron mechanism. On some sites, " … … 1360 1345 "alcuni siti, la pubblicazione fallirà se questa impostazione è disattivata." 1361 1346 1362 #: admin/options.php:124 01347 #: admin/options.php:1241 1363 1348 msgid "" 1364 1349 "Publish scheduled revisions asynchronously, via a secondary http request " … … 1370 1355 "i ritardi, ma alcuni server potrebbero non supportarla." 1371 1356 1372 #: admin/options.php:124 51357 #: admin/options.php:1246 1373 1358 msgid "" 1374 1359 "The WP-Cron trigger is disabled, but scheduled tasks are still excecuted " … … 1378 1363 "comunque eseguite utilizzando un trigger personalizzato." 1379 1364 1380 #: admin/options.php:12 591365 #: admin/options.php:1260 1381 1366 msgid "" 1382 1367 "Caption the button as either \"Approve and Publish\" or \"Approve and " … … 1384 1369 msgstr "Denomina il pulsante “Approva e pubblica” o “Approva e programma”." 1385 1370 1386 #: admin/options.php:126 81371 #: admin/options.php:1269 1387 1372 msgid "This may improve compatibility with some plugins." 1388 1373 msgstr "Ciò potrebbe migliorare la compatibilità con alcuni plugin." 1389 1374 1390 #: admin/options.php:1303 1391 #, php-format 1392 msgid "Control Revision Queue access with the %s." 1393 msgstr "Controlla l'accesso alla coda di revisione con la %s." 1394 1395 #: admin/options.php:1309 1396 msgid "" 1397 "Control Revision Queue access with the manage_revision_queue capability." 1398 msgstr "" 1399 "Controlla l'accesso alla coda di revisione con la capacità " 1400 "manage_revision_queue." 1401 1402 #: admin/options.php:1329 1375 #: admin/options.php:1304 1376 #, php-format 1377 msgid "Control New Revisions access with the %s." 1378 msgstr "Controlla l'accesso alle nuove revisioni con la %s." 1379 1380 #: admin/options.php:1310 1381 msgid "Control New Revisions access with the manage_revision_queue capability." 1382 msgstr "" 1383 "Controlla l'accesso alle nuove revisioni con la capacità " 1384 "`manage_revision_queue`." 1385 1386 #: admin/options.php:1330 1403 1387 #, php-format 1404 1388 msgid "Users will need the %s to edit others' Unsubmitted Revisions." … … 1407 1391 "altri." 1408 1392 1409 #: admin/options.php:133 51393 #: admin/options.php:1336 1410 1394 msgid "" 1411 1395 "Users will need the manage_unsubmitted_revisions capability to edit others' " … … 1415 1399 "modificare le revisioni non inviate degli altri." 1416 1400 1417 #: admin/options.php:135 5 admin/options.php:13831401 #: admin/options.php:1356 admin/options.php:1384 1418 1402 #, php-format 1419 1403 msgid "If the user can't edit the published post, require the %s." … … 1422 1406 "%s." 1423 1407 1424 #: admin/options.php:136 11408 #: admin/options.php:1362 1425 1409 msgid "" 1426 1410 "If the user can't edit the published post, require the edit_others_revisions " … … 1430 1414 "capacità edit_others_revisions." 1431 1415 1432 #: admin/options.php:13 891416 #: admin/options.php:1390 1433 1417 msgid "" 1434 1418 "If the user can't edit the published post, require the list_others_revisions " … … 1438 1422 "capacità list_others_revisions." 1439 1423 1440 #: admin/options.php:139 41424 #: admin/options.php:1395 1441 1425 msgid "" 1442 1426 "Bypass the above restrictions for others' revisions to logged in user's own " … … 1446 1430 "dell'utente connesso." 1447 1431 1448 #: admin/options.php:140 51432 #: admin/options.php:1406 1449 1433 msgid "Regenerate \"post has revision\" flags" 1450 1434 msgstr "Rigenera i flag «l'articolo ha una revisione»" 1451 1435 1452 #: admin/options.php:140 81436 #: admin/options.php:1409 1453 1437 msgid "" 1454 1438 "Apply this maintenance operation if Has Revision labels on Posts / Pages " 1455 "screens mismatch the Revision Queuelisting."1439 "screens mismatch the New Revisions listing." 1456 1440 msgstr "" 1457 1441 "Applica questa operazione di manutenzione se le etichette \"Ha una " 1458 "revisione\" nell e schermate degli articoli/pagine non corrispondono con la"1459 " lista della coda di revisione."1460 1461 #: admin/options.php:143 31442 "revisione\" nella schermate articoli/pagine non coincidono con l'elenco " 1443 "delle nuove revisioni." 1444 1445 #: admin/options.php:1434 1462 1446 #, php-format 1463 1447 msgid "For enhanced notifications, install %sPublishPress Planner%s." 1464 1448 msgstr "Per notifiche avanzate, installa %sPublishPress Planner%s." 1465 1449 1466 #: admin/options.php:144 61450 #: admin/options.php:1447 1467 1451 #, php-format 1468 1452 msgid "For enhanced notifications, update %sPublishPress Planner%s." 1469 1453 msgstr "Per notifiche avanzate, aggiorna %sPublishPress Planner%s." 1470 1454 1471 #: admin/options.php:146 81455 #: admin/options.php:1469 1472 1456 #, php-format 1473 1457 msgid "" … … 1478 1462 "personalizzabile delle %1$snotifiche di PublishPress Planner%2$s." 1479 1463 1480 #: admin/options.php:14 691464 #: admin/options.php:1470 1481 1465 #, php-format 1482 1466 msgid "" … … 1487 1471 "utilizzando il sistema di notifiche %1$sPublishPress Planner%2$s." 1488 1472 1489 #: admin/options.php:148 11473 #: admin/options.php:1482 1490 1474 msgid "" 1491 1475 "Users matching Planner > Notifications configuration get revision " … … 1496 1480 "pubblicato." 1497 1481 1498 #: admin/options.php:152 3 admin/options.php:15451482 #: admin/options.php:1524 admin/options.php:1546 1499 1483 msgid "Never" 1500 1484 msgstr "Mai" 1501 1485 1502 #: admin/options.php:152 3 admin/options.php:15451486 #: admin/options.php:1524 admin/options.php:1546 1503 1487 msgid "By default" 1504 1488 msgstr "Per impostazione predefinita" 1505 1489 1506 #: admin/options.php:152 3 admin/options.php:15451490 #: admin/options.php:1524 admin/options.php:1546 1507 1491 msgid "Always" 1508 1492 msgstr "Sempre" 1509 1493 1510 #: admin/options.php:153 4 admin/options.php:15811494 #: admin/options.php:1535 admin/options.php:1582 1511 1495 msgid "select recipients" 1512 1496 msgstr "seleziona recipienti" 1513 1497 1514 #: admin/options.php:159 51498 #: admin/options.php:1596 1515 1499 msgid "" 1516 1500 "To avoid notification failures, buffer emails for delayed sending once " … … 1521 1505 "ora o giorno" 1522 1506 1523 #: admin/options.php:161 61507 #: admin/options.php:1617 1524 1508 msgid "Notification Buffer" 1525 1509 msgstr "Buffer delle notifiche" 1526 1510 1527 #: admin/options.php:164 41511 #: admin/options.php:1645 1528 1512 msgid "Notification Log" 1529 1513 msgstr "Registro delle notifiche" 1530 1514 1531 #: admin/options.php:167 31515 #: admin/options.php:1674 1532 1516 msgid "Purge Notification Buffer" 1533 1517 msgstr "Elimina buffer di notifica" 1534 1518 1535 #: admin/options.php:16 791519 #: admin/options.php:1680 1536 1520 msgid "Truncate Notification Log" 1537 1521 msgstr "Troncare il registro delle notifiche" 1538 1522 1539 #: admin/options.php:168 51523 #: admin/options.php:1686 1540 1524 #, php-format 1541 1525 msgid "Sent in last minute: %d / %d" 1542 1526 msgstr "Inviato negli ultimi minuti: %d/%d" 1543 1527 1544 #: admin/options.php:168 61528 #: admin/options.php:1687 1545 1529 #, php-format 1546 1530 msgid "Sent in last hour: %d / %d" 1547 1531 msgstr "Inviato nell'ultima ora: %d/%d" 1548 1532 1549 #: admin/options.php:168 71533 #: admin/options.php:1688 1550 1534 #, php-format 1551 1535 msgid "Sent in last day: %d / %d" 1552 1536 msgstr "Inviato lo scorso giorno: %d/%d" 1553 1537 1554 #: admin/options.php:169 41538 #: admin/options.php:1695 1555 1539 #, php-format 1556 1540 msgid "Seconds until next buffer processing time: %d" 1557 1541 msgstr "Secondi al successivo tempo di elaborazione del buffer: %d" 1558 1542 1559 #: admin/options.php:170 51543 #: admin/options.php:1706 1560 1544 msgid "Show Notification Log / Buffer" 1561 1545 msgstr "Mostra registro/buffer delle notifiche" 1562 1546 1563 #: admin/options.php:170 71547 #: admin/options.php:1708 1564 1548 msgid "Show with message content" 1565 1549 msgstr "Mostra con il contenuto del messaggio" 1566 1550 1567 #: admin/options.php:17 291551 #: admin/options.php:1730 1568 1552 msgid "Ready to enhance your revision notifications?" 1569 1553 msgstr "Sei pronto a migliorare le tue notifiche di revisione?" 1570 1554 1571 #: admin/options.php:173 21555 #: admin/options.php:1733 1572 1556 msgid "" 1573 1557 "Upgrade to Revisions Pro for integration with our PublishPress Planner " … … 1577 1561 "notifiche PublishPress Planner." 1578 1562 1579 #: admin/options.php:173 81563 #: admin/options.php:1739 1580 1564 msgid "Customize notification message and subject" 1581 1565 msgstr "Personalizza il messaggio e l'oggetto delle notifiche" 1582 1566 1583 #: admin/options.php:174 11567 #: admin/options.php:1742 1584 1568 msgid "Notify for a specific post type, category or term" 1585 1569 msgstr "Notifica per un tipo specifico di contenuto, categoria o termine" 1586 1570 1587 #: admin/options.php:174 41571 #: admin/options.php:1745 1588 1572 msgid "Target specific roles, users, or user groups" 1589 1573 msgstr "Definire ruoli, utenti o gruppi di utenti specifici" 1590 1574 1591 #: admin/options.php:174 71575 #: admin/options.php:1748 1592 1576 msgid "With PublishPress Planner Pro, send notifications to a Slack channel" 1593 1577 msgstr "" 1594 1578 "Con PublishPress Planner Pro puoi inviare notifiche ad un canale di Slack" 1595 1579 1596 #: admin/options.php:177 4 admin/options.php:23041580 #: admin/options.php:1775 admin/options.php:2308 1597 1581 msgid "Pro Feature" 1598 1582 msgstr "Caratteristica Pro" 1599 1583 1600 #: admin/options.php:177 51584 #: admin/options.php:1776 1601 1585 msgid "Upgrade to Revisions Pro to unlock Planner Notifications integration." 1602 1586 msgstr "" … … 1604 1588 "Planner." 1605 1589 1606 #: admin/options.php:177 61590 #: admin/options.php:1777 1607 1591 msgid "" 1608 1592 "Customize notification content and recipients for each notification type." … … 1611 1595 "notifica." 1612 1596 1613 #: admin/options.php:180 01597 #: admin/options.php:1801 1614 1598 msgid "Some themes may block revision preview." 1615 1599 msgstr "Alcuni temi possono bloggare l'anteprima della revisione." 1616 1600 1617 #: admin/options.php:181 71601 #: admin/options.php:1818 1618 1602 msgid "Published Post Slug" 1619 1603 msgstr "Slug dell'articolo pubblicato" 1620 1604 1621 #: admin/options.php:181 81605 #: admin/options.php:1819 1622 1606 msgid "Revision Slug" 1623 1607 msgstr "Slug della revisione" 1624 1608 1625 #: admin/options.php:18 191609 #: admin/options.php:1820 1626 1610 msgid "Revision ID only" 1627 1611 msgstr "Solo ID revisione" 1628 1612 1629 #: admin/options.php:183 41613 #: admin/options.php:1835 1630 1614 msgid "" 1631 1615 "Some themes or plugins may require Revision Slug or Revision ID link type " … … 1636 1620 "visualizzazione dei campi." 1637 1621 1638 #: admin/options.php:184 31622 #: admin/options.php:1844 1639 1623 #, php-format 1640 1624 msgid "The revision preview argument is configured by constant definition: %s" … … 1643 1627 "costante: %s" 1644 1628 1645 #: admin/options.php:185 01629 #: admin/options.php:1851 1646 1630 msgid "" 1647 1631 "Adjust preview links to use \"rv_preview\" argument instead of \"preview\". " … … 1652 1636 "tuo tema." 1653 1637 1654 #: admin/options.php:185 41638 #: admin/options.php:1855 1655 1639 msgid "" 1656 1640 "Some themes may require this setting for correct revision preview display." … … 1659 1643 "visualizzazione dell'anteprima di revisione." 1660 1644 1661 #: admin/options.php:189 11645 #: admin/options.php:1892 1662 1646 #, php-format 1663 1647 msgid "" … … 1667 1651 "articoli non publicati di altri." 1668 1652 1669 #: admin/options.php:189 71653 #: admin/options.php:1898 1670 1654 msgid "" 1671 1655 "If the user can't publish, require the edit_others_drafts capability to edit " … … 1675 1659 "edit_others_drafts per modificare gli articoli non publicati di altri." 1676 1660 1677 #: admin/options.php:190 31661 #: admin/options.php:1904 1678 1662 msgid "" 1679 1663 "If post-specific permissions restrict or expand access to a post, apply " … … 1683 1667 "all'articolo, applica quelle autorizzazioni anche alle sue revisioni." 1684 1668 1685 #: admin/options.php:191 21669 #: admin/options.php:1916 1686 1670 msgid "Rank Math SEO may prevent Revision update on some sites." 1687 1671 msgstr "" 1688 1672 "Rank Math SEO può impedire l'aggiornamento della revisione in alcuni siti." 1689 1673 1690 #: admin/options.php:19 19includes/CoreAdmin.php:2051674 #: admin/options.php:1923 includes/CoreAdmin.php:205 1691 1675 msgid "WPML Translation Management" 1692 1676 msgstr "Gestione delle traduzioni con WPML" 1693 1677 1694 #: admin/options.php:192 41678 #: admin/options.php:1928 1695 1679 msgid "Sync \"Needs Update\" flags" 1696 1680 msgstr "Sincronizzare le segnalazioni di \"Deve essere aggiornato\"" 1697 1681 1698 #: admin/options.php:19 281682 #: admin/options.php:1932 1699 1683 msgid "" 1700 1684 "Set \"Needs Update\" for any post with translations which was updated " … … 1705 1689 "recentemente delle sue traduzioni." 1706 1690 1707 #: admin/options.php:19 381691 #: admin/options.php:1942 1708 1692 msgid "Show descriptive captions for PublishPress Revisions settings." 1709 1693 msgstr "" … … 1711 1695 "Revisions." 1712 1696 1713 #: admin/options.php:194 11714 msgid "" 1715 "Plugin settings, Revision Queuecontents and related data will be deleted, "1697 #: admin/options.php:1945 1698 msgid "" 1699 "Plugin settings, New Revisions contents and related data will be deleted, " 1716 1700 "but only after the last copy of Revisions / Revisions Pro is deleted." 1717 1701 msgstr "" 1718 "Le impostazioni del plugin, i contenuti dell a coda di revisione e i dati "1719 " correlati verranno eliminati, ma solo dopo che l'ultima copia di Revisions/"1720 "Revisions Pro s aràstata eliminata."1721 1722 #: admin/options.php:196 21702 "Le impostazioni del plugin, i contenuti delle nuove revisioni e i relativi " 1703 "dati saranno eliminati soltanto dopo che l'ultima copia di Revisions/" 1704 "Revisions Pro sia stata eliminata." 1705 1706 #: admin/options.php:1966 1723 1707 msgid "Unlock Pro Integrations" 1724 1708 msgstr "Sblocca l'integrazione Pro" 1725 1709 1726 #: admin/options.php:196 31710 #: admin/options.php:1967 1727 1711 msgid "" 1728 1712 "Upgrade to the Pro version for optimal compatibility and prompt, " … … 1732 1716 "professionale e immediato." 1733 1717 1734 #: admin/options.php:198 1 admin/options.php:22291718 #: admin/options.php:1985 admin/options.php:2233 1735 1719 msgid "Admin" 1736 1720 msgstr "Amministratore" 1737 1721 1738 #: admin/options.php:198 4 admin/options.php:22271722 #: admin/options.php:1988 admin/options.php:2231 1739 1723 msgid "Builder" 1740 1724 msgstr "Builder" 1741 1725 1742 #: admin/options.php:19 87 admin/options.php:22311726 #: admin/options.php:1991 admin/options.php:2235 1743 1727 msgid "Cache" 1744 1728 msgstr "Cache" 1745 1729 1746 #: admin/options.php:199 01730 #: admin/options.php:1994 1747 1731 msgid "E-Commerce" 1748 1732 msgstr "E-Commerce" 1749 1733 1750 #: admin/options.php:199 3 admin/options.php:22371734 #: admin/options.php:1997 admin/options.php:2241 1751 1735 msgid "Fields" 1752 1736 msgstr "Campi" 1753 1737 1754 #: admin/options.php: 19971738 #: admin/options.php:2001 1755 1739 msgid "Multilingual" 1756 1740 msgstr "Multilingua" 1757 1741 1758 #: admin/options.php:200 1 admin/options.php:22331742 #: admin/options.php:2005 admin/options.php:2237 1759 1743 msgid "SEO" 1760 1744 msgstr "SEO" 1761 1745 1762 #: admin/options.php:200 4 admin/options.php:22431746 #: admin/options.php:2008 admin/options.php:2247 1763 1747 msgid "Workflow" 1764 1748 msgstr "Flusso di lavoro" 1765 1749 1766 #: admin/options.php:20 861750 #: admin/options.php:2090 1767 1751 msgid "" 1768 1752 "Specify which PublishPress Revisions Settings to control network-wide. " … … 1773 1757 "ogni sito." 1774 1758 1775 #: admin/options.php:2 0961759 #: admin/options.php:2100 1776 1760 #, php-format 1777 1761 msgctxt "opentag option_tabname closetag (explanatory note)" … … 1779 1763 msgstr "%1$s%2$s%3$s (%4$s)" 1780 1764 1781 #: admin/options.php:213 21765 #: admin/options.php:2136 1782 1766 #, php-format 1783 1767 msgid "network-wide control of \"%s\"" 1784 1768 msgstr "controllo ampiezza di rete di \"%s\"" 1785 1769 1786 #: admin/options.php:21 591770 #: admin/options.php:2163 1787 1771 msgid "Save Changes" 1788 1772 msgstr "Salva modifiche" 1789 1773 1790 #: admin/options.php:216 01774 #: admin/options.php:2164 1791 1775 msgid "Revert to Defaults" 1792 1776 msgstr "Ritorna ai valori predefiniti" 1793 1777 1794 #: admin/options.php:216 21778 #: admin/options.php:2166 1795 1779 msgid "" 1796 1780 "All settings in this form (including those on unselected tabs) will be reset " … … 1800 1784 "selezionate) verranno ripristinate ai valori PREDEFINITI. Sei sicuro?" 1801 1785 1802 #: admin/options.php:223 51786 #: admin/options.php:2239 1803 1787 msgid "Commerce" 1804 1788 msgstr "Commercio" 1805 1789 1806 #: admin/options.php:22 391790 #: admin/options.php:2243 1807 1791 msgid "Multilang" 1808 1792 msgstr "Multilingua" 1809 1793 1810 #: admin/options.php:224 11794 #: admin/options.php:2245 1811 1795 msgid "Community" 1812 1796 msgstr "Community" 1813 1797 1814 #: admin/options.php:22 591798 #: admin/options.php:2263 1815 1799 msgid "Pro" 1816 1800 msgstr "Pro" 1817 1801 1818 #: admin/options.php:226 41802 #: admin/options.php:2268 1819 1803 msgid "Supported" 1820 1804 msgstr "Compatibile" 1821 1805 1822 #: admin/options.php:22 67 admin/options.php:23211806 #: admin/options.php:2271 admin/options.php:2325 1823 1807 msgid "Active Plugin" 1824 1808 msgstr "Plugin attivo" 1825 1809 1826 #: admin/options.php:22 791810 #: admin/options.php:2283 1827 1811 msgid "Supported by PublishPress Revisions" 1828 1812 msgstr "Compatibile con PublishPress Revisions" 1829 1813 1830 #: admin/options.php:228 11814 #: admin/options.php:2285 1831 1815 msgid "Supported by Revisions Pro" 1832 1816 msgstr "Compatibile con Revisions Pro" 1833 1817 1834 #: admin/options.php:229 41818 #: admin/options.php:2298 1835 1819 msgid "Integration Active" 1836 1820 msgstr "Integrazione attiva" 1837 1821 1838 #: admin/options.php:2 2961822 #: admin/options.php:2300 1839 1823 msgid "Upgrade to Pro to enable this integration" 1840 1824 msgstr "Aggiornare a Pro per abilitare questa integrazione" 1841 1825 1842 #: admin/options.php:230 51826 #: admin/options.php:2309 1843 1827 #, php-format 1844 1828 msgid "Unlock %s integration to enhance your revisions solution." … … 1847 1831 "revisioni." 1848 1832 1849 #: admin/options.php:232 11833 #: admin/options.php:2325 1850 1834 msgid "Active Plugin Integration" 1851 1835 msgstr "Integrazione del plugin attiva" 1852 1836 1853 #: admin/options.php:233 11837 #: admin/options.php:2335 1854 1838 msgid "Supported Plugin Integration" 1855 1839 msgstr "Integrazione con plugin compatibili" 1856 1840 1857 #: admin/options.php:234 11841 #: admin/options.php:2345 1858 1842 msgid "Supported Plugin" 1859 1843 msgstr "Plugin compatibili" 1860 1844 1861 #: admin/post-edit-block-ui_rvy.php:170 admin/post-edit_rvy.php:33 41845 #: admin/post-edit-block-ui_rvy.php:170 admin/post-edit_rvy.php:336 1862 1846 msgid "Author" 1863 1847 msgstr "Autore" … … 1966 1950 msgstr "Visualizza la revisione in corso" 1967 1951 1968 #: admin/post-edit_rvy.php:18 61952 #: admin/post-edit_rvy.php:188 1969 1953 msgid "Compare this revision to published copy, or to other revisions" 1970 1954 msgstr "" 1971 1955 "Confronta questa revisione con la copia pubblicata o con altre revisioni" 1972 1956 1973 #: admin/post-edit_rvy.php:22 11957 #: admin/post-edit_rvy.php:223 1974 1958 msgid "View / moderate saved revision" 1975 1959 msgstr "Visualizza/modera revisione salvata" 1976 1960 1977 #: admin/post-edit_rvy.php:22 41961 #: admin/post-edit_rvy.php:226 1978 1962 msgid "View saved revision" 1979 1963 msgstr "Visualizza revisione salvata" … … 2109 2093 #, php-format 2110 2094 msgctxt "PublishedPostName (other filter captions)" 2111 msgid " Revision Queuefor \"%s\"%s"2112 msgstr " Coda di revisioneper \"%s\"%s"2095 msgid "New Revisions for \"%s\"%s" 2096 msgstr "Nuove revisioni per \"%s\"%s" 2113 2097 2114 2098 #: admin/revision-queue_rvy.php:157 2115 2099 #, php-format 2116 msgid " Revision Queue%s"2117 msgstr " Coda revisione%s"2100 msgid "New Revisions %s" 2101 msgstr "Nuove revisioni %s" 2118 2102 2119 2103 #: admin/revision-ui_rvy.php:45 … … 2553 2537 msgstr "%1$s query in %2$s secondi. %3$s MB usati." 2554 2538 2555 #: revision-creation_rvy.php:2 192539 #: revision-creation_rvy.php:221 2556 2540 msgid "Could not insert revision into the database" 2557 2541 msgstr "Impossibile inserire la revisione nel database" … … 2586 2570 2587 2571 #: revision-workflow_rvy.php:187 2588 msgid " Revision Queue: "2589 msgstr " Coda revisione: "2572 msgid "New Revisions: " 2573 msgstr "Nuove revisioni: " 2590 2574 2591 2575 #: revision-workflow_rvy.php:189 … … 2878 2862 msgid "Revision Workflow" 2879 2863 msgstr "Workflow revisione" 2864 2865 #~ msgid "Revision Queue" 2866 #~ msgstr "Coda revisioni" 2867 2868 #~ msgid "Revision Archive" 2869 #~ msgstr "Archivio revisioni" 2870 2871 #~ msgid "Can see Revisions from other users in Revision Queue." 2872 #~ msgstr "Può vedere le revisioni di altri utenti della coda di revisione." 2873 2874 #~ msgid "View the Revision Archive, a list of past Revisions." 2875 #~ msgstr "" 2876 #~ "Visualizza l'archivio delle revisioni, un elenco delle revisioni passate." 2877 2878 #, php-format 2879 #~ msgid "Revision Queue %s" 2880 #~ msgstr "Coda revisione %s" 2881 2882 #~ msgid "Revision Queue: " 2883 #~ msgstr "Coda revisione: " 2880 2884 2881 2885 #~ msgid "Count" -
revisionary/trunk/languages/revisionary.pot
r3394622 r3397524 3 3 msgid "" 4 4 msgstr "" 5 "Project-Id-Version: PublishPress Revisions 3.7.2 0\n"5 "Project-Id-Version: PublishPress Revisions 3.7.21\n" 6 6 "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/project\n" 7 7 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 10 10 "Content-Type: text/plain; charset=UTF-8\n" 11 11 "Content-Transfer-Encoding: 8bit\n" 12 "POT-Creation-Date: 2025-11-1 2T19:30:03+00:00\n"12 "POT-Creation-Date: 2025-11-17T18:33:39+00:00\n" 13 13 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 14 14 "X-Generator: WP-CLI 2.12.0\n" … … 92 92 #: admin/admin-posts_rvy.php:294 93 93 #: admin/admin_rvy.php:365 94 #: admin/admin_rvy.php:43 394 #: admin/admin_rvy.php:435 95 95 #: admin/options.php:159 96 #: admin/options.php:636 97 #: admin/options.php:954 96 #: admin/options.php:638 98 97 msgid "New Revisions" 99 98 msgstr "" 100 99 101 100 #: admin/admin_lib-mu_rvy.php:10 102 #: admin/options.php:32 5101 #: admin/options.php:327 103 102 msgid "PublishPress Revisions Network Settings" 104 103 msgstr "" … … 109 108 110 109 #: admin/admin_lib-mu_rvy.php:21 111 #: admin/options.php:32 7110 #: admin/options.php:329 112 111 msgid "PublishPress Revisions Network Defaults" 113 112 msgstr "" … … 133 132 #: admin/admin_rvy.php:374 134 133 #: admin/admin_rvy.php:375 135 #: admin/admin_rvy.php:43 4134 #: admin/admin_rvy.php:436 136 135 #: admin/options.php:158 137 #: admin/options.php:5 39136 #: admin/options.php:541 138 137 #: admin/revision-archive_rvy.php:81 139 138 #: admin/revisions.php:237 … … 142 141 143 142 #: admin/admin_rvy.php:392 144 #: admin/options.php:33 1143 #: admin/options.php:333 145 144 msgid "PublishPress Revisions Settings" 146 145 msgstr "" 147 146 148 147 #: admin/admin_rvy.php:392 149 #: admin/admin_rvy.php:43 7148 #: admin/admin_rvy.php:439 150 149 #: admin/options.php:153 151 150 msgid "Settings" 152 151 msgstr "" 153 152 154 #: admin/admin_rvy.php: 399155 #: admin/admin_rvy.php:40 0156 #: admin/admin_rvy.php:44 0157 #: admin/options.php:17 57158 #: admin/options.php:17 84159 #: admin/options.php:197 1160 #: admin/options.php:23 18153 #: admin/admin_rvy.php:401 154 #: admin/admin_rvy.php:402 155 #: admin/admin_rvy.php:442 156 #: admin/options.php:1765 157 #: admin/options.php:1792 158 #: admin/options.php:1979 159 #: admin/options.php:2326 161 160 #: includes/CoreAdmin.php:212 162 161 msgid "Upgrade to Pro" 163 162 msgstr "" 164 163 165 #: admin/admin_rvy.php:48 1164 #: admin/admin_rvy.php:483 166 165 msgid "Can edit draft Posts from other users." 167 166 msgstr "" 168 167 169 #: admin/admin_rvy.php:48 2168 #: admin/admin_rvy.php:484 170 169 msgid "Can edit Revisions from other users." 171 170 msgstr "" 172 171 173 #: admin/admin_rvy.php:48 3172 #: admin/admin_rvy.php:485 174 173 msgid "Can see New Revisions from other users." 175 174 msgstr "" 176 175 177 #: admin/admin_rvy.php:48 4176 #: admin/admin_rvy.php:486 178 177 msgid "Can access New Revisions." 179 178 msgstr "" 180 179 181 #: admin/admin_rvy.php:48 5180 #: admin/admin_rvy.php:487 182 181 msgid "Can manage Unsubmitted Revisions." 183 182 msgstr "" 184 183 185 #: admin/admin_rvy.php:48 6184 #: admin/admin_rvy.php:488 186 185 msgid "Preview other user's Revisions (without needing editing access)." 187 186 msgstr "" 188 187 189 #: admin/admin_rvy.php:48 7188 #: admin/admin_rvy.php:489 190 189 msgid "Restore an archived Revision as the current revision." 191 190 msgstr "" 192 191 193 #: admin/admin_rvy.php:4 88192 #: admin/admin_rvy.php:490 194 193 msgid "View Past Revisions." 195 194 msgstr "" 196 195 197 #: admin/admin_rvy.php:5 18196 #: admin/admin_rvy.php:520 198 197 #, php-format 199 198 msgid "If you like %s, please leave us a %s rating. Thank you!" 200 199 msgstr "" 201 200 202 #: admin/admin_rvy.php:5 29201 #: admin/admin_rvy.php:531 203 202 msgid "About PublishPress Revisions" 204 203 msgstr "" 205 204 206 #: admin/admin_rvy.php:5 29205 #: admin/admin_rvy.php:531 207 206 msgid "About" 208 207 msgstr "" 209 208 210 #: admin/admin_rvy.php:53 1209 #: admin/admin_rvy.php:533 211 210 msgid "PublishPress Revisions Documentation" 212 211 msgstr "" 213 212 214 #: admin/admin_rvy.php:53 1213 #: admin/admin_rvy.php:533 215 214 msgid "Documentation" 216 215 msgstr "" 217 216 218 #: admin/admin_rvy.php:53 3217 #: admin/admin_rvy.php:535 219 218 msgid "Contact the PublishPress team" 220 219 msgstr "" 221 220 222 #: admin/admin_rvy.php:53 3221 #: admin/admin_rvy.php:535 223 222 msgid "Contact" 224 223 msgstr "" … … 369 368 370 369 #: admin/class-list-table-archive.php:794 371 #: admin/options.php:19 82370 #: admin/options.php:1990 372 371 msgid "All" 373 372 msgstr "" … … 454 453 455 454 #: admin/class-list-table_rvy.php:860 456 #: admin/history_rvy.php:9 07455 #: admin/history_rvy.php:911 457 456 msgid "No author" 458 457 msgstr "" … … 560 559 561 560 #: admin/history_rvy.php:282 562 #: admin/history_rvy.php: 298561 #: admin/history_rvy.php:302 563 562 #, php-format 564 563 msgid "Compare %s of \"%s\"" 565 564 msgstr "" 566 565 567 #: admin/history_rvy.php:65 1568 #: admin/options.php:92 2566 #: admin/history_rvy.php:655 567 #: admin/options.php:924 569 568 msgid "Post Date" 570 569 msgstr "" 571 570 572 #: admin/history_rvy.php:65 2571 #: admin/history_rvy.php:656 573 572 msgid "Post Parent" 574 573 msgstr "" 575 574 576 #: admin/history_rvy.php:65 3575 #: admin/history_rvy.php:657 577 576 msgid "Menu Order" 578 577 msgstr "" 579 578 580 #: admin/history_rvy.php:65 4579 #: admin/history_rvy.php:658 581 580 msgid "Comment Status" 582 581 msgstr "" 583 582 584 #: admin/history_rvy.php:65 5583 #: admin/history_rvy.php:659 585 584 msgid "Ping Status" 586 585 msgstr "" 587 586 588 #: admin/history_rvy.php:79 5587 #: admin/history_rvy.php:799 589 588 msgid "Page Template" 590 589 msgstr "" 591 590 592 #: admin/history_rvy.php: 798591 #: admin/history_rvy.php:802 593 592 msgid "Featured Image" 594 593 msgstr "" 595 594 596 #: admin/history_rvy.php:80 2595 #: admin/history_rvy.php:806 597 596 msgid "Beaver Builder Data" 598 597 msgstr "" 599 598 600 #: admin/history_rvy.php:80 3599 #: admin/history_rvy.php:807 601 600 msgid "Beaver Builder Settings" 602 601 msgstr "" 603 602 604 #: admin/history_rvy.php:105 4603 #: admin/history_rvy.php:1058 605 604 msgid "Scheduled for " 606 605 msgstr "" 607 606 608 #: admin/history_rvy.php:10 59607 #: admin/history_rvy.php:1063 609 608 msgid "Requested for " 610 609 msgstr "" 611 610 612 #: admin/history_rvy.php:106 4611 #: admin/history_rvy.php:1068 613 612 msgid "Modified " 614 613 msgstr "" 615 614 616 #: admin/history_rvy.php:10 69615 #: admin/history_rvy.php:1073 617 616 #, php-format 618 617 msgid "%s%s from now" 619 618 msgstr "" 620 619 621 #: admin/history_rvy.php:108 0620 #: admin/history_rvy.php:1084 622 621 msgid "M j, Y @ g:i a" 623 622 msgstr "" 624 623 625 #: admin/history_rvy.php:112 5624 #: admin/history_rvy.php:1129 626 625 msgid "M j, Y @ H:i" 627 626 msgstr "" 628 627 629 #: admin/history_rvy.php:11 26628 #: admin/history_rvy.php:1130 630 629 msgctxt "revision date short format" 631 630 msgid "j M @ H:i" 632 631 msgstr "" 633 632 634 #: admin/history_rvy.php:121 2633 #: admin/history_rvy.php:1216 635 634 #: front_rvy.php:597 636 635 #: front_rvy.php:607 … … 645 644 msgstr "" 646 645 647 #: admin/history_rvy.php:121 2646 #: admin/history_rvy.php:1216 648 647 msgid "Preview / Approve" 649 648 msgstr "" 650 649 651 #: admin/history_rvy.php:121 4650 #: admin/history_rvy.php:1218 652 651 #: admin/post-editor-workflow-ui_rvy.php:77 653 652 #: admin/post-editor-workflow-ui_rvy.php:118 … … 657 656 msgstr "" 658 657 659 #: admin/history_rvy.php:13 08658 #: admin/history_rvy.php:1312 660 659 msgid "Preview / Restore" 661 660 msgstr "" 662 661 663 #: admin/history_rvy.php:131 5662 #: admin/history_rvy.php:1319 664 663 msgid "Manage" 665 664 msgstr "" 666 665 667 #: admin/history_rvy.php:13 16666 #: admin/history_rvy.php:1320 668 667 msgid "List" 669 668 msgstr "" … … 694 693 695 694 #: admin/options.php:163 696 #: admin/options.php:95 5695 #: admin/options.php:957 697 696 msgid "Notifications" 698 697 msgstr "" … … 729 728 730 729 #: admin/options.php:182 731 #: admin/options.php:18 7730 #: admin/options.php:188 732 731 #, php-format 733 732 msgid "Enable %s" … … 739 738 740 739 #: admin/options.php:184 741 msgid "Refresh \"Has Revision\" flag before suppressing NewRevision"740 msgid "Refresh \"Has Revision\" flag before suppressing Create Revision" 742 741 msgstr "" 743 742 … … 750 749 msgstr "" 751 750 752 #: admin/options.php:188 751 #: admin/options.php:187 752 msgid "Auto-submit revisions" 753 msgstr "" 754 755 #: admin/options.php:189 753 756 msgid "Change Request submission require role capability" 754 757 msgstr "" 755 758 756 #: admin/options.php:18 8759 #: admin/options.php:189 757 760 msgid "Revision submission requires role capability" 758 761 msgstr "" 759 762 760 #: admin/options.php:1 89763 #: admin/options.php:190 761 764 msgid "Editing others' Revisions requires role capability" 762 765 msgstr "" 763 766 764 #: admin/options.php:19 0767 #: admin/options.php:191 765 768 msgid "Listing others' Revisions requires role capability" 766 769 msgstr "" 767 770 768 #: admin/options.php:19 1771 #: admin/options.php:192 769 772 msgid "Users can always administer revisions to their own editable posts" 770 773 msgstr "" 771 774 772 #: admin/options.php:19 2775 #: admin/options.php:193 773 776 msgid "Also notify on Revision Update" 774 777 msgstr "" 775 778 776 #: admin/options.php:19 3779 #: admin/options.php:194 777 780 msgid "Apply API actions to mimic Post Update" 778 781 msgstr "" 779 782 780 #: admin/options.php:19 4783 #: admin/options.php:195 781 784 msgid "Hide html tags on Compare screen" 782 785 msgstr "" 783 786 784 #: admin/options.php:19 5787 #: admin/options.php:196 785 788 msgid "Hide copy buttons on Compare screen" 786 789 msgstr "" 787 790 788 #: admin/options.php:19 6791 #: admin/options.php:197 789 792 msgid "Use WP-Cron scheduling" 790 793 msgstr "" 791 794 792 #: admin/options.php:19 7795 #: admin/options.php:198 793 796 msgid "Site uses a custom trigger for WP-Cron tasks" 794 797 msgstr "" 795 798 796 #: admin/options.php:19 8799 #: admin/options.php:199 797 800 msgid "Asynchronous Publishing" 798 801 msgstr "" 799 802 800 #: admin/options.php:199801 803 #: admin/options.php:200 804 #: admin/options.php:201 802 805 msgid "Update Publish Date" 803 806 msgstr "" 804 807 805 #: admin/options.php:201806 808 #: admin/options.php:202 809 #: admin/options.php:203 807 810 msgid "Update Modified Date" 808 811 msgstr "" 809 812 810 #: admin/options.php:205811 813 #: admin/options.php:206 814 #: admin/options.php:207 812 815 #, php-format 813 816 msgid "Use %1$sPlanner Notifications%2$s" 814 817 msgstr "" 815 818 816 #: admin/options.php:20 8819 #: admin/options.php:209 817 820 #, php-format 818 821 msgid "Email original Author when a %s is submitted" 819 822 msgstr "" 820 823 821 #: admin/options.php:2 09824 #: admin/options.php:210 822 825 #, php-format 823 826 msgid "Email the original Author when a %s is approved" 824 827 msgstr "" 825 828 826 #: admin/options.php:21 0829 #: admin/options.php:211 827 830 #, php-format 828 831 msgid "Email the Revisor when a %s is approved" 829 832 msgstr "" 830 833 831 #: admin/options.php:21 1834 #: admin/options.php:212 832 835 #, php-format 833 836 msgid "Email the original Author when a %s is published" 834 837 msgstr "" 835 838 836 #: admin/options.php:21 2839 #: admin/options.php:213 837 840 #, php-format 838 841 msgid "Email the Revisor when a %s is published" 839 842 msgstr "" 840 843 841 #: admin/options.php:21 3844 #: admin/options.php:214 842 845 msgid "Enable notification buffer" 843 846 msgstr "" 844 847 845 #: admin/options.php:21 4848 #: admin/options.php:215 846 849 msgid "Revisors can create a new revision for any custom post type" 847 850 msgstr "" 848 851 849 #: admin/options.php:21 5852 #: admin/options.php:216 850 853 msgid "Prevent Revisors from editing others' unpublished Posts" 851 854 msgstr "" 852 855 853 #: admin/options.php:21 6856 #: admin/options.php:217 854 857 msgid "Display Hints" 855 858 msgstr "" 856 859 857 #: admin/options.php:21 7860 #: admin/options.php:218 858 861 msgid "Delete settings and Revisions if plugin is deleted" 859 862 msgstr "" 860 863 861 #: admin/options.php:21 8864 #: admin/options.php:219 862 865 msgid "Show Preview Links" 863 866 msgstr "" 864 867 865 #: admin/options.php:2 19868 #: admin/options.php:220 866 869 msgid "Preview Link Type" 867 870 msgstr "" 868 871 869 #: admin/options.php:22 0872 #: admin/options.php:221 870 873 msgid "Modify preview link for better theme compatibility" 871 874 msgstr "" 872 875 873 #: admin/options.php:22 1876 #: admin/options.php:222 874 877 msgid "Theme Compat: For front page revision preview, set home flag" 875 878 msgstr "" 876 879 877 #: admin/options.php:22 2880 #: admin/options.php:223 878 881 msgid "Approve Button on Compare screen" 879 882 msgstr "" 880 883 881 #: admin/options.php:22 3884 #: admin/options.php:224 882 885 msgid "Copy revision comments to published post" 883 886 msgstr "" 884 887 885 #: admin/options.php:22 4888 #: admin/options.php:225 886 889 msgid "Compare Past Revisions ordering:" 887 890 msgstr "" 888 891 889 #: admin/options.php:22 5892 #: admin/options.php:226 890 893 #, php-format 891 894 msgid "List %s for \"My Activity\" or \"Revisions to My Posts\" view" 892 895 msgstr "" 893 896 894 #: admin/options.php:22 6897 #: admin/options.php:227 895 898 msgid "Store custom fields of submitted and scheduled revisions for archive" 896 899 msgstr "" 897 900 898 #: admin/options.php:22 7901 #: admin/options.php:228 899 902 msgid "Keep an archive of revision edits, even after the revision is published" 900 903 msgstr "" 901 904 902 #: admin/options.php:22 8905 #: admin/options.php:229 903 906 msgid "On Revision publication, delete Editorial Comments" 904 907 msgstr "" 905 908 906 #: admin/options.php:2 29909 #: admin/options.php:230 907 910 msgid "Enable deletion queue" 908 911 msgstr "" 909 912 910 #: admin/options.php:23 0913 #: admin/options.php:231 911 914 msgid "Allow Past Revisions to be deleted" 912 915 msgstr "" 913 916 914 #: admin/options.php:23 1917 #: admin/options.php:232 915 918 msgid "Restoring a Revision requires role capability" 916 919 msgstr "" 917 920 918 #: admin/options.php:23 2921 #: admin/options.php:233 919 922 msgid "Compatibility Mode" 920 923 msgstr "" 921 924 922 #: admin/options.php:23 3925 #: admin/options.php:234 923 926 msgid "Planner Notifications Access-Limited" 924 927 msgstr "" 925 928 926 #: admin/options.php:23 4929 #: admin/options.php:235 927 930 msgid "Maximum Revisions per post" 928 931 msgstr "" 929 932 930 #: admin/options.php:23 5933 #: admin/options.php:236 931 934 msgid "Apply Post Permissions to Revisions" 932 935 msgstr "" 933 936 934 #: admin/options.php:23 6937 #: admin/options.php:237 935 938 msgid "Enable legacy email notifications" 936 939 msgstr "" 937 940 938 #: admin/options.php:23 7941 #: admin/options.php:238 939 942 msgid "Use extended captions for Approve button in Post Editor" 940 943 msgstr "" 941 944 942 #: admin/options.php:238 945 #: admin/options.php:239 946 msgid "Allow the Author field to be modified by Revision" 947 msgstr "" 948 949 #: admin/options.php:240 943 950 msgid "Create Revision button in editor opens new tab" 944 951 msgstr "" 945 952 946 #: admin/options.php:2 39953 #: admin/options.php:241 947 954 msgid "Disable Rank Math SEO panel for Revision edit" 948 955 msgstr "" 949 956 950 #: admin/options.php:24 4957 #: admin/options.php:246 951 958 #, php-format 952 959 msgid "Email designated Publishers when a %s is submitted" 953 960 msgstr "" 954 961 955 #: admin/options.php:24 5962 #: admin/options.php:247 956 963 #, php-format 957 964 msgid "Email designated Publishers when a %s is published" 958 965 msgstr "" 959 966 960 #: admin/options.php:24 6967 #: admin/options.php:248 961 968 #, php-format 962 969 msgid "Email designated Publishers when a %s is approved" 963 970 msgstr "" 964 971 965 #: admin/options.php:2 48972 #: admin/options.php:250 966 973 #, php-format 967 974 msgid "Email Editors and Administrators when a %s is submitted" 968 975 msgstr "" 969 976 970 #: admin/options.php:2 49977 #: admin/options.php:251 971 978 #, php-format 972 979 msgid "Email Editors and Administrators when a %s is published" 973 980 msgstr "" 974 981 975 #: admin/options.php:25 0982 #: admin/options.php:252 976 983 #, php-format 977 984 msgid "Email Editors and Administrators when a %s is approved" 978 985 msgstr "" 979 986 980 #: admin/options.php:3 29987 #: admin/options.php:331 981 988 msgid "PublishPress Revisions Site Settings" 982 989 msgstr "" 983 990 984 #: admin/options.php:3 59991 #: admin/options.php:361 985 992 msgid "These are the default settings for options which can be adjusted per-site." 986 993 msgstr "" 987 994 988 #: admin/options.php:39 7995 #: admin/options.php:399 989 996 #, php-format 990 997 msgid "Use this tab to make NETWORK-WIDE changes to PublishPress Revisions settings. %s" 991 998 msgstr "" 992 999 993 #: admin/options.php:40 01000 #: admin/options.php:402 994 1001 #, php-format 995 1002 msgid "You can also specify %1$sdefaults for site-specific settings%2$s." 996 1003 msgstr "" 997 1004 998 #: admin/options.php:40 31005 #: admin/options.php:405 999 1006 msgid "Here you can change the default value for settings which are controlled separately on each site." 1000 1007 msgstr "" 1001 1008 1002 #: admin/options.php:4131003 1009 #: admin/options.php:415 1010 #: admin/options.php:417 1004 1011 #, php-format 1005 1012 msgid "Note that %1$s network-wide settings%2$s may also be available." 1006 1013 msgstr "" 1007 1014 1008 #: admin/options.php:50 01015 #: admin/options.php:502 1009 1016 msgid "License" 1010 1017 msgstr "" 1011 1018 1012 #: admin/options.php:54 31019 #: admin/options.php:545 1013 1020 msgid "Past Revisions are earlier versions of a post." 1014 1021 msgstr "" 1015 1022 1016 #: admin/options.php: 5981023 #: admin/options.php:600 1017 1024 msgid "This post type does not support Past Revisions." 1018 1025 msgstr "" 1019 1026 1020 #: admin/options.php:64 01027 #: admin/options.php:642 1021 1028 msgid "New Revisions are changes which are not yet published." 1022 1029 msgstr "" 1023 1030 1024 #: admin/options.php:7 291031 #: admin/options.php:731 1025 1032 msgid "Note: Third party code may cause some post types to be incompatible with PublishPress Revisions." 1026 1033 msgstr "" 1027 1034 1028 #: admin/options.php:7 391035 #: admin/options.php:741 1029 1036 #, php-format 1030 1037 msgid "For Revisions integration on the Content Calendar, Overview and Content Board, please update %sPublishPress Planner Pro%s." 1031 1038 msgstr "" 1032 1039 1033 #: admin/options.php:76 01040 #: admin/options.php:762 1034 1041 msgid "Ready to enhance your revision workflow?" 1035 1042 msgstr "" 1036 1043 1037 #: admin/options.php:76 31044 #: admin/options.php:765 1038 1045 msgid "Get PublishPress Statuses Pro and optimize your revision process with custom revision statuses." 1039 1046 msgstr "" 1040 1047 1041 #: admin/options.php:7 691048 #: admin/options.php:771 1042 1049 msgid "Define your own statuses before or after Revision Submitted" 1043 1050 msgstr "" 1044 1051 1045 #: admin/options.php:77 21052 #: admin/options.php:774 1046 1053 msgid "New predefined statuses: Deferred, Needs Work, Rejected" 1047 1054 msgstr "" 1048 1055 1049 #: admin/options.php:77 51056 #: admin/options.php:777 1050 1057 msgid "Statuses can be specific to a post type" 1051 1058 msgstr "" 1052 1059 1053 #: admin/options.php:7 781060 #: admin/options.php:780 1054 1061 msgid "Control access to statuses per-role" 1055 1062 msgstr "" 1056 1063 1057 #: admin/options.php:78 11064 #: admin/options.php:783 1058 1065 msgid "Status workflow can be nested with sub-statuses" 1059 1066 msgstr "" 1060 1067 1061 #: admin/options.php:79 01068 #: admin/options.php:792 1062 1069 msgid "Get PublishPress Statuses Pro" 1063 1070 msgstr "" 1064 1071 1065 #: admin/options.php:79 51066 #: admin/options.php:81 31067 #: admin/options.php:17 621068 #: admin/options.php:178 01069 #: admin/options.php:23 141070 #: admin/options.php:23 281071 #: admin/options.php:23 381072 #: admin/options.php:23 481072 #: admin/options.php:797 1073 #: admin/options.php:815 1074 #: admin/options.php:1770 1075 #: admin/options.php:1788 1076 #: admin/options.php:2322 1077 #: admin/options.php:2336 1078 #: admin/options.php:2346 1079 #: admin/options.php:2356 1073 1080 msgid "Learn More" 1074 1081 msgstr "" 1075 1082 1076 #: admin/options.php:8 081083 #: admin/options.php:810 1077 1084 msgid "Pro Plugin" 1078 1085 msgstr "" 1079 1086 1080 #: admin/options.php:8 091087 #: admin/options.php:811 1081 1088 msgid "Install Statuses Pro to unlock custom revision statuses." 1082 1089 msgstr "" 1083 1090 1084 #: admin/options.php:81 01091 #: admin/options.php:812 1085 1092 msgid "Configure for any post type and role to match your editing workflow." 1086 1093 msgstr "" 1087 1094 1088 #: admin/options.php:81 71095 #: admin/options.php:819 1089 1096 msgid "Get Statuses Pro" 1090 1097 msgstr "" 1091 1098 1092 #: admin/options.php:891 1093 #: admin/options.php:1057 1094 #: admin/options.php:1292 1099 #: admin/options.php:893 1100 #: admin/options.php:1059 1101 #: admin/options.php:1300 1102 #: admin/options.php:1326 1103 #: admin/options.php:1352 1104 #: admin/options.php:1380 1105 #: admin/options.php:1888 1106 #, php-format 1107 msgid "%s capability" 1108 msgstr "" 1109 1110 #: admin/options.php:898 1111 #: admin/options.php:1064 1112 #: admin/options.php:1305 1113 #: admin/options.php:1331 1114 #: admin/options.php:1357 1115 #: admin/options.php:1385 1116 #: admin/options.php:1893 1117 msgid "Assign capability to roles" 1118 msgstr "" 1119 1120 #: admin/options.php:905 1121 #, php-format 1122 msgid "Prevent non-Administrators from restoring a revision without the %s." 1123 msgstr "" 1124 1125 #: admin/options.php:911 1126 msgid "Prevent non-Administrators from restoring a revision without the restore_revisions capability" 1127 msgstr "" 1128 1129 #: admin/options.php:924 1130 msgid "Modification Date" 1131 msgstr "" 1132 1133 #: admin/options.php:952 1134 msgid "Revision Creation" 1135 msgstr "" 1136 1137 #: admin/options.php:953 1138 msgid "Submission" 1139 msgstr "" 1140 1141 #: admin/options.php:954 1142 msgid "Scheduling" 1143 msgstr "" 1144 1145 #: admin/options.php:955 1146 msgid "Publication" 1147 msgstr "" 1148 1149 #: admin/options.php:956 1150 msgid "Management" 1151 msgstr "" 1152 1153 #: admin/options.php:1009 1154 msgid "Create Revision capabilities" 1155 msgstr "" 1156 1157 #: admin/options.php:1014 1158 #: admin/options.php:1039 1159 #: admin/options.php:1184 1160 msgid "Assign capabilities to roles" 1161 msgstr "" 1162 1163 #: admin/options.php:1021 1164 #: admin/options.php:1191 1165 #, php-format 1166 msgid "If the user can't edit the published post, require %s." 1167 msgstr "" 1168 1169 #: admin/options.php:1027 1170 msgid "If the user can't edit the published post, require Create Revision capabilities (copy_posts, copy_others_pages, etc.)" 1171 msgstr "" 1172 1173 #: admin/options.php:1035 1174 #, php-format 1175 msgid "To expand the Pages list, assign %s." 1176 msgstr "" 1177 1178 #: admin/options.php:1038 1179 msgid "Listing capabilities" 1180 msgstr "" 1181 1182 #: admin/options.php:1045 1183 msgid "To expand the Pages list, assign Listing capabilities (list_others_pages, list_published_posts, etc.)" 1184 msgstr "" 1185 1186 #: admin/options.php:1051 1187 msgid "This plugin introduces a new user role, \"Revisor.\"" 1188 msgstr "" 1189 1190 #: admin/options.php:1071 1191 #, php-format 1192 msgid "Revision by a user who does not have the %s will cause all custom html tags to be stripped out." 1193 msgstr "" 1194 1195 #: admin/options.php:1077 1196 msgid "Revision by a user who does not have the unfiltered_html capability will cause all custom html tags to be stripped out." 1197 msgstr "" 1198 1199 #: admin/options.php:1094 1200 msgid "Broadest compat including Elementor, Divi, Beaver Builder" 1201 msgstr "" 1202 1203 #: admin/options.php:1095 1204 msgid "Standard storage schema for broadest 3rd party compat" 1205 msgstr "" 1206 1207 #: admin/options.php:1100 1208 msgid "Enhanced Revision access control with PublishPress plugins" 1209 msgstr "" 1210 1211 #: admin/options.php:1111 1212 msgid "In enhanced mode, a Revision's status is stored by standard WordPress schema. Some plugins are incompatible." 1213 msgstr "" 1214 1215 #: admin/options.php:1118 1216 msgid "Prevent Revision creation if the post already has another Revision in progress." 1217 msgstr "" 1218 1219 #: admin/options.php:1122 1220 msgid "Work around cache plugin conflicts by requerying for revisions before suppressing the New Revision link." 1221 msgstr "" 1222 1223 #: admin/options.php:1144 1224 #, php-format 1225 msgid "If the user does not have a regular Edit link, recaption the %s link as \"Edit.\"" 1226 msgstr "" 1227 1228 #: admin/options.php:1147 1229 msgid "Default labels are \"Not Submitted for Approval\", \"Submitted for Approval\", \"Scheduled Revision\"" 1230 msgstr "" 1231 1232 #: admin/options.php:1165 1233 #, php-format 1234 msgid "Enable published content to be copied, edited, submitted for approval and managed on the %sNew Revisions%s screen." 1235 msgstr "" 1236 1237 #: admin/options.php:1179 1238 msgid "Submit Revision capabilities" 1239 msgstr "" 1240 1241 #: admin/options.php:1197 1242 msgid "If the user can't edit the published post, require Submit Revision capabilities (revise_posts, revise_others_pages, etc.)" 1243 msgstr "" 1244 1245 #: admin/options.php:1202 1246 #: admin/options.php:1237 1247 #, php-format 1248 msgid "When a %s is published, update post publish date to current time." 1249 msgstr "" 1250 1251 #: admin/options.php:1205 1252 #: admin/options.php:1240 1253 #, php-format 1254 msgid "When a %s is published, update post modified date to current time." 1255 msgstr "" 1256 1257 #: admin/options.php:1208 1258 msgid "When a new revision is created by any user who is allowed to submit revisions, automatically submit it." 1259 msgstr "" 1260 1261 #: admin/options.php:1211 1262 msgid "Auto-submit revisions if the user can directly edit the main post." 1263 msgstr "" 1264 1265 #: admin/options.php:1214 1266 msgid "This allows immediate approval within the Compare screen. If disabled, a Preview link is provided instead." 1267 msgstr "" 1268 1269 #: admin/options.php:1231 1270 msgid "If a currently published post or page is edited and a future date set, the change will not be applied until the selected date." 1271 msgstr "" 1272 1273 #: admin/options.php:1245 1274 msgid "Publish scheduled revisions using the WP-Cron mechanism. On some sites, publication will fail if this setting is disabled." 1275 msgstr "" 1276 1277 #: admin/options.php:1249 1278 msgid "Publish scheduled revisions asynchronously, via a secondary http request from the server. This is usually best since it eliminates delay, but some servers may not support it." 1279 msgstr "" 1280 1281 #: admin/options.php:1254 1282 msgid "The WP-Cron trigger is disabled, but scheduled tasks are still excecuted using a custom trigger." 1283 msgstr "" 1284 1285 #: admin/options.php:1268 1286 msgid "Caption the button as either \"Approve and Publish\" or \"Approve and Schedule.\"" 1287 msgstr "" 1288 1289 #: admin/options.php:1277 1290 msgid "This may improve compatibility with some plugins." 1291 msgstr "" 1292 1293 #: admin/options.php:1312 1294 #, php-format 1295 msgid "Control New Revisions access with the %s." 1296 msgstr "" 1297 1095 1298 #: admin/options.php:1318 1299 msgid "Control New Revisions access with the manage_revision_queue capability." 1300 msgstr "" 1301 1302 #: admin/options.php:1338 1303 #, php-format 1304 msgid "Users will need the %s to edit others' Unsubmitted Revisions." 1305 msgstr "" 1306 1096 1307 #: admin/options.php:1344 1097 #: admin/options.php:13721098 #: admin/options.php:18801099 #, php-format1100 msgid "%s capability"1101 msgstr ""1102 1103 #: admin/options.php:8961104 #: admin/options.php:10621105 #: admin/options.php:12971106 #: admin/options.php:13231107 #: admin/options.php:13491108 #: admin/options.php:13771109 #: admin/options.php:18851110 msgid "Assign capability to roles"1111 msgstr ""1112 1113 #: admin/options.php:9031114 #, php-format1115 msgid "Prevent non-Administrators from restoring a revision without the %s."1116 msgstr ""1117 1118 #: admin/options.php:9091119 msgid "Prevent non-Administrators from restoring a revision without the restore_revisions capability"1120 msgstr ""1121 1122 #: admin/options.php:9221123 msgid "Modification Date"1124 msgstr ""1125 1126 #: admin/options.php:9501127 msgid "Revision Creation"1128 msgstr ""1129 1130 #: admin/options.php:9511131 msgid "Submission"1132 msgstr ""1133 1134 #: admin/options.php:9521135 msgid "Scheduling"1136 msgstr ""1137 1138 #: admin/options.php:9531139 msgid "Publication"1140 msgstr ""1141 1142 #: admin/options.php:10071143 msgid "Create Revision capabilities"1144 msgstr ""1145 1146 #: admin/options.php:10121147 #: admin/options.php:10371148 #: admin/options.php:11791149 msgid "Assign capabilities to roles"1150 msgstr ""1151 1152 #: admin/options.php:10191153 #: admin/options.php:11861154 #, php-format1155 msgid "If the user can't edit the published post, require %s."1156 msgstr ""1157 1158 #: admin/options.php:10251159 msgid "If the user can't edit the published post, require Create Revision capabilities (copy_posts, copy_others_pages, etc.)"1160 msgstr ""1161 1162 #: admin/options.php:10331163 #, php-format1164 msgid "To expand the Pages list, assign %s."1165 msgstr ""1166 1167 #: admin/options.php:10361168 msgid "Listing capabilities"1169 msgstr ""1170 1171 #: admin/options.php:10431172 msgid "To expand the Pages list, assign Listing capabilities (list_others_pages, list_published_posts, etc.)"1173 msgstr ""1174 1175 #: admin/options.php:10491176 msgid "This plugin introduces a new user role, \"Revisor.\""1177 msgstr ""1178 1179 #: admin/options.php:10691180 #, php-format1181 msgid "Revision by a user who does not have the %s will cause all custom html tags to be stripped out."1182 msgstr ""1183 1184 #: admin/options.php:10751185 msgid "Revision by a user who does not have the unfiltered_html capability will cause all custom html tags to be stripped out."1186 msgstr ""1187 1188 #: admin/options.php:10921189 msgid "Broadest compat including Elementor, Divi, Beaver Builder"1190 msgstr ""1191 1192 #: admin/options.php:10931193 msgid "Standard storage schema for broadest 3rd party compat"1194 msgstr ""1195 1196 #: admin/options.php:10981197 msgid "Enhanced Revision access control with PublishPress plugins"1198 msgstr ""1199 1200 #: admin/options.php:11091201 msgid "In enhanced mode, a Revision's status is stored by standard WordPress schema. Some plugins are incompatible."1202 msgstr ""1203 1204 #: admin/options.php:11161205 msgid "Prevent Revision creation if the post already has another Revision in progress."1206 msgstr ""1207 1208 #: admin/options.php:11201209 msgid "Work around cache plugin conflicts by requerying for revisions before suppressing the New Revision link."1210 msgstr ""1211 1212 #: admin/options.php:11391213 #, php-format1214 msgid "If the user does not have a regular Edit link, recaption the %s link as \"Edit.\""1215 msgstr ""1216 1217 #: admin/options.php:11421218 msgid "Default labels are \"Not Submitted for Approval\", \"Submitted for Approval\", \"Scheduled Revision\""1219 msgstr ""1220 1221 #: admin/options.php:11601222 #, php-format1223 msgid "Enable published content to be copied, edited, submitted for approval and managed on the %sNew Revisions%s screen."1224 msgstr ""1225 1226 #: admin/options.php:11741227 msgid "Submit Revision capabilities"1228 msgstr ""1229 1230 #: admin/options.php:11921231 msgid "If the user can't edit the published post, require Submit Revision capabilities (revise_posts, revise_others_pages, etc.)"1232 msgstr ""1233 1234 #: admin/options.php:11971235 #: admin/options.php:12291236 #, php-format1237 msgid "When a %s is published, update post publish date to current time."1238 msgstr ""1239 1240 #: admin/options.php:12001241 #: admin/options.php:12321242 #, php-format1243 msgid "When a %s is published, update post modified date to current time."1244 msgstr ""1245 1246 #: admin/options.php:12031247 msgid "When a user who has publishing capabilities creates a Revision, set it to \"Submitted\" status."1248 msgstr ""1249 1250 #: admin/options.php:12061251 msgid "This allows immediate approval within the Compare screen. If disabled, a Preview link is provided instead."1252 msgstr ""1253 1254 #: admin/options.php:12231255 msgid "If a currently published post or page is edited and a future date set, the change will not be applied until the selected date."1256 msgstr ""1257 1258 #: admin/options.php:12371259 msgid "Publish scheduled revisions using the WP-Cron mechanism. On some sites, publication will fail if this setting is disabled."1260 msgstr ""1261 1262 #: admin/options.php:12411263 msgid "Publish scheduled revisions asynchronously, via a secondary http request from the server. This is usually best since it eliminates delay, but some servers may not support it."1264 msgstr ""1265 1266 #: admin/options.php:12461267 msgid "The WP-Cron trigger is disabled, but scheduled tasks are still excecuted using a custom trigger."1268 msgstr ""1269 1270 #: admin/options.php:12601271 msgid "Caption the button as either \"Approve and Publish\" or \"Approve and Schedule.\""1272 msgstr ""1273 1274 #: admin/options.php:12691275 msgid "This may improve compatibility with some plugins."1276 msgstr ""1277 1278 #: admin/options.php:13041279 #, php-format1280 msgid "Control New Revisions access with the %s."1281 msgstr ""1282 1283 #: admin/options.php:13101284 msgid "Control New Revisions access with the manage_revision_queue capability."1285 msgstr ""1286 1287 #: admin/options.php:13301288 #, php-format1289 msgid "Users will need the %s to edit others' Unsubmitted Revisions."1290 msgstr ""1291 1292 #: admin/options.php:13361293 1308 msgid "Users will need the manage_unsubmitted_revisions capability to edit others' Unsubmitted Revisions." 1294 1309 msgstr "" 1295 1310 1296 #: admin/options.php:13 561297 #: admin/options.php:13 841311 #: admin/options.php:1364 1312 #: admin/options.php:1392 1298 1313 #, php-format 1299 1314 msgid "If the user can't edit the published post, require the %s." 1300 1315 msgstr "" 1301 1316 1302 #: admin/options.php:13 621317 #: admin/options.php:1370 1303 1318 msgid "If the user can't edit the published post, require the edit_others_revisions capability." 1304 1319 msgstr "" 1305 1320 1306 #: admin/options.php:139 01321 #: admin/options.php:1398 1307 1322 msgid "If the user can't edit the published post, require the list_others_revisions capability." 1308 1323 msgstr "" 1309 1324 1310 #: admin/options.php:1 3951325 #: admin/options.php:1403 1311 1326 msgid "Bypass the above restrictions for others' revisions to logged in user's own posts." 1312 1327 msgstr "" 1313 1328 1314 #: admin/options.php:14 061329 #: admin/options.php:1414 1315 1330 msgid "Regenerate \"post has revision\" flags" 1316 1331 msgstr "" 1317 1332 1318 #: admin/options.php:14 091333 #: admin/options.php:1417 1319 1334 msgid "Apply this maintenance operation if Has Revision labels on Posts / Pages screens mismatch the New Revisions listing." 1320 1335 msgstr "" 1321 1336 1322 #: admin/options.php:14 341337 #: admin/options.php:1442 1323 1338 #, php-format 1324 1339 msgid "For enhanced notifications, install %sPublishPress Planner%s." 1325 1340 msgstr "" 1326 1341 1327 #: admin/options.php:14 471342 #: admin/options.php:1455 1328 1343 #, php-format 1329 1344 msgid "For enhanced notifications, update %sPublishPress Planner%s." 1330 1345 msgstr "" 1331 1346 1332 #: admin/options.php:14 691347 #: admin/options.php:1477 1333 1348 #, php-format 1334 1349 msgid "Send revision action notifications using the customizable %1$sPublishPress Planner Notifications system%2$s." 1335 1350 msgstr "" 1336 1351 1337 #: admin/options.php:147 01352 #: admin/options.php:1478 1338 1353 #, php-format 1339 1354 msgid "Upgrade to Revisions Pro to send revision action notifications using the customizable %1$sPublishPress Planner Notifications system%2$s." 1340 1355 msgstr "" 1341 1356 1342 #: admin/options.php:14 821357 #: admin/options.php:1490 1343 1358 msgid "Users matching Planner > Notifications configuration get revision notifications only if they can edit the published post." 1344 1359 msgstr "" 1345 1360 1346 #: admin/options.php:15 241347 #: admin/options.php:15 461361 #: admin/options.php:1532 1362 #: admin/options.php:1554 1348 1363 msgid "Never" 1349 1364 msgstr "" 1350 1365 1351 #: admin/options.php:15 241352 #: admin/options.php:15 461366 #: admin/options.php:1532 1367 #: admin/options.php:1554 1353 1368 msgid "By default" 1354 1369 msgstr "" 1355 1370 1356 #: admin/options.php:15 241357 #: admin/options.php:15 461371 #: admin/options.php:1532 1372 #: admin/options.php:1554 1358 1373 msgid "Always" 1359 1374 msgstr "" 1360 1375 1361 #: admin/options.php:15 351362 #: admin/options.php:15 821376 #: admin/options.php:1543 1377 #: admin/options.php:1590 1363 1378 msgid "select recipients" 1364 1379 msgstr "" 1365 1380 1366 #: admin/options.php:1 5961381 #: admin/options.php:1604 1367 1382 msgid "To avoid notification failures, buffer emails for delayed sending once minute, hour or day limits are exceeded" 1368 1383 msgstr "" 1369 1384 1370 #: admin/options.php:16 171385 #: admin/options.php:1625 1371 1386 msgid "Notification Buffer" 1372 1387 msgstr "" 1373 1388 1374 #: admin/options.php:16 451389 #: admin/options.php:1653 1375 1390 msgid "Notification Log" 1376 1391 msgstr "" 1377 1392 1378 #: admin/options.php:16 741393 #: admin/options.php:1682 1379 1394 msgid "Purge Notification Buffer" 1380 1395 msgstr "" 1381 1396 1382 #: admin/options.php:168 01397 #: admin/options.php:1688 1383 1398 msgid "Truncate Notification Log" 1384 1399 msgstr "" 1385 1400 1386 #: admin/options.php:16 861401 #: admin/options.php:1694 1387 1402 #, php-format 1388 1403 msgid "Sent in last minute: %d / %d" 1389 1404 msgstr "" 1390 1405 1391 #: admin/options.php:16 871406 #: admin/options.php:1695 1392 1407 #, php-format 1393 1408 msgid "Sent in last hour: %d / %d" 1394 1409 msgstr "" 1395 1410 1396 #: admin/options.php:16 881411 #: admin/options.php:1696 1397 1412 #, php-format 1398 1413 msgid "Sent in last day: %d / %d" 1399 1414 msgstr "" 1400 1415 1401 #: admin/options.php:1 6951416 #: admin/options.php:1703 1402 1417 #, php-format 1403 1418 msgid "Seconds until next buffer processing time: %d" 1404 1419 msgstr "" 1405 1420 1406 #: admin/options.php:17 061421 #: admin/options.php:1714 1407 1422 msgid "Show Notification Log / Buffer" 1408 1423 msgstr "" 1409 1424 1410 #: admin/options.php:17 081425 #: admin/options.php:1716 1411 1426 msgid "Show with message content" 1412 1427 msgstr "" 1413 1428 1414 #: admin/options.php:173 01429 #: admin/options.php:1738 1415 1430 msgid "Ready to enhance your revision notifications?" 1416 1431 msgstr "" 1417 1432 1418 #: admin/options.php:17 331433 #: admin/options.php:1741 1419 1434 msgid "Upgrade to Revisions Pro for integration with our PublishPress Planner Notifications framework." 1420 1435 msgstr "" 1421 1436 1422 #: admin/options.php:17 391437 #: admin/options.php:1747 1423 1438 msgid "Customize notification message and subject" 1424 1439 msgstr "" 1425 1440 1426 #: admin/options.php:17 421441 #: admin/options.php:1750 1427 1442 msgid "Notify for a specific post type, category or term" 1428 1443 msgstr "" 1429 1444 1430 #: admin/options.php:17 451445 #: admin/options.php:1753 1431 1446 msgid "Target specific roles, users, or user groups" 1432 1447 msgstr "" 1433 1448 1434 #: admin/options.php:17 481449 #: admin/options.php:1756 1435 1450 msgid "With PublishPress Planner Pro, send notifications to a Slack channel" 1436 1451 msgstr "" 1437 1452 1438 #: admin/options.php:17 751439 #: admin/options.php:23 081453 #: admin/options.php:1783 1454 #: admin/options.php:2316 1440 1455 msgid "Pro Feature" 1441 1456 msgstr "" 1442 1457 1443 #: admin/options.php:17 761458 #: admin/options.php:1784 1444 1459 msgid "Upgrade to Revisions Pro to unlock Planner Notifications integration." 1445 1460 msgstr "" 1446 1461 1447 #: admin/options.php:17 771462 #: admin/options.php:1785 1448 1463 msgid "Customize notification content and recipients for each notification type." 1449 1464 msgstr "" 1450 1465 1451 #: admin/options.php:180 11466 #: admin/options.php:1809 1452 1467 msgid "Some themes may block revision preview." 1453 1468 msgstr "" 1454 1469 1455 #: admin/options.php:18 181470 #: admin/options.php:1826 1456 1471 msgid "Published Post Slug" 1457 1472 msgstr "" 1458 1473 1459 #: admin/options.php:18 191474 #: admin/options.php:1827 1460 1475 msgid "Revision Slug" 1461 1476 msgstr "" 1462 1477 1463 #: admin/options.php:182 01478 #: admin/options.php:1828 1464 1479 msgid "Revision ID only" 1465 1480 msgstr "" 1466 1481 1467 #: admin/options.php:18 351482 #: admin/options.php:1843 1468 1483 msgid "Some themes or plugins may require Revision Slug or Revision ID link type for proper template loading and field display." 1469 1484 msgstr "" 1470 1485 1471 #: admin/options.php:18 441486 #: admin/options.php:1852 1472 1487 #, php-format 1473 1488 msgid "The revision preview argument is configured by constant definition: %s" 1474 1489 msgstr "" 1475 1490 1476 #: admin/options.php:185 11491 #: admin/options.php:1859 1477 1492 msgid "Adjust preview links to use \"rv_preview\" argument instead of \"preview\". Experiment to see which works best with your theme." 1478 1493 msgstr "" 1479 1494 1480 #: admin/options.php:18 551495 #: admin/options.php:1863 1481 1496 msgid "Some themes may require this setting for correct revision preview display." 1482 1497 msgstr "" 1483 1498 1484 #: admin/options.php:1 8921499 #: admin/options.php:1900 1485 1500 #, php-format 1486 1501 msgid "If the user can't publish, require the %s to edit others' unpublished Posts." 1487 1502 msgstr "" 1488 1503 1489 #: admin/options.php:1 8981504 #: admin/options.php:1906 1490 1505 msgid "If the user can't publish, require the edit_others_drafts capability to edit others' unpublished Posts." 1491 1506 msgstr "" 1492 1507 1493 #: admin/options.php:19 041508 #: admin/options.php:1912 1494 1509 msgid "If post-specific permissions restrict or expand access to a post, apply those permissions to its revisions also." 1495 1510 msgstr "" 1496 1511 1497 #: admin/options.php:19 161512 #: admin/options.php:1924 1498 1513 msgid "Rank Math SEO may prevent Revision update on some sites." 1499 1514 msgstr "" 1500 1515 1501 #: admin/options.php:19 231516 #: admin/options.php:1931 1502 1517 #: includes/CoreAdmin.php:205 1503 1518 msgid "WPML Translation Management" 1504 1519 msgstr "" 1505 1520 1506 #: admin/options.php:19 281521 #: admin/options.php:1936 1507 1522 msgid "Sync \"Needs Update\" flags" 1508 1523 msgstr "" 1509 1524 1510 #: admin/options.php:19 321525 #: admin/options.php:1940 1511 1526 msgid "Set \"Needs Update\" for any post with translations which was updated (possibly by revision approval) more recently than its translations." 1512 1527 msgstr "" 1513 1528 1514 #: admin/options.php:19 421529 #: admin/options.php:1950 1515 1530 msgid "Show descriptive captions for PublishPress Revisions settings." 1516 1531 msgstr "" 1517 1532 1518 #: admin/options.php:19 451533 #: admin/options.php:1953 1519 1534 msgid "Plugin settings, New Revisions contents and related data will be deleted, but only after the last copy of Revisions / Revisions Pro is deleted." 1520 1535 msgstr "" 1521 1536 1522 #: admin/options.php:19 661537 #: admin/options.php:1974 1523 1538 msgid "Unlock Pro Integrations" 1524 1539 msgstr "" 1525 1540 1526 #: admin/options.php:19 671541 #: admin/options.php:1975 1527 1542 msgid "Upgrade to the Pro version for optimal compatibility and prompt, professional support." 1528 1543 msgstr "" 1529 1544 1530 #: admin/options.php:19 851531 #: admin/options.php:22 331545 #: admin/options.php:1993 1546 #: admin/options.php:2241 1532 1547 msgid "Admin" 1533 1548 msgstr "" 1534 1549 1535 #: admin/options.php:19 881536 #: admin/options.php:223 11550 #: admin/options.php:1996 1551 #: admin/options.php:2239 1537 1552 msgid "Builder" 1538 1553 msgstr "" 1539 1554 1540 #: admin/options.php:199 11541 #: admin/options.php:22 351555 #: admin/options.php:1999 1556 #: admin/options.php:2243 1542 1557 msgid "Cache" 1543 1558 msgstr "" 1544 1559 1545 #: admin/options.php: 19941560 #: admin/options.php:2002 1546 1561 msgid "E-Commerce" 1547 1562 msgstr "" 1548 1563 1549 #: admin/options.php: 19971550 #: admin/options.php:224 11564 #: admin/options.php:2005 1565 #: admin/options.php:2249 1551 1566 msgid "Fields" 1552 1567 msgstr "" 1553 1568 1554 #: admin/options.php:200 11569 #: admin/options.php:2009 1555 1570 msgid "Multilingual" 1556 1571 msgstr "" 1557 1572 1558 #: admin/options.php:20 051559 #: admin/options.php:22 371573 #: admin/options.php:2013 1574 #: admin/options.php:2245 1560 1575 msgid "SEO" 1561 1576 msgstr "" 1562 1577 1563 #: admin/options.php:20 081564 #: admin/options.php:22 471578 #: admin/options.php:2016 1579 #: admin/options.php:2255 1565 1580 msgid "Workflow" 1566 1581 msgstr "" 1567 1582 1568 #: admin/options.php:209 01583 #: admin/options.php:2098 1569 1584 msgid "Specify which PublishPress Revisions Settings to control network-wide. Unselected settings are controlled separately on each site." 1570 1585 msgstr "" 1571 1586 1572 #: admin/options.php:210 01587 #: admin/options.php:2108 1573 1588 #, php-format 1574 1589 msgctxt "opentag option_tabname closetag (explanatory note)" … … 1576 1591 msgstr "" 1577 1592 1578 #: admin/options.php:21 361593 #: admin/options.php:2144 1579 1594 #, php-format 1580 1595 msgid "network-wide control of \"%s\"" 1581 1596 msgstr "" 1582 1597 1583 #: admin/options.php:21 631598 #: admin/options.php:2171 1584 1599 msgid "Save Changes" 1585 1600 msgstr "" 1586 1601 1587 #: admin/options.php:21 641602 #: admin/options.php:2172 1588 1603 msgid "Revert to Defaults" 1589 1604 msgstr "" 1590 1605 1591 #: admin/options.php:21 661606 #: admin/options.php:2174 1592 1607 msgid "All settings in this form (including those on unselected tabs) will be reset to DEFAULTS. Are you sure?" 1593 1608 msgstr "" 1594 1609 1595 #: admin/options.php:22 391610 #: admin/options.php:2247 1596 1611 msgid "Commerce" 1597 1612 msgstr "" 1598 1613 1599 #: admin/options.php:22 431614 #: admin/options.php:2251 1600 1615 msgid "Multilang" 1601 1616 msgstr "" 1602 1617 1603 #: admin/options.php:22 451618 #: admin/options.php:2253 1604 1619 msgid "Community" 1605 1620 msgstr "" 1606 1621 1607 #: admin/options.php:22 631622 #: admin/options.php:2271 1608 1623 msgid "Pro" 1609 1624 msgstr "" 1610 1625 1611 #: admin/options.php:22 681626 #: admin/options.php:2276 1612 1627 msgid "Supported" 1613 1628 msgstr "" 1614 1629 1615 #: admin/options.php:227 11616 #: admin/options.php:23 251630 #: admin/options.php:2279 1631 #: admin/options.php:2333 1617 1632 msgid "Active Plugin" 1618 1633 msgstr "" 1619 1634 1620 #: admin/options.php:22 831635 #: admin/options.php:2291 1621 1636 msgid "Supported by PublishPress Revisions" 1622 1637 msgstr "" 1623 1638 1624 #: admin/options.php:22 851639 #: admin/options.php:2293 1625 1640 msgid "Supported by Revisions Pro" 1626 1641 msgstr "" 1627 1642 1628 #: admin/options.php:2 2981643 #: admin/options.php:2306 1629 1644 msgid "Integration Active" 1630 1645 msgstr "" 1631 1646 1632 #: admin/options.php:230 01647 #: admin/options.php:2308 1633 1648 msgid "Upgrade to Pro to enable this integration" 1634 1649 msgstr "" 1635 1650 1636 #: admin/options.php:23 091651 #: admin/options.php:2317 1637 1652 #, php-format 1638 1653 msgid "Unlock %s integration to enhance your revisions solution." 1639 1654 msgstr "" 1640 1655 1641 #: admin/options.php:23 251656 #: admin/options.php:2333 1642 1657 msgid "Active Plugin Integration" 1643 1658 msgstr "" 1644 1659 1645 #: admin/options.php:23 351660 #: admin/options.php:2343 1646 1661 msgid "Supported Plugin Integration" 1647 1662 msgstr "" 1648 1663 1649 #: admin/options.php:23 451664 #: admin/options.php:2353 1650 1665 msgid "Supported Plugin" 1651 1666 msgstr "" 1652 1667 1653 #: admin/post-edit-block-ui_rvy.php:17 01654 #: admin/post-edit_rvy.php:3 361668 #: admin/post-edit-block-ui_rvy.php:174 1669 #: admin/post-edit_rvy.php:340 1655 1670 msgid "Author" 1656 1671 msgstr "" … … 1778 1793 msgstr "" 1779 1794 1780 #: admin/revision-action_rvy.php: 4901781 #: admin/revision-action_rvy.php:5 761795 #: admin/revision-action_rvy.php:507 1796 #: admin/revision-action_rvy.php:593 1782 1797 #, php-format 1783 1798 msgid "[%s] Revision Approval Notice" 1784 1799 msgstr "" 1785 1800 1786 #: admin/revision-action_rvy.php: 4911801 #: admin/revision-action_rvy.php:508 1787 1802 #, php-format 1788 1803 msgid "A revision to the %1$s \"%2$s\" has been approved." 1789 1804 msgstr "" 1790 1805 1791 #: admin/revision-action_rvy.php: 4951806 #: admin/revision-action_rvy.php:512 1792 1807 #, php-format 1793 1808 msgid "The submitter was %1$s." 1794 1809 msgstr "" 1795 1810 1796 #: admin/revision-action_rvy.php: 4991797 #: admin/revision-action_rvy.php: 5851811 #: admin/revision-action_rvy.php:516 1812 #: admin/revision-action_rvy.php:602 1798 1813 #, php-format 1799 1814 msgid "It will be published on %s" 1800 1815 msgstr "" 1801 1816 1802 #: admin/revision-action_rvy.php:5 031803 #: admin/revision-action_rvy.php: 5891817 #: admin/revision-action_rvy.php:520 1818 #: admin/revision-action_rvy.php:606 1804 1819 msgid "Preview it here: " 1805 1820 msgstr "" 1806 1821 1807 #: admin/revision-action_rvy.php:5 061808 #: admin/revision-action_rvy.php: 5921822 #: admin/revision-action_rvy.php:523 1823 #: admin/revision-action_rvy.php:609 1809 1824 msgid "Editor: " 1810 1825 msgstr "" 1811 1826 1812 #: admin/revision-action_rvy.php:508 1827 #: admin/revision-action_rvy.php:525 1828 #: admin/revision-action_rvy.php:611 1829 #: admin/revision-action_rvy.php:1570 1830 #: admin/revision-action_rvy.php:1601 1831 #: admin/revision-action_rvy.php:1667 1832 msgid "View it online: " 1833 msgstr "" 1834 1813 1835 #: admin/revision-action_rvy.php:594 1814 #: admin/revision-action_rvy.php:15531815 #: admin/revision-action_rvy.php:15841816 #: admin/revision-action_rvy.php:16501817 msgid "View it online: "1818 msgstr ""1819 1820 #: admin/revision-action_rvy.php:5771821 1836 #, php-format 1822 1837 msgid "The revision you submitted for the %1$s \"%2$s\" has been approved." 1823 1838 msgstr "" 1824 1839 1825 #: admin/revision-action_rvy.php:15 451826 #: admin/revision-action_rvy.php:15 731840 #: admin/revision-action_rvy.php:1562 1841 #: admin/revision-action_rvy.php:1590 1827 1842 #, php-format 1828 1843 msgid "[%s] %s Publication Notice" 1829 1844 msgstr "" 1830 1845 1831 #: admin/revision-action_rvy.php:15 461846 #: admin/revision-action_rvy.php:1563 1832 1847 #, php-format 1833 1848 msgid "The scheduled revision you submitted for the %1$s \"%2$s\" has been published." 1834 1849 msgstr "" 1835 1850 1836 #: admin/revision-action_rvy.php:15 741851 #: admin/revision-action_rvy.php:1591 1837 1852 #, php-format 1838 1853 msgid "A scheduled revision to your %1$s \"%2$s\" has been published." … … 2222 2237 #: front_rvy.php:487 2223 2238 #, php-format 2224 msgid "%s View Queue%s"2239 msgid "%sManage%s" 2225 2240 msgstr "" 2226 2241 … … 2525 2540 #: rvy_init-functions.php:323 2526 2541 #: rvy_init-functions.php:324 2527 msgid " NewRevision"2542 msgid "Create Revision" 2528 2543 msgstr "" 2529 2544 -
revisionary/trunk/revisionary-front.css
r3314852 r3397524 111 111 .rvy_view_future, 112 112 .rvy_view_scheduled { 113 background-color: # 888;113 background-color: #35b194; 114 114 } 115 115 .rvy_view_future .rvy_preview_linkspan, … … 125 125 .rvy_view_pending_future { 126 126 color: white; 127 background-color: # 35b194;127 background-color: #799 128 128 } 129 129 .rvy_view_pending_future .rvy_preview_linkspan { -
revisionary/trunk/revisionary.php
r3395221 r3397524 6 6 * Author: PublishPress 7 7 * Author URI: https://publishpress.com 8 * Version: 3.7.21 -beta8 * Version: 3.7.21 9 9 * Text Domain: revisionary 10 10 * Domain Path: /languages/ … … 40 40 global $pp_revisions_version; 41 41 42 $pp_revisions_version = '3.7.21 -beta';42 $pp_revisions_version = '3.7.21'; 43 43 44 44 global $wp_version; -
revisionary/trunk/rvy_init-functions.php
r3395221 r3397524 321 321 'draft-revision' => [ 322 322 'name' => esc_html__('Unsubmitted Revision', 'revisionary'), 323 'submit' => esc_html__(' NewRevision', 'revisionary'),324 'submit_short' => esc_html__(' NewRevision', 'revisionary'),323 'submit' => esc_html__('Create Revision', 'revisionary'), 324 'submit_short' => esc_html__('Create Revision', 'revisionary'), 325 325 'submitting' => esc_html__('Creating Revision...', 'revisionary'), 326 326 'submitted' => ($block_editor) ? esc_html__('The Revision is ready to edit.', 'revisionary') : esc_html__('Revision ready to edit.', 'revisionary'),
Note: See TracChangeset
for help on using the changeset viewer.