@@ -2305,7 +2305,7 @@ _align2string(enum printFormat in)
2305
2305
}
2306
2306
2307
2307
/*
2308
- * Parse entered unicode linestyle. If ok, update *linestyle and return
2308
+ * Parse entered Unicode linestyle. If ok, update *linestyle and return
2309
2309
* true, else return false.
2310
2310
*/
2311
2311
static bool
@@ -2408,7 +2408,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
2408
2408
refresh_utf8format (& (popt -> topt ));
2409
2409
else
2410
2410
{
2411
- psql_error ("\\pset: allowed unicode border linestyles are single, double\n" );
2411
+ psql_error ("\\pset: allowed Unicode border line styles are single, double\n" );
2412
2412
return false;
2413
2413
}
2414
2414
}
@@ -2423,7 +2423,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
2423
2423
refresh_utf8format (& (popt -> topt ));
2424
2424
else
2425
2425
{
2426
- psql_error ("\\pset: allowed unicode column linestyles are single, double\n" );
2426
+ psql_error ("\\pset: allowed Unicode column line styles are single, double\n" );
2427
2427
return false;
2428
2428
}
2429
2429
}
@@ -2438,7 +2438,7 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
2438
2438
refresh_utf8format (& (popt -> topt ));
2439
2439
else
2440
2440
{
2441
- psql_error ("\\pset: allowed unicode header linestyles are single, double\n" );
2441
+ psql_error ("\\pset: allowed Unicode header line styles are single, double\n" );
2442
2442
return false;
2443
2443
}
2444
2444
}
@@ -2748,22 +2748,22 @@ printPsetInfo(const char *param, struct printQueryOpt *popt)
2748
2748
printf (_ ("Tuples only is off.\n" ));
2749
2749
}
2750
2750
2751
- /* unicode style formatting */
2751
+ /* Unicode style formatting */
2752
2752
else if (strcmp (param , "unicode_border_linestyle" ) == 0 )
2753
2753
{
2754
- printf (_ ("Unicode border linestyle is \"%s\".\n" ),
2754
+ printf (_ ("Unicode border line style is \"%s\".\n" ),
2755
2755
_unicode_linestyle2string (popt -> topt .unicode_border_linestyle ));
2756
2756
}
2757
2757
2758
2758
else if (strcmp (param , "unicode_column_linestyle" ) == 0 )
2759
2759
{
2760
- printf (_ ("Unicode column linestyle is \"%s\".\n" ),
2760
+ printf (_ ("Unicode column line style is \"%s\".\n" ),
2761
2761
_unicode_linestyle2string (popt -> topt .unicode_column_linestyle ));
2762
2762
}
2763
2763
2764
2764
else if (strcmp (param , "unicode_header_linestyle" ) == 0 )
2765
2765
{
2766
- printf (_ ("Unicode header linestyle is \"%s\".\n" ),
2766
+ printf (_ ("Unicode header line style is \"%s\".\n" ),
2767
2767
_unicode_linestyle2string (popt -> topt .unicode_header_linestyle ));
2768
2768
}
2769
2769
0 commit comments