[pacman-dev] CVS update of pacman-lib/src/pacman (trans.c)
Date: Tuesday, March 6, 2007 @ 10:00:26 Author: dan Path: /home/cvs-pacman/pacman-lib/src/pacman Modified: trans.c (1.42 -> 1.43) * Fix FS #6534- unclear IgnorePkg message. Sorry translators, had to update a string! You messages may or may not have changed much. ---------+ trans.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) Index: pacman-lib/src/pacman/trans.c diff -u pacman-lib/src/pacman/trans.c:1.42 pacman-lib/src/pacman/trans.c:1.43 --- pacman-lib/src/pacman/trans.c:1.42 Mon Mar 5 17:13:35 2007 +++ pacman-lib/src/pacman/trans.c Tue Mar 6 10:00:26 2007 @@ -171,7 +171,8 @@ *response = 0; } } else if(data2) { - snprintf(str, LOG_STR_LEN, _(":: %s requires %s, but it is in IgnorePkg. Install anyway? [Y/n] "), + /* TODO we take this route based on data2 being not null? WTF */ + snprintf(str, LOG_STR_LEN, _(":: %1$s requires %2$s from IgnorePkg. Install %2$s? [Y/n] "), alpm_pkg_get_name(data1), alpm_pkg_get_name(data2)); *response = yesno(str);
participants (1)
-
Dan McGee