Make WordPress Core


Ignore:
Timestamp:
07/28/2015 09:38:32 PM (10 years ago)
Author:
obenland
Message:

About: Remove translation functions until strings are final.

See #32929.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/about.php

    r33466 r33467  
    2626    array(
    2727        'src'         => '',
    28         'heading'     => __( 'Formatting Shortcuts' ),
    29         'description' => __( 'Your writing flow just got faster with new formatting shortcuts in WordPress 4.3. Use asterisks to create lists and number signs to make a heading. No more breaking your flow; your text looks great with a <code>*</code> and a <code>#</code>.' ),
     28        'heading'     => 'Formatting Shortcuts',
     29
     30        /* Translators: 1: asterisks; 2: number sign; */
     31        'description' => sprintf( 'Your writing flow just got faster with new formatting shortcuts in WordPress 4.3. Use asterisks to create lists and number signs to make a heading. No more breaking your flow; your text looks great with a %1$s and a %2$.', '<code>*</code>', '<code>#</code>' ),
    3032    ),
    3133    array(
    3234        'src'         => '',
    33         'heading'     => __( 'Menus in the Customizer' ),
    34         'description' => __( 'Create your menu, update it, and preview it in the customizer, before sharing it with the world. With every release, it becomes easier and faster to build your site from the front-end. And a streamlined customizer design mean a mobile-first, accessibility ready interface.' ),
     35        'heading'     => 'Menus in the Customizer',
     36        'description' => 'Create your menu, update it, and preview it in the customizer, before sharing it with the world. With every release, it becomes easier and faster to build your site from the front-end. And a streamlined customizer design mean a mobile-first, accessibility ready interface.',
    3537    ),
    3638    array(
    3739        'src'         => '',
    38         'heading'     => __( 'Better Passwords' ),
    39         'description' => __( 'Keep your site more secure with WordPress’ improved approach to passwords. Instead of receiving passwords via email, you’ll get a password reset link. When you add new users to your site, WordPress will automatically generate a secure password.' ),
     40        'heading'     => 'Better Passwords',
     41        'description' => 'Keep your site more secure with WordPress’ improved approach to passwords. Instead of receiving passwords via email, you’ll get a password reset link. When you add new users to your site, WordPress will automatically generate a secure password.',
    4042    ),
    4143    array(
    4244        'src'         => '',
    43         'heading'     => __( 'Site Icons' ),
    44         'description' => __( 'Site icons represent your site in browser tabs, bookmark menus, and on the home screen of mobile devices. Add your unique site icon in the customizer; it will even stay in place when you switch themes. Make your whole site reflect your brand.' ),
     45        'heading'     => 'Site Icons',
     46        'description' => 'Site icons represent your site in browser tabs, bookmark menus, and on the home screen of mobile devices. Add your unique site icon in the customizer; it will even stay in place when you switch themes. Make your whole site reflect your brand.',
    4547    ),
    4648);
     
    5052    array(
    5153        'src'         => '',
    52         'heading'     => __( 'A smoother admin experience' ),
    53         'description' => __( 'Refinements to the list view across the admin make your WordPress more accessible and easier to work with on any device.' ),
     54        'heading'     => 'A smoother admin experience',
     55        'description' => 'Refinements to the list view across the admin make your WordPress more accessible and easier to work with on any device.',
    5456    ),
    5557    array(
    5658        'src'         => '',
    57         'heading'     => __( 'Comments turned off on pages' ),
    58         'description' => __( 'All new pages that you create will have comments turned off. Keep discussions to your blog, right where they’re supposed to happen.' ),
     59        'heading'     => 'Comments turned off on pages',
     60        'description' => 'All new pages that you create will have comments turned off. Keep discussions to your blog, right where they’re supposed to happen.',
    5961    ),
    6062    array(
    6163        'src'         => '',
    62         'heading'     => __( 'Customize your site quickly' ),
    63         'description' => __( 'Wherever you are on the front-end, you can click the customize button in the toolbar to swiftly make changes to your site.' ),
     64        'heading'     => 'Customize your site quickly' ,
     65        'description' => 'Wherever you are on the front-end, you can click the customize button in the toolbar to swiftly make changes to your site.',
    6466    ),
    6567);
     
    6769$tech_features = array(
    6870    array(
    69         'heading'     => __( 'Taxonomy Roadmap' ),
    70         'description' => __( 'Terms shared across multiple taxonomies are now split into separate terms.' ),
     71        'heading'     => 'Taxonomy Roadmap',
     72        'description' => 'Terms shared across multiple taxonomies are now split into separate terms.',
    7173    ),
    7274    array(
    73         'heading'     => __( 'Template Hierarchy' ),
    74         'description' => __( 'Added <code>singular.php</code> as a fallback for <code>single.php</code> and <code>page.php</code>.' ),
     75        'heading'     => 'Template Hierarchy',
     76
     77        /* Translators: 1: singular.php; 2: single.php; 3:page.php */
     78        'description' => sprintf( 'Added %1$s as a fallback for %2$s and %3$s', '<code>singular.php</code>', '<code>single.php</code>', '<code>page.php</code>.' ),
    7579    ),
    7680    array(
    77         'heading'     => __( 'List table' ),
    78         'description' => __( 'List tables now can (and often should) have a primary column defined.' ),
     81        'heading'     => 'List table',
     82        'description' => 'List tables now can (and often should) have a primary column defined.',
    7983    ),
    8084);
     
    8488        <h1><?php printf( __( 'Welcome to WordPress&nbsp;%s' ), $display_version ); ?></h1>
    8589
    86         <div class="about-text"><?php /* @TODO Fun tag line. */ printf( __( 'Thank you for updating to WordPress %s!' ), $display_version ); ?></div>
     90        <div class="about-text"><?php /* @TODO Fun tag line. */ printf( 'Thank you for updating to WordPress %s!', $display_version ); ?></div>
    8791        <div class="wp-badge"><?php printf( __( 'Version %s' ), $display_version ); ?></div>
    8892
Note: See TracChangeset for help on using the changeset viewer.