(Apple/Android) Rename more 'game'/'emulator' strings

This commit is contained in:
twinaphex 2013-11-26 23:15:05 +01:00
parent d8b5ac7a83
commit fc11d4501d
2 changed files with 6 additions and 6 deletions

View File

@ -36,8 +36,8 @@
<!-- Core Manager Info Fragment --> <!-- Core Manager Info Fragment -->
<string name="core_info_displayNameTitle">Display Name</string> <string name="core_info_displayNameTitle">Display Name</string>
<string name="core_info_internalNameTitle">Internal Name</string> <string name="core_info_internalNameTitle">Internal Name</string>
<string name="core_info_systemNameTitle">Emulated Systems</string> <string name="core_info_systemNameTitle">Description</string>
<string name="core_info_emu_author">Emulator Authors</string> <string name="core_info_emu_author">Author(s)</string>
<string name="core_info_licenseTitle">Core License</string> <string name="core_info_licenseTitle">Core License</string>
<string name="core_info_manufacterer">Manufacturer</string> <string name="core_info_manufacterer">Manufacturer</string>

View File

@ -366,8 +366,8 @@
[RAMenuItemBasic itemWithDescription:@"Choose Core" [RAMenuItemBasic itemWithDescription:@"Choose Core"
action:^{ [weakSelf chooseCoreWithPath:nil]; } action:^{ [weakSelf chooseCoreWithPath:nil]; }
detail:^{ return weakSelf.core ? apple_get_core_display_name(weakSelf.core) : @"Auto Detect"; }], detail:^{ return weakSelf.core ? apple_get_core_display_name(weakSelf.core) : @"Auto Detect"; }],
[RAMenuItemBasic itemWithDescription:@"Load Game" action:^{ [weakSelf loadGame]; }], [RAMenuItemBasic itemWithDescription:@"Load Content" action:^{ [weakSelf loadGame]; }],
[RAMenuItemBasic itemWithDescription:@"Load Game (History)" action:^{ [weakSelf loadHistory]; }], [RAMenuItemBasic itemWithDescription:@"Load Content (History)" action:^{ [weakSelf loadHistory]; }],
[RAMenuItemBasic itemWithDescription:@"Frontend Settings" action:^{ [[RetroArch_iOS get] showSystemSettings]; }] [RAMenuItemBasic itemWithDescription:@"Frontend Settings" action:^{ [[RetroArch_iOS get] showSystemSettings]; }]
] ]
]; ];
@ -924,8 +924,8 @@ static const void* const associated_core_key = &associated_core_key;
RAPauseMenu* __weak weakSelf = self; RAPauseMenu* __weak weakSelf = self;
[self.sections addObject:@[@"Actions", [self.sections addObject:@[@"Actions",
[RAMenuItemBasic itemWithDescription:@"Reset Game" action:^{ [weakSelf performBasicAction:RESET]; }], [RAMenuItemBasic itemWithDescription:@"Reset Content" action:^{ [weakSelf performBasicAction:RESET]; }],
[RAMenuItemBasic itemWithDescription:@"Close Game" action:^{ [weakSelf performBasicAction:QUIT]; }] [RAMenuItemBasic itemWithDescription:@"Close Content" action:^{ [weakSelf performBasicAction:QUIT]; }]
]]; ]];
[self.sections addObject:@[@"States", [self.sections addObject:@[@"States",