Skip to content
This repository has been archived by the owner on Jan 31, 2020. It is now read-only.

Commit

Permalink
Fix russian translation rule in getLocaleFormatUnderscoresWithValue m…
Browse files Browse the repository at this point in the history
…ethod
  • Loading branch information
mixdesign committed Dec 11, 2012
1 parent e380504 commit f6da9af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion NSDate+TimeAgo.m
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ -(NSString *)getLocaleFormatUnderscoresWithValue:(double)value
int Y = (int)floor(value) % 10;
if(Y > 4) return @"";
if(Y != 1 && Y < 5) return @"_";
if(Y == 1) return @"";
if(Y == 1) return @"__";
}

// Add more languages here, which are have specific translation rules...
Expand Down

0 comments on commit f6da9af

Please sign in to comment.