modules: mark new string for translation

This commit is contained in:
Sven Neumann 2012-09-25 22:15:34 +02:00
parent 3084c8be7a
commit 3cb7f05e73
1 changed files with 4 additions and 1 deletions

View File

@ -210,7 +210,10 @@ cdisplay_lcms_profile_get_info (cmsHPROFILE profile,
}
if (! *name)
*name = g_strdup ("(unnamed profile)");
{
/* a color profile without a name */
*name = g_strdup (_("(unnamed profile)"));
}
descSize = cmsGetProfileInfoASCII (profile, cmsInfoManufacturer,
"en", "US", NULL, 0);