@@ -2412,7 +2412,7 @@ _align2string(enum printFormat in)
2412
2412
}
2413
2413
2414
2414
/*
2415
- * Parse entered unicode linestyle. If ok, update *linestyle and return
2415
+ * Parse entered Unicode linestyle. If ok, update *linestyle and return
2416
2416
* true, else return false.
2417
2417
*/
2418
2418
static bool
@@ -2515,7 +2515,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
2515
2515
refresh_utf8format (& (popt -> topt ));
2516
2516
else
2517
2517
{
2518
- psql_error ("\\pset: allowed unicode border linestyles are single, double\n" );
2518
+ psql_error ("\\pset: allowed Unicode border line styles are single, double\n" );
2519
2519
return false;
2520
2520
}
2521
2521
}
@@ -2530,7 +2530,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
2530
2530
refresh_utf8format (& (popt -> topt ));
2531
2531
else
2532
2532
{
2533
- psql_error ("\\pset: allowed unicode column linestyles are single, double\n" );
2533
+ psql_error ("\\pset: allowed Unicode column line styles are single, double\n" );
2534
2534
return false;
2535
2535
}
2536
2536
}
@@ -2545,7 +2545,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
2545
2545
refresh_utf8format (& (popt -> topt ));
2546
2546
else
2547
2547
{
2548
- psql_error ("\\pset: allowed unicode header linestyles are single, double\n" );
2548
+ psql_error ("\\pset: allowed Unicode header line styles are single, double\n" );
2549
2549
return false;
2550
2550
}
2551
2551
}
@@ -2855,22 +2855,22 @@ printPsetInfo(const char *param, struct printQueryOpt *popt)
2855
2855
printf (_ ("Tuples only is off.\n" ));
2856
2856
}
2857
2857
2858
- /* unicode style formatting */
2858
+ /* Unicode style formatting */
2859
2859
else if (strcmp (param , "unicode_border_linestyle" ) == 0 )
2860
2860
{
2861
- printf (_ ("Unicode border linestyle is \"%s\".\n" ),
2861
+ printf (_ ("Unicode border line style is \"%s\".\n" ),
2862
2862
_unicode_linestyle2string (popt -> topt .unicode_border_linestyle ));
2863
2863
}
2864
2864
2865
2865
else if (strcmp (param , "unicode_column_linestyle" ) == 0 )
2866
2866
{
2867
- printf (_ ("Unicode column linestyle is \"%s\".\n" ),
2867
+ printf (_ ("Unicode column line style is \"%s\".\n" ),
2868
2868
_unicode_linestyle2string (popt -> topt .unicode_column_linestyle ));
2869
2869
}
2870
2870
2871
2871
else if (strcmp (param , "unicode_header_linestyle" ) == 0 )
2872
2872
{
2873
- printf (_ ("Unicode header linestyle is \"%s\".\n" ),
2873
+ printf (_ ("Unicode header line style is \"%s\".\n" ),
2874
2874
_unicode_linestyle2string (popt -> topt .unicode_header_linestyle ));
2875
2875
}
2876
2876
0 commit comments