Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
2ee4efc4
Commit
2ee4efc4
authored
Jul 20, 2014
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Replace "internationalize" with "localize" where appropriate
parent
ddc41fd2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
doc/src/sgml/libpq.sgml
doc/src/sgml/libpq.sgml
+1
-1
src/interfaces/ecpg/ecpglib/misc.c
src/interfaces/ecpg/ecpglib/misc.c
+1
-1
src/interfaces/ecpg/preproc/ecpg.header
src/interfaces/ecpg/preproc/ecpg.header
+1
-1
No files found.
doc/src/sgml/libpq.sgml
View file @
2ee4efc4
...
@@ -6878,7 +6878,7 @@ myEventProc(PGEventId evtId, void *evtInfo, void *passThrough)
...
@@ -6878,7 +6878,7 @@ myEventProc(PGEventId evtId, void *evtInfo, void *passThrough)
<primary><envar>PGLOCALEDIR</envar></primary>
<primary><envar>PGLOCALEDIR</envar></primary>
</indexterm>
</indexterm>
<envar>PGLOCALEDIR</envar> sets the directory containing the
<envar>PGLOCALEDIR</envar> sets the directory containing the
<literal>locale</> files for message
internation
alization.
<literal>locale</> files for message
loc
alization.
</para>
</para>
</listitem>
</listitem>
</itemizedlist>
</itemizedlist>
...
...
src/interfaces/ecpg/ecpglib/misc.c
View file @
2ee4efc4
...
@@ -260,7 +260,7 @@ ecpg_log(const char *format,...)
...
@@ -260,7 +260,7 @@ ecpg_log(const char *format,...)
if
(
!
simple_debug
)
if
(
!
simple_debug
)
return
;
return
;
/*
internation
alize the error message string */
/*
loc
alize the error message string */
intl_format
=
ecpg_gettext
(
format
);
intl_format
=
ecpg_gettext
(
format
);
/*
/*
...
...
src/interfaces/ecpg/preproc/ecpg.header
View file @
2ee4efc4
...
@@ -67,7 +67,7 @@ struct ECPGtype ecpg_query = {ECPGt_char_variable, NULL, NULL, NULL, {NULL}, 0};
...
@@ -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)))
static void __attribute__((format(PG_PRINTF_ATTRIBUTE, 3, 0)))
vmmerror(int error_code, enum errortype type, const char *error, va_list ap)
vmmerror(int error_code, enum errortype type, const char *error, va_list ap)
{
{
/*
internation
alize the error message string */
/*
loc
alize the error message string */
error = _(error);
error = _(error);
fprintf(stderr, "%s:%d: ", input_filename, yylineno);
fprintf(stderr, "%s:%d: ", input_filename, yylineno);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment