mirror of
https://github.com/transmission/transmission
synced 2025-03-15 16:29:34 +00:00
update French localization
This commit is contained in:
parent
a0221c0818
commit
499d4d5c14
9 changed files with 13584 additions and 11901 deletions
|
@ -576,6 +576,7 @@
|
|||
A2BF078E0B066E0800757C92 /* SpeedLimitToTurtleIconTransformer.h */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.h; name = SpeedLimitToTurtleIconTransformer.h; path = macosx/SpeedLimitToTurtleIconTransformer.h; sourceTree = "<group>"; };
|
||||
A2BF078F0B066E0800757C92 /* SpeedLimitToTurtleIconTransformer.m */ = {isa = PBXFileReference; fileEncoding = 30; lastKnownFileType = sourcecode.c.objc; name = SpeedLimitToTurtleIconTransformer.m; path = macosx/SpeedLimitToTurtleIconTransformer.m; sourceTree = "<group>"; };
|
||||
A2C89D5F0CFCBF57004CC2BC /* ButtonToolbarItem.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = ButtonToolbarItem.m; path = macosx/ButtonToolbarItem.m; sourceTree = "<group>"; };
|
||||
A2CBDED80D993E4500BB22BC /* fr */ = {isa = PBXFileReference; lastKnownFileType = file.xib; name = fr; path = macosx/fr.lproj/AddWindow.xib; sourceTree = "<group>"; };
|
||||
A2D0E0480A54A97C003C72CF /* Bandwidth.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = Bandwidth.png; path = macosx/Images/Bandwidth.png; sourceTree = "<group>"; };
|
||||
A2D22A100D65EED100007D5F /* verify.c */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.c; name = verify.c; path = libtransmission/verify.c; sourceTree = "<group>"; };
|
||||
A2D22A110D65EED100007D5F /* verify.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = verify.h; path = libtransmission/verify.h; sourceTree = "<group>"; };
|
||||
|
@ -1994,6 +1995,7 @@
|
|||
A26AF27D0D2DBDDF00FF7140 /* English */,
|
||||
A2FB719E0D97FC0C0001F331 /* it */,
|
||||
A2AC81D60D987E2D00A2878C /* nl */,
|
||||
A2CBDED80D993E4500BB22BC /* fr */,
|
||||
);
|
||||
name = AddWindow.xib;
|
||||
sourceTree = "<group>";
|
||||
|
|
|
@ -120,7 +120,9 @@ typedef enum
|
|||
else if ([identifier isEqualToString: @"Priority"])
|
||||
{
|
||||
[cell setRepresentedObject: item];
|
||||
[(FilePriorityCell *)cell setHovered: [NSApp isOnLeopardOrBetter] ? [fOutline hoveredRow] == [fOutline rowForItem: item] : NO];
|
||||
|
||||
int hoveredRow = [fOutline hoveredRow];
|
||||
[(FilePriorityCell *)cell setHovered: hoveredRow != -1 && hoveredRow == [fOutline rowForItem: item]];
|
||||
}
|
||||
else;
|
||||
}
|
||||
|
|
|
@ -139,7 +139,7 @@
|
|||
if ((row = [(NSDictionary *)[event userData] objectForKey: @"Row"]))
|
||||
{
|
||||
fMouseRow = [row intValue];
|
||||
[self setNeedsDisplayInRect: [self rectOfRow: fMouseRow]];
|
||||
[self setNeedsDisplayInRect: [self frameOfCellAtColumn: [self columnWithIdentifier: @"Priority"] row: fMouseRow]];
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -148,7 +148,7 @@
|
|||
NSNumber * row;
|
||||
if ((row = [(NSDictionary *)[event userData] objectForKey: @"Row"]))
|
||||
{
|
||||
[self setNeedsDisplayInRect: [self rectOfRow: [row intValue]]];
|
||||
[self setNeedsDisplayInRect: [self frameOfCellAtColumn: [self columnWithIdentifier: @"Priority"] row: [row intValue]]];
|
||||
fMouseRow = -1;
|
||||
}
|
||||
}
|
||||
|
|
1899
macosx/fr.lproj/AddWindow.xib
Normal file
1899
macosx/fr.lproj/AddWindow.xib
Normal file
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Binary file not shown.
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
Loading…
Add table
Reference in a new issue