Thunarで時刻が不明に
Posted by momokuri on 2007 6月 04 in モブログ
でも、最新のSVNのコードではこの部分がかわっているので、
あまりがんばるのは楽しくない。
}
else
{
if (diff > 1 && diff < 7)
{
/* Days from last week */
date_format = (date_style == THUNAR_DATE_STYLE_SIMPLE) ? "%A" : _("%A at %X");
}
else
{
/* Any other date */
date_format = (date_style == THUNAR_DATE_STYLE_SIMPLE) ? "%x" : _("%x at %X");
}
/* format the date string accordingly */
return exo_strdup_strftime (date_format, tfile);
}
}
else if (date_style == THUNAR_DATE_STYLE_LONG)
{
/* use long, date(1)-like format string */
return exo_strdup_strftime ("%c", tfile);
}
else /* if (date_style == THUNAR_DATE_STYLE_ISO) */
{
/* use ISO date formatting */
return exo_strdup_strftime ("%Y-%m-%d %H:%M:%S", tfile);
}
}
/* the file_time is invalid */
return g_strdup (_("Unknown"));
}
ページ: 1· 2
This entry was posted by momokuri and filed under モブログ.