Replace "internationalize" with "localize" where appropriate
authorPeter Eisentraut <peter_e@gmx.net>
Mon, 21 Jul 2014 01:39:37 +0000 (21:39 -0400)
committerPeter Eisentraut <peter_e@gmx.net>
Mon, 21 Jul 2014 01:39:37 +0000 (21:39 -0400)
doc/src/sgml/libpq.sgml
src/interfaces/ecpg/ecpglib/misc.c
src/interfaces/ecpg/preproc/ecpg.header

index 1961ce58753f26bc91c60377806d836feb0861b6..7887a5ad7e8ba50cdc1b8a5cd6a74f36f6fe2b1c 100644 (file)
@@ -6878,7 +6878,7 @@ myEventProc(PGEventId evtId, void *evtInfo, void *passThrough)
        <primary><envar>PGLOCALEDIR</envar></primary>
       </indexterm>
       <envar>PGLOCALEDIR</envar> sets the directory containing the
-      <literal>locale</> files for message internationalization.
+      <literal>locale</> files for message localization.
      </para>
     </listitem>
    </itemizedlist>
index 9371f7140f446df1dc28cf1d63f630dc472a3fdf..2e622607477732c5c86f2364bc77f709a57e4ad0 100644 (file)
@@ -260,7 +260,7 @@ ecpg_log(const char *format,...)
        if (!simple_debug)
                return;
 
-       /* internationalize the error message string */
+       /* localize the error message string */
        intl_format = ecpg_gettext(format);
 
        /*
index 64e7600a8cbaad25be0988e3f76bc2506d8f5dfc..9c5018c2490b8c45761fa022fdeb1c8ea8bdbe9a 100644 (file)
@@ -67,7 +67,7 @@ struct ECPGtype ecpg_query = {ECPGt_char_variable, NULL, NULL, NULL, {NULL}, 0};
 static void __attribute__((format(PG_PRINTF_ATTRIBUTE, 3, 0)))
 vmmerror(int error_code, enum errortype type, const char *error, va_list ap)
 {
-       /* internationalize the error message string */
+       /* localize the error message string */
        error = _(error);
 
        fprintf(stderr, "%s:%d: ", input_filename, yylineno);