summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-09-21 20:06:19 +0200
committerDan McGee <dan@archlinux.org>2011-09-22 17:33:39 +0200
commitca58e326dc8e7d347c8ce77cba58a8ea1a99fb49 (patch)
tree96e2587df93dd52f20f4c18b821a822f94a0bd19
parent69694edd2cd282b513426cced5d885cec35f612e (diff)
downloadpacman-ca58e326dc8e7d347c8ce77cba58a8ea1a99fb49.tar.gz
pacman-ca58e326dc8e7d347c8ce77cba58a8ea1a99fb49.tar.xz
Pull option names out of messages in config parsing
This allows some message reuse, as well as making it clear to translators what *not* to translate. Signed-off-by: Dan McGee <dan@archlinux.org>
-rw-r--r--src/pacman/conf.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/pacman/conf.c b/src/pacman/conf.c
index 54fd5c15..e1079e58 100644
--- a/src/pacman/conf.c
+++ b/src/pacman/conf.c
@@ -310,8 +310,8 @@ static int process_siglevel(alpm_list_t *values, alpm_siglevel_t *storage)
level |= ALPM_SIG_DATABASE_UNKNOWN_OK;
}
} else {
- pm_printf(ALPM_LOG_ERROR, _("invalid value for 'SigLevel' : '%s'\n"),
- original);
+ pm_printf(ALPM_LOG_ERROR, _("invalid value for '%s' : '%s'\n"),
+ "SigLevel", original);
ret = 1;
}
level &= ~ALPM_SIG_USE_DEFAULT;
@@ -320,7 +320,8 @@ static int process_siglevel(alpm_list_t *values, alpm_siglevel_t *storage)
/* ensure we have sig checking ability and are actually turning it on */
if(!(alpm_capabilities() & ALPM_CAPABILITY_SIGNATURES) &&
level & (ALPM_SIG_PACKAGE | ALPM_SIG_DATABASE)) {
- pm_printf(ALPM_LOG_ERROR, _("'SigLevel' option invalid, no signature support\n"));
+ pm_printf(ALPM_LOG_ERROR, _("'%s' option invalid, no signature support\n"),
+ "SigLevel");
ret = 1;
}
@@ -339,8 +340,8 @@ static int process_cleanmethods(alpm_list_t *values) {
} else if(strcmp(value, "KeepCurrent") == 0) {
config->cleanmethod |= PM_CLEAN_KEEPCUR;
} else {
- pm_printf(ALPM_LOG_ERROR, _("invalid value for 'CleanMethod' : '%s'\n"),
- value);
+ pm_printf(ALPM_LOG_ERROR, _("invalid value for '%s' : '%s'\n"),
+ "CleanMethod", value);
return 1;
}
}
@@ -482,8 +483,9 @@ static int _add_mirror(alpm_db_t *db, char *value)
} else {
if(strstr(temp, "$arch")) {
free(temp);
- pm_printf(ALPM_LOG_ERROR, _("The mirror '%s' contains the $arch"
- " variable, but no Architecture is defined.\n"), value);
+ pm_printf(ALPM_LOG_ERROR,
+ _("The mirror '%s' contains the '%s' variable, but no '%s' is defined.\n"),
+ value, "$arch", "Architecture");
return 1;
}
server = temp;