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
58f17dcf
Commit
58f17dcf
authored
Jul 25, 2012
by
Alvaro Herrera
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add translator comments to module names
parent
d7b47e51
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
7 additions
and
0 deletions
+7
-0
src/bin/pg_dump/compress_io.c
src/bin/pg_dump/compress_io.c
+1
-0
src/bin/pg_dump/pg_backup_archiver.c
src/bin/pg_dump/pg_backup_archiver.c
+1
-0
src/bin/pg_dump/pg_backup_custom.c
src/bin/pg_dump/pg_backup_custom.c
+1
-0
src/bin/pg_dump/pg_backup_db.c
src/bin/pg_dump/pg_backup_db.c
+1
-0
src/bin/pg_dump/pg_backup_directory.c
src/bin/pg_dump/pg_backup_directory.c
+1
-0
src/bin/pg_dump/pg_backup_tar.c
src/bin/pg_dump/pg_backup_tar.c
+1
-0
src/bin/pg_dump/pg_dump_sort.c
src/bin/pg_dump/pg_dump_sort.c
+1
-0
No files found.
src/bin/pg_dump/compress_io.c
View file @
58f17dcf
...
...
@@ -74,6 +74,7 @@ struct CompressorState
#endif
};
/* translator: this is a module name */
static
const
char
*
modulename
=
gettext_noop
(
"compress_io"
);
static
void
ParseCompressionOption
(
int
compression
,
CompressionAlgorithm
*
alg
,
...
...
src/bin/pg_dump/pg_backup_archiver.c
View file @
58f17dcf
...
...
@@ -112,6 +112,7 @@ typedef struct _outputContext
int
gzOut
;
}
OutputContext
;
/* translator: this is a module name */
static
const
char
*
modulename
=
gettext_noop
(
"archiver"
);
...
...
src/bin/pg_dump/pg_backup_custom.c
View file @
58f17dcf
...
...
@@ -85,6 +85,7 @@ static pgoff_t _getFilePos(ArchiveHandle *AH, lclContext *ctx);
static
size_t
_CustomWriteFunc
(
ArchiveHandle
*
AH
,
const
char
*
buf
,
size_t
len
);
static
size_t
_CustomReadFunc
(
ArchiveHandle
*
AH
,
char
**
buf
,
size_t
*
buflen
);
/* translator: this is a module name */
static
const
char
*
modulename
=
gettext_noop
(
"custom archiver"
);
...
...
src/bin/pg_dump/pg_backup_db.c
View file @
58f17dcf
...
...
@@ -23,6 +23,7 @@
#define DB_MAX_ERR_STMT 128
/* translator: this is a module name */
static
const
char
*
modulename
=
gettext_noop
(
"archiver (db)"
);
static
void
_check_database_version
(
ArchiveHandle
*
AH
);
...
...
src/bin/pg_dump/pg_backup_directory.c
View file @
58f17dcf
...
...
@@ -58,6 +58,7 @@ typedef struct
char
*
filename
;
/* filename excluding the directory (basename) */
}
lclTocEntry
;
/* translator: this is a module name */
static
const
char
*
modulename
=
gettext_noop
(
"directory archiver"
);
/* prototypes for private functions */
...
...
src/bin/pg_dump/pg_backup_tar.c
View file @
58f17dcf
...
...
@@ -101,6 +101,7 @@ typedef struct
char
*
filename
;
}
lclTocEntry
;
/* translator: this is a module name */
static
const
char
*
modulename
=
gettext_noop
(
"tar archiver"
);
static
void
_LoadBlobs
(
ArchiveHandle
*
AH
,
RestoreOptions
*
ropt
);
...
...
src/bin/pg_dump/pg_dump_sort.c
View file @
58f17dcf
...
...
@@ -17,6 +17,7 @@
#include "dumputils.h"
#include "dumpmem.h"
/* translator: this is a module name */
static
const
char
*
modulename
=
gettext_noop
(
"sorter"
);
/*
...
...
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