]> granicus.if.org Git - postgresql/commitdiff
Add translator comments to module names
authorAlvaro Herrera <alvherre@alvh.no-ip.org>
Wed, 25 Jul 2012 04:02:49 +0000 (00:02 -0400)
committerAlvaro Herrera <alvherre@alvh.no-ip.org>
Wed, 25 Jul 2012 04:02:49 +0000 (00:02 -0400)
src/bin/pg_dump/compress_io.c
src/bin/pg_dump/pg_backup_archiver.c
src/bin/pg_dump/pg_backup_custom.c
src/bin/pg_dump/pg_backup_db.c
src/bin/pg_dump/pg_backup_directory.c
src/bin/pg_dump/pg_backup_tar.c
src/bin/pg_dump/pg_dump_sort.c

index e192c7247767d4873a289fb0757438cebc6657f0..dea058899bf9766f47831b7a09ba2b6ac1809091 100644 (file)
@@ -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,
index 7f2bc070ade3b8904d58d4c412ba1703f59ddd9f..c7ef9a6fd33582f26b830de9059bcfcb14b19338 100644 (file)
@@ -112,6 +112,7 @@ typedef struct _outputContext
        int                     gzOut;
 } OutputContext;
 
+/* translator: this is a module name */
 static const char *modulename = gettext_noop("archiver");
 
 
index 204309d6ad63db65dd9e6f4b1525958de0c0686a..f7dc5be8e5a2c2457615ffff71df02a1a09a878d 100644 (file)
@@ -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");
 
 
index d912aaf77f309ec8308c6796085c40894a17d394..c295fc5ddd2078978f9851ff554fadc7aaad456d 100644 (file)
@@ -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);
index 494dd075295256614f62060de8043a88c898af6d..a2be6ac000b71e6a144467d2ecf3c2c20793be00 100644 (file)
@@ -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 */
index 9b581917e1e39a509ec4bd69f9c429abeba72fb5..ced5c13321e9ddaabb98ce275ec2b1e88b90f813 100644 (file)
@@ -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);
index 5318e7add89b62283eb39e1e4bc453707dd03f0e..cccc1e0646ec5395b4a6b913b69a6c4b1bf0bff6 100644 (file)
@@ -17,6 +17,7 @@
 #include "dumputils.h"
 #include "dumpmem.h"
 
+/* translator: this is a module name */
 static const char *modulename = gettext_noop("sorter");
 
 /*