mirror of
https://salsa.debian.org/srivasta/make-dfsg.git
synced 2024-12-29 08:09:03 +00:00
Installed the da.po (Danish) translation file.
Fixed some translation string issues.
This commit is contained in:
parent
74f08c639d
commit
9302338304
4 changed files with 1733 additions and 7 deletions
1725
i18n/da.po
Normal file
1725
i18n/da.po
Normal file
File diff suppressed because it is too large
Load diff
10
misc.c
10
misc.c
|
@ -652,7 +652,7 @@ log_access (flavor)
|
|||
but we write this one to stderr because it might be
|
||||
run in a child fork whose stdout is piped. */
|
||||
|
||||
fprintf (stderr, _("%s access: user %lu (real %lu), group %lu (real %lu)\n"),
|
||||
fprintf (stderr, _("%s: user %lu (real %lu), group %lu (real %lu)\n"),
|
||||
flavor, (unsigned long) geteuid (), (unsigned long) getuid (),
|
||||
(unsigned long) getegid (), (unsigned long) getgid ());
|
||||
fflush (stderr);
|
||||
|
@ -673,7 +673,7 @@ init_access ()
|
|||
if (user_uid == -1 || user_gid == -1 || make_uid == -1 || make_gid == -1)
|
||||
pfatal_with_name ("get{e}[gu]id");
|
||||
|
||||
log_access (_("Initialized"));
|
||||
log_access (_("Initialized access"));
|
||||
|
||||
current_access = make;
|
||||
#endif
|
||||
|
@ -752,7 +752,7 @@ user_access ()
|
|||
|
||||
current_access = user;
|
||||
|
||||
log_access ("User");
|
||||
log_access (_("User access"));
|
||||
|
||||
#endif /* GETLOADAVG_PRIVILEGED */
|
||||
}
|
||||
|
@ -800,7 +800,7 @@ make_access ()
|
|||
|
||||
current_access = make;
|
||||
|
||||
log_access ("Make");
|
||||
log_access (_("Make access"));
|
||||
|
||||
#endif /* GETLOADAVG_PRIVILEGED */
|
||||
}
|
||||
|
@ -834,7 +834,7 @@ child_access ()
|
|||
pfatal_with_name ("child_access: setregid");
|
||||
#endif
|
||||
|
||||
log_access ("Child");
|
||||
log_access (_("Child access"));
|
||||
|
||||
#endif /* GETLOADAVG_PRIVILEGED */
|
||||
}
|
||||
|
|
2
rule.c
2
rule.c
|
@ -653,7 +653,7 @@ print_rule_data_base ()
|
|||
register unsigned int rules, terminal;
|
||||
register struct rule *r;
|
||||
|
||||
puts ("\n# Implicit Rules");
|
||||
puts (_("\n# Implicit Rules"));
|
||||
|
||||
rules = terminal = 0;
|
||||
for (r = pattern_rules; r != 0; r = r->next)
|
||||
|
|
|
@ -1080,7 +1080,8 @@ print_variable (v, prefix)
|
|||
fputs ("# ", stdout);
|
||||
fputs (origin, stdout);
|
||||
if (v->fileinfo.filenm)
|
||||
printf (" (from `%s', line %lu)", v->fileinfo.filenm, v->fileinfo.lineno);
|
||||
printf (_(" (from `%s', line %lu)"),
|
||||
v->fileinfo.filenm, v->fileinfo.lineno);
|
||||
putchar ('\n');
|
||||
fputs (prefix, stdout);
|
||||
|
||||
|
|
Loading…
Reference in a new issue