aboutsummaryrefslogtreecommitdiff
path: root/src/null.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org.ua>2009-02-23 10:03:37 +0200
committerSergey Poznyakoff <gray@gnu.org.ua>2009-02-23 10:03:37 +0200
commit337a06f32fb530e0e0884fef2f5f630cca9911a1 (patch)
treed0687ccd3e9ff527d9c5613fd052cbe0f79bb40a /src/null.c
parent7543ff5973d1afe75b0f4226a3a02cc8d375ad3e (diff)
downloadwydawca-337a06f32fb530e0e0884fef2f5f630cca9911a1.tar.gz
wydawca-337a06f32fb530e0e0884fef2f5f630cca9911a1.tar.bz2
Add missing i18n markers
Diffstat (limited to 'src/null.c')
-rw-r--r--src/null.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/null.c b/src/null.c
index 5ec85f3..7ead150 100644
--- a/src/null.c
+++ b/src/null.c
@@ -22,12 +22,12 @@ null_move_file (struct file_triplet *trp, struct spool *spool,
{
const char *file_name = trp->file[file_id].name;
if (debug_level)
- logmsg (LOG_DEBUG, "%s: installing file `%s/%s'",
+ logmsg (LOG_DEBUG, _("%s: installing file `%s/%s'"),
spool->url, reldir, file_name);
UPDATE_STATS (STAT_UPLOADS);
if (unlink (file_name))
{
- logmsg (LOG_ERR, "Cannot unlink %s: %s",
+ logmsg (LOG_ERR, _("cannot unlink %s: %s"),
file_name, strerror (errno));
return 1;
}
@@ -39,7 +39,7 @@ null_archive_file (struct file_triplet *trp, struct spool *spool,
const char *file_name, const char *reldir)
{
if (debug_level)
- logmsg (LOG_DEBUG, "%s: archiving `%s'", spool->url, file_name);
+ logmsg (LOG_DEBUG, _("%s: archiving `%s'"), spool->url, file_name);
UPDATE_STATS (STAT_ARCHIVES);
return 0;
}
@@ -50,7 +50,7 @@ null_symlink_file (struct file_triplet *trp, struct spool *spool,
const char *wanted_src, const char *wanted_dst)
{
if (debug_level)
- logmsg (LOG_DEBUG, "%s: symlinking `%s' to `%s'",
+ logmsg (LOG_DEBUG, _("%s: symlinking `%s' to `%s'"),
spool->url, wanted_src, wanted_dst);
UPDATE_STATS (STAT_SYMLINKS);
return 0;
@@ -61,7 +61,7 @@ null_rmsymlink_file (struct file_triplet *trp, struct spool *spool,
const char *reldir, const char *file_name)
{
if (debug_level)
- logmsg (LOG_DEBUG, "%s: removing symlink `%s/%s'",
+ logmsg (LOG_DEBUG, _("%s: removing symlink `%s/%s'"),
spool->url, reldir, file_name);
UPDATE_STATS (STAT_RMSYMLINKS);
return 0;

Return to:

Send suggestions and report system problems to the System administrator.