Changeset 42006
- Timestamp:
- 10/24/2017 10:46:27 PM (7 years ago)
- Location:
- trunk/src
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/meta-boxes.php
r42005 r42006 229 229 <?php 230 230 echo sprintf( 231 /* translators: %s is theURL to the Customizer */231 /* translators: %s: URL to the Customizer */ 232 232 __( 'This draft comes from your <a href="%s">unpublished customization changes</a>. You can edit, but there’s no need to publish now. It will be published automatically with those changes.' ), 233 233 esc_url( -
trunk/src/wp-admin/includes/theme.php
r41658 r42006 660 660 <span class="num-ratings"> 661 661 <?php 662 /* translators: %s is thenumber of ratings */662 /* translators: %s: number of ratings */ 663 663 echo sprintf( __( '(%s ratings)' ), '{{ data.num_ratings }}' ); 664 664 ?> -
trunk/src/wp-includes/class-wp-customize-manager.php
r41997 r42006 4610 4610 'l10n' => array( 4611 4611 'confirmDeleteTheme' => __( 'Are you sure you want to delete this theme?' ), 4612 /* translators: %d is thenumber of theme search results, which cannot currently consider singular vs. plural forms */4612 /* translators: %d: number of theme search results, which cannot currently consider singular vs. plural forms */ 4613 4613 'themeSearchResults' => __( '%d themes found' ), 4614 /* translators: %d is thenumber of themes being displayed, which cannot currently consider singular vs. plural forms */4614 /* translators: %d: number of themes being displayed, which cannot currently consider singular vs. plural forms */ 4615 4615 'announceThemeCount' => __( 'Displaying %d themes' ), 4616 /* translators: %s is thetheme name */4616 /* translators: %s: theme name */ 4617 4617 'announceThemeDetails' => __( 'Showing details for theme: %s' ), 4618 4618 ), -
trunk/src/wp-includes/customize/class-wp-customize-theme-control.php
r42002 r42006 92 92 <p> 93 93 <?php 94 /* translators: %s is the linked update nowbutton */94 /* translators: %s: "Update now" button */ 95 95 printf( __( 'New version available. %s' ), '<button class="button-link update-theme" type="button">' . __( 'Update now' ) . '</button>' ); 96 96 ?> -
trunk/src/wp-includes/customize/class-wp-customize-themes-section.php
r41973 r42006 88 88 <p class="no-themes-local"> 89 89 <?php 90 /* translators: %s is the string, "search WordPress.org themes"*/90 /* translators: %s: "Search WordPress.org themes" button */ 91 91 printf( __( 'No themes found. Try a different search, or %s.' ), 92 92 sprintf( '<button type="button" class="button-link search-dotorg-themes">%s</button>', __( 'Search WordPress.org themes' ) ) -
trunk/src/wp-includes/script-loader.php
r42005 r42006 595 595 'themePreviewUnavailable' => __( 'Sorry, you can’t preview new themes when you have changes scheduled or saved as a draft. Please publish your changes, or wait until they publish to preview new themes.' ), 596 596 'themeInstallUnavailable' => sprintf( 597 /* translators: %s isURL to Add Themes admin screen */597 /* translators: %s: URL to Add Themes admin screen */ 598 598 __( 'You won’t be able to install new themes from here yet since your install requires SFTP credentials. For now, please <a href="%s">add themes in the admin</a>.' ), 599 599 esc_url( admin_url( 'theme-install.php' ) )
Note: See TracChangeset
for help on using the changeset viewer.