Changeset 8498
- Timestamp:
- 03/24/2019 05:28:43 PM (6 years ago)
- Location:
- sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-customizations/templates
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-customizations/templates/projects-wp-plugins.php
r8348 r8498 1 1 <?php 2 2 $edit_link = gp_link_project_edit_get( $project, __( '(edit)' ) ); 3 $table_headings = array(4 'locale' => __( 'Locale' ),5 'dev' => __( 'Development' ),6 'dev-readme' => __( 'Development Readme' ),7 'stable' => __( 'Stable' ),8 'stable-readme' => __( 'Stable Readme' ),9 'waiting' => __( 'Waiting' ),10 );3 $table_headings = [ 4 'locale' => 'Locale', 5 'dev' => 'Development', 6 'dev-readme' => 'Development Readme', 7 'stable' => 'Stable', 8 'stable-readme' => 'Stable Readme', 9 'waiting' => 'Waiting/Fuzzy', 10 ]; 11 11 12 12 gp_title( sprintf( __( '%s < GlotPress' ), esc_html( $project->name ) ) ); -
sites/trunk/wordpress.org/public_html/wp-content/plugins/wporg-gp-customizations/templates/projects-wp-themes.php
r8348 r8498 1 1 <?php 2 2 $edit_link = gp_link_project_edit_get( $project, __( '(edit)' ) ); 3 $table_headings = array(4 'locale' => __( 'Locale' ),5 'stable' => __( 'Stable' ),6 'waiting' => __( 'Waiting' ),7 );3 $table_headings = [ 4 'locale' => 'Locale', 5 'stable' => 'Stable', 6 'waiting' => 'Waiting/Fuzzy', 7 ]; 8 8 9 9 gp_title( sprintf( __( '%s < GlotPress' ), esc_html( $project->name ) ) );
Note: See TracChangeset
for help on using the changeset viewer.