Skip to content

Commit

Permalink
Merge pull request #27102 from Night-Pryanik/pgettext-diamond
Browse files Browse the repository at this point in the history
Pgettext diamond
  • Loading branch information
ZhilkinSerg authored Dec 15, 2018
2 parents 090740a + d2235f1 commit c77a01b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/item.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2887,7 +2887,7 @@ std::string item::tname( unsigned int quantity, bool with_prefix ) const
modtext += _( "sawn-off " );
}
if( has_flag( "DIAMOND" ) ) {
modtext += std::string( _( "diamond" ) ) + " ";
modtext += std::string( pgettext( "Adjective, as in diamond katana", "diamond" ) ) + " ";
}

ret.str( "" );
Expand Down

0 comments on commit c77a01b

Please sign in to comment.