Patch by Humdinger:
Updated Haiku apps to use sentence-case. What a huge undertaking... The files where I had to apply the patch manually (for mysterious reasons) have also gotten a whitespace cleanup. I've proof-read everything so hopefully there should be no problems. This should be the final part of #5169. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@35049 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -70,9 +70,9 @@ private:
|
||||
|
||||
bigtime_t interval = kUpdateIntervals[level];
|
||||
if ((interval % 1000) == 0)
|
||||
snprintf(fText, sizeof(fText), "%lld secs", interval / 1000);
|
||||
snprintf(fText, sizeof(fText), "%lld sec.", interval / 1000);
|
||||
else
|
||||
snprintf(fText, sizeof(fText), "%lld msecs", interval);
|
||||
snprintf(fText, sizeof(fText), "%lld ms", interval);
|
||||
|
||||
return fText;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user