Skip to content
This repository has been archived by the owner on Sep 16, 2019. It is now read-only.

Commit

Permalink
Merge pull request #1000 from Aetles/patch-1
Browse files Browse the repository at this point in the history
Make nav menu names translatable
  • Loading branch information
olefredrik authored Jun 19, 2017
2 parents f9bfdb4 + 83f7518 commit 1816517
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions library/navigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
* @since FoundationPress 1.0.0
*/

register_nav_menus(array(
'top-bar-r' => 'Right Top Bar',
'mobile-nav' => 'Mobile',
register_nav_menus( array(
'top-bar-r' => esc_html__( 'Right Top Bar', 'foundationpress' ),
'mobile-nav' => esc_html__( 'Mobile', 'foundationpress' ),
));


Expand Down

0 comments on commit 1816517

Please sign in to comment.