summaryrefslogtreecommitdiff
path: root/macosx/Source/PcsxrMemoryObject.m
diff options
context:
space:
mode:
authorSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2015-01-18 23:50:24 +0000
committerSND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2015-01-18 23:50:24 +0000
commitc26bd438a1c446acc219a65f41df3fdd0689750b (patch)
tree95504d5d5182cca3231bddf0137d9babf7263b96 /macosx/Source/PcsxrMemoryObject.m
parentb110da792704a1d7d1e4553db6382d24baea2d96 (diff)
downloadpcsxr-c26bd438a1c446acc219a65f41df3fdd0689750b.tar.gz
OS X: Localize the multi-save string.
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@92936 e17a0e51-4ae3-4d35-97c3-1a29b211df97
Diffstat (limited to 'macosx/Source/PcsxrMemoryObject.m')
-rw-r--r--macosx/Source/PcsxrMemoryObject.m4
1 files changed, 3 insertions, 1 deletions
diff --git a/macosx/Source/PcsxrMemoryObject.m b/macosx/Source/PcsxrMemoryObject.m
index b0b1816a..f19a460f 100644
--- a/macosx/Source/PcsxrMemoryObject.m
+++ b/macosx/Source/PcsxrMemoryObject.m
@@ -58,6 +58,7 @@ static NSString *MemLabelFree;
static NSString *MemLabelUsed;
static NSString *MemLabelLink;
static NSString *MemLabelEndLink;
+static NSString *MemLabelMultiSave;
+ (void)initialize
{
@@ -69,6 +70,7 @@ static NSString *MemLabelEndLink;
MemLabelUsed = [[mainBundle localizedStringForKey:@"MemCard_Used" value:@"" table:nil] copy];
MemLabelLink = [[mainBundle localizedStringForKey:@"MemCard_Link" value:@"" table:nil] copy];
MemLabelEndLink = [[mainBundle localizedStringForKey:@"MemCard_EndLink" value:@"" table:nil] copy];
+ MemLabelMultiSave = [[mainBundle localizedStringForKey:@"MemCard_MultiSave" value:@"" table:nil] copy];
});
}
@@ -259,7 +261,7 @@ static inline void SetupAttrStr(NSMutableAttributedString *mutStr, NSColor *txtc
SetupAttrStr(tmpStr, [NSColor controlTextColor]);
attribMemLabelUsed = [tmpStr copy];
#else
- tmpStr = [[NSMutableAttributedString alloc] initWithString:@"Multi-save"];
+ tmpStr = [[NSMutableAttributedString alloc] initWithString:MemLabelMultiSave];
SetupAttrStr(tmpStr, [NSColor blueColor]);
attribMemLabelEndLink = [tmpStr copy];