return true;
}
- /* TRANSLATORS: Don't translate the the actual unit names `weeks', `days' etc
- They must remain in their original English. */
msg (SE, _("Unrecognized date unit `%.*s'. "
- "Valid date units are `years', `quarters', `months', "
- "`weeks', `days', `hours', `minutes', and `seconds'."),
- (int) ss_length (name), ss_data (name));
+ "Valid date units are `%s', `%s', `%s', "
+ "`%s', `%s', `%s', `%s', and `%s'."),
+ (int) ss_length (name), ss_data (name),
+ "years", "quarters", "months",
+ "weeks", "days", "hours", "minutes", "seconds");
+
return false;
}
else
{
msg (SE, _("Invalid DATESUM method. "
- "Valid choices are `closest' and `rollover'."));
+ "Valid choices are `%s' and `%s'."), "closest", "rollover");
return false;
}
}
device_type = SETTINGS_DEVICE_LISTING;
else
{
- /* TRANSLATORS: Don't translate the words `terminal' or `listing'. */
- error (0, 0, _("%s is not a valid device type (the choices are "
- "`terminal' and `listing')"), device_string);
+ error (0, 0, _("%s is not a valid device type (the choices are `%s' and `%s')"),
+ device_string, "terminal", "listing");
device_type = default_device_type (file_name);
}
gtk_about_dialog_set_translator_credits
(
GTK_ABOUT_DIALOG (about),
- /* TRANSLATORS: Use this string to list the people who have helped with
- translation to your language. */
+ /* TRANSLATORS: Do not translate this string. Instead, put the names of the people
+ who have helped in the translation. */
_("translator-credits")
);