I'm trying to understand WordPress function _x(). According to WordPress website explanation that uses _x() when disambiguation by context. The example is as follows:
if ( false === $commenttxt ) $commenttxt = _x( 'Comment', 'noun' );
if ( false === $trackbacktxt ) $trackbacktxt = __( 'Trackback' );
if ( false === $pingbacktxt ) $pingbacktxt = __( 'Pingback' );
...
// some other place in the code
echo _x('Comment', 'column name');
From my understanding: for "Comment", there are two translations. One is for "noun", another is for "column name". If i am right, then:
1) what is the format of PO file?
2) how to retrieve the translation by using second parameter: "noun" or "column name"?