mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Change "Challenge Mode" to "Hardcore Mode", according to RetroAchievements guidelines
This commit is contained in:
parent
f6dcf6e834
commit
b629c99dbf
50 changed files with 233 additions and 229 deletions
|
@ -362,10 +362,10 @@ static int FrameTimingLimit() {
|
|||
}
|
||||
};
|
||||
|
||||
// Note: Fast-forward is OK in challenge mode.
|
||||
// Note: Fast-forward is OK in hardcore mode.
|
||||
if (PSP_CoreParameter().fastForward)
|
||||
return 0;
|
||||
// Can't slow down in challenge mode.
|
||||
// Can't slow down in hardcore mode.
|
||||
if (PSP_CoreParameter().fpsLimit == FPSLimit::CUSTOM1)
|
||||
return fixRate(g_Config.iFpsLimit1);
|
||||
if (PSP_CoreParameter().fpsLimit == FPSLimit::CUSTOM2)
|
||||
|
|
|
@ -133,7 +133,7 @@ bool WarnUserIfChallengeModeActive(bool isSaveStateAction, const char *message)
|
|||
const char *showMessage = message;
|
||||
if (!message) {
|
||||
auto ac = GetI18NCategory(I18NCat::ACHIEVEMENTS);
|
||||
showMessage = ac->T("This feature is not available in Challenge Mode");
|
||||
showMessage = ac->T("This feature is not available in Hardcore Mode");
|
||||
}
|
||||
|
||||
g_OSD.Show(OSDType::MESSAGE_WARNING, showMessage, "", g_RAImageID, 3.0f);
|
||||
|
@ -237,7 +237,7 @@ static void event_handler_callback(const rc_client_event_t *event, rc_client_t *
|
|||
{
|
||||
// TODO: Do some zany fireworks!
|
||||
|
||||
// All achievements for the game have been earned. The handler should notify the player that the game was completed or mastered, depending on challenge mode.
|
||||
// All achievements for the game have been earned. The handler should notify the player that the game was completed or mastered, depending on mode, hardcore or not.
|
||||
auto ac = GetI18NCategory(I18NCat::ACHIEVEMENTS);
|
||||
|
||||
const rc_client_game_t *gameInfo = rc_client_get_game_info(g_rcClient);
|
||||
|
@ -342,7 +342,7 @@ static void event_handler_callback(const rc_client_event_t *event, rc_client_t *
|
|||
break;
|
||||
case RC_CLIENT_EVENT_RESET:
|
||||
WARN_LOG(ACHIEVEMENTS, "Resetting game due to achievement setting change!");
|
||||
// Challenge mode was enabled, or something else that forces a game reset.
|
||||
// Hardcore mode was enabled, or something else that forces a game reset.
|
||||
System_PostUIMessage(UIMessage::REQUEST_GAME_RESET);
|
||||
break;
|
||||
case RC_CLIENT_EVENT_SERVER_ERROR:
|
||||
|
@ -732,7 +732,7 @@ std::string GetGameAchievementSummary() {
|
|||
summary.points_unlocked, summary.points_core);
|
||||
if (ChallengeModeActive()) {
|
||||
summaryString.append("\n");
|
||||
summaryString.append(ac->T("Challenge Mode"));
|
||||
summaryString.append(ac->T("Hardcore Mode"));
|
||||
}
|
||||
if (EncoreModeActive()) {
|
||||
summaryString.append("\n");
|
||||
|
|
|
@ -72,9 +72,9 @@ bool ChallengeModeActive();
|
|||
|
||||
// Same as ChallengeModeActive but comes with a convenient user message. Don't use for every-frame checks or UI enablement,
|
||||
// only for shortcut keys and commands. You should look up the message in I18NCat::ACHIEVEMENTS.
|
||||
// If no message is specified, a standard "This feature is not available in Challenge Mode" message will be shown.
|
||||
// Also returns true if challenge mode is active.
|
||||
// Specify isSaveAction so we can still permit saves (but not loads) in challenge mode if that option is enabled.
|
||||
// If no message is specified, a standard "This feature is not available in Hardcore Mode" message will be shown.
|
||||
// Also returns true if hardcore mode is active.
|
||||
// Specify isSaveAction so we can still permit saves (but not loads) in hardcore mode if that option is enabled.
|
||||
bool WarnUserIfChallengeModeActive(bool isSaveStateAction, const char *message = nullptr);
|
||||
|
||||
// The new API is so much nicer that we can use it directly instead of wrapping it. So let's expose the client.
|
||||
|
|
|
@ -401,7 +401,7 @@ namespace SaveState
|
|||
{
|
||||
if (Achievements::ChallengeModeActive()) {
|
||||
if (g_Config.bAchievementsSaveStateInChallengeMode && (op.type == SaveState::SAVESTATE_SAVE) || (op.type == SAVESTATE_SAVE_SCREENSHOT)) {
|
||||
// We allow saving in challenge mode if this setting is on.
|
||||
// We allow saving in hardcore mode if this setting is on.
|
||||
} else {
|
||||
// Operation not allowed
|
||||
return;
|
||||
|
|
|
@ -369,7 +369,7 @@ void EmuScreen::bootComplete() {
|
|||
|
||||
NOTICE_LOG(BOOT, "Booted %s...", PSP_CoreParameter().fileToStart.c_str());
|
||||
if (!Achievements::ChallengeModeActive()) {
|
||||
// Don't auto-load savestates in challenge mode.
|
||||
// Don't auto-load savestates in hardcore mode.
|
||||
autoLoad();
|
||||
}
|
||||
|
||||
|
|
|
@ -344,6 +344,10 @@ void GamePauseScreen::CreateViews() {
|
|||
leftColumnItems->Add(new AchievementView(achievement));
|
||||
}
|
||||
}
|
||||
|
||||
// And tack on an explanation for why savestate options are not available.
|
||||
const char *notAvailable = ac->T("Save states not available in Hardcore Mode");
|
||||
leftColumnItems->Add(new NoticeView(NoticeLevel::INFO, notAvailable, ""));
|
||||
}
|
||||
|
||||
ViewGroup *rightColumn = new ScrollView(ORIENT_VERTICAL, new LinearLayoutParams(vertical ? 200 : 300, FILL_PARENT, actionMenuMargins));
|
||||
|
|
|
@ -338,7 +338,7 @@ void RetroAchievementsSettingsScreen::CreateAccountTab(UI::ViewGroup *viewGroup)
|
|||
RecreateViews();
|
||||
return UI::EVENT_DONE;
|
||||
});
|
||||
viewGroup->Add(new CheckBox(&g_Config.bAchievementsChallengeMode, ac->T("Challenge Mode (no savestates)")))->SetEnabledPtr(&g_Config.bAchievementsEnable);
|
||||
viewGroup->Add(new CheckBox(&g_Config.bAchievementsChallengeMode, ac->T("Hardcore Mode (no savestates)")))->SetEnabledPtr(&g_Config.bAchievementsEnable);
|
||||
viewGroup->Add(new CheckBox(&g_Config.bAchievementsSoundEffects, ac->T("Sound Effects")))->SetEnabledPtr(&g_Config.bAchievementsEnable); // not yet implemented
|
||||
|
||||
viewGroup->Add(new ItemHeader(di->T("Links")));
|
||||
|
@ -380,7 +380,7 @@ void RetroAchievementsSettingsScreen::CreateDeveloperToolsTab(UI::ViewGroup *vie
|
|||
viewGroup->Add(new CheckBox(&g_Config.bAchievementsEncoreMode, ac->T("Encore Mode")))->SetEnabledPtr(&g_Config.bAchievementsEnable);
|
||||
viewGroup->Add(new CheckBox(&g_Config.bAchievementsUnofficial, ac->T("Unofficial achievements")))->SetEnabledPtr(&g_Config.bAchievementsEnable);
|
||||
viewGroup->Add(new CheckBox(&g_Config.bAchievementsLogBadMemReads, ac->T("Log bad memory accesses")))->SetEnabledPtr(&g_Config.bAchievementsEnable);
|
||||
viewGroup->Add(new CheckBox(&g_Config.bAchievementsSaveStateInChallengeMode, ac->T("Allow Save State in Challenge Mode (but not Load State)")))->SetEnabledPtr(&g_Config.bAchievementsEnable);
|
||||
viewGroup->Add(new CheckBox(&g_Config.bAchievementsSaveStateInChallengeMode, ac->T("Allow Save State in Hardcore Mode (but not Load State)")))->SetEnabledPtr(&g_Config.bAchievementsEnable);
|
||||
}
|
||||
|
||||
void MeasureAchievement(const UIContext &dc, const rc_client_achievement_t *achievement, AchievementRenderStyle style, float *w, float *h) {
|
||||
|
@ -439,7 +439,7 @@ void RenderAchievement(UIContext &dc, const rc_client_achievement_t *achievement
|
|||
|
||||
if (!achievement->unlocked && !hasFocus) {
|
||||
// Make the background color gray.
|
||||
// TODO: Different colors in challenge mode, or even in the "re-take achievements" mode when we add that?
|
||||
// TODO: Different colors in hardcore mode, or even in the "re-take achievements" mode when we add that?
|
||||
background.color = (background.color & 0xFF000000) | 0x706060;
|
||||
}
|
||||
|
||||
|
|
|
@ -17,13 +17,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -31,6 +29,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -51,13 +51,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -33,12 +33,10 @@ Achievements = Achievements
|
|||
Achievements enabled = Achievements enabled
|
||||
Achievements are disabled = Achievements are disabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -46,6 +44,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -66,14 +66,14 @@ Register on www.retroachievements.org = Register on www.retroachievements.org
|
|||
RetroAchievements are not available for this game = RetroAchievements are not available for this game
|
||||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Logros
|
|||
Achievements are disabled = Los logros están desactivados
|
||||
Achievements enabled = Los logros están activados
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Alrededor mio
|
||||
Can't log in to RetroAchievements right now = No se pudo iniciar sesión a RetroAchievements en estos momentos
|
||||
Challenge indicator = Indicador de desafio
|
||||
Challenge Mode = Modo Desafío
|
||||
Challenge Mode (no savestates) = Modo Desafío (Sin estados)
|
||||
Contacting RetroAchievements server... = Contactando al servidor de RetroAchievements...
|
||||
Customize = Customizar
|
||||
Earned = Has obtenido %1 de %2 logros y %3 de %4 puntos
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Modo Encore
|
|||
Failed logging in to RetroAchievements = No se pudo iniciar sesión a RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Modo Desafío (Sin estados)
|
||||
Hardcore Mode = Modo Desafío
|
||||
How to use RetroAchievements = Como usar RetroAchievements
|
||||
In Encore mode - listings may be wrong below = En el modo Encore - las listas de abajo pueden estar equivocadas
|
||||
Leaderboard attempt started or failed = Intento de leaderboard intentado o fracasado
|
||||
|
@ -42,14 +42,14 @@ Register on www.retroachievements.org = Registrate en www.retroachievements.org
|
|||
RetroAchievements are not available for this game = RetroAchievements no está disponible para este juego
|
||||
RetroAchievements website = Página web de RetroAchievements
|
||||
Rich Presence = Rich Presence
|
||||
Save states not available in Challenge Mode = Los estados no están disponibles en el modo desafío
|
||||
Save state loaded without achievement data = Estado guardado sin información de los logros
|
||||
Save states not available in Hardcore Mode = Los estados no están disponibles en el modo desafío
|
||||
Sound Effects = Efectos de sonido
|
||||
Statistics = Estadísticas
|
||||
Submitted %1 for %2 = Se subió %1 para %2
|
||||
Syncing achievements data... = Sincronizando información de logros...
|
||||
Test Mode = Modo prueba
|
||||
This feature is not available in Challenge Mode = Esta opción no está disponible en el modo desafío
|
||||
This feature is not available in Hardcore Mode = Esta opción no está disponible en el modo desafío
|
||||
This game has no achievements = Este juego no tiene logros
|
||||
Top players = Top jugadores
|
||||
Unlocked achievements = Logros desbloqueados
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Logros
|
|||
Achievements are disabled = Los logros están desactivados
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = No se pudo iniciar sesión a RetroAchievements
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Modo Desafío
|
||||
Challenge Mode (no savestates) = Modo Desafío (Sin estados)
|
||||
Contacting RetroAchievements server... = Contactando al servidor de RetroAchievements...
|
||||
Customize = Customizar
|
||||
Earned = Has obtenido %1 de %2 logros y %3 de %4 puntos
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Modo Encore
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Modo Desafío (Sin estados)
|
||||
Hardcore Mode = Modo Desafío
|
||||
How to use RetroAchievements = Como usar RetroAchievements
|
||||
In Encore mode - listings may be wrong below = En el modo Encore - las listas de abajo pueden estar equivocadas
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -42,14 +42,14 @@ Register on www.retroachievements.org = Registrate en www.retroachievements.org
|
|||
RetroAchievements are not available for this game = RetroAchievements no está disponible para este juego
|
||||
RetroAchievements website = Página web de RetroAchievements
|
||||
Rich Presence = Rich Presence
|
||||
Save states not available in Challenge Mode = Los estados no están disponibles en el modo desafío
|
||||
Save state loaded without achievement data = Estado guardado sin información de los logros
|
||||
Save states not available in Hardcore Mode = Los estados no están disponibles en el modo desafío
|
||||
Sound Effects = Efectos de sonido
|
||||
Statistics = Estadísticas
|
||||
Submitted %1 for %2 = Se subió %1 para %2
|
||||
Syncing achievements data... = Sincronizando información de logros...
|
||||
Test Mode = Modo prueba
|
||||
This feature is not available in Challenge Mode = Esta opción no está disponible en el modo desafío
|
||||
This feature is not available in Hardcore Mode = Esta opción no está disponible en el modo desafío
|
||||
This game has no achievements = Este juego no tiene logros
|
||||
Top players = Top players
|
||||
Unlocked achievements = Logros desbloqueados
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Saavutukset
|
|||
Achievements are disabled = Saavutukset ovat pois käytöstä
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = RetroAchievements:iin ei voida kirjautua juuri nyt
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Haastetila
|
||||
Challenge Mode (no savestates) = Haastetila (ei tilatallennuksia)
|
||||
Contacting RetroAchievements server... = Yhdistetään RetroAchievements:in palvelimelle...
|
||||
Customize = Mukauta
|
||||
Earned = Olet ansainnut %1/%2 saavutusta, ja %3/%4 pistettä
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Haastetila (ei tilatallennuksia)
|
||||
Hardcore Mode = Haastetila
|
||||
How to use RetroAchievements = Kuinka käyttää RetroAchievements:ia
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements eivät ole
|
|||
RetroAchievements website = RetroAchievements verkkosivu
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Tilatallennus ladattu, ilman saavutuksen tietoja
|
||||
Save states not available in Challenge Mode = Tilatallennukset eivät ole käytössä haastetilassa
|
||||
Save states not available in Hardcore Mode = Tilatallennukset eivät ole käytössä haastetilassa
|
||||
Sound Effects = Äänimerkit
|
||||
Statistics = Tilastot
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Synkoronoidaan saavutusten tietoja...
|
||||
Test Mode = Testitila
|
||||
This feature is not available in Challenge Mode = Tämä ominaisuus ei ole käytettävissä haastetilassa
|
||||
This feature is not available in Hardcore Mode = Tämä ominaisuus ei ole käytettävissä haastetilassa
|
||||
This game has no achievements = Tällä pelillä ei ole saavutuksia
|
||||
Top players = Top players
|
||||
Unlocked achievements = Avatut saavutukset
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,12 +9,10 @@ Achievements = Obiettivi
|
|||
Achievements enabled = Obiettivi abilitati
|
||||
Achievements are disabled = Gli obiettivi sono disabilitati
|
||||
Achievements with active challenges = Obiettivi con sfide attive
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Obiettivi quasi completati
|
||||
Can't log in to RetroAchievements right now = Impossibile accedere a RetroAchievements in questo momento
|
||||
Challenge indicator = Indicatore sfida
|
||||
Challenge Mode = Modalità Sfida
|
||||
Challenge Mode (no savestates) = Modalità Sfida (senza stati salvati)
|
||||
Contacting RetroAchievements server... = Contatto con il server di RetroAchievements in corso...
|
||||
Customize = Personalizza
|
||||
Earned = Hai sbloccato %1 su %2 obiettivi, e guadagnato %3 su %4 punti
|
||||
|
@ -22,6 +20,8 @@ Encore Mode = Modalità Encore
|
|||
Failed logging in to RetroAchievements = Accesso a RetroAchievements non riuscito
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Connessione a RetroAchievements non riuscita. Gli obiettivi non verranno sbloccati.
|
||||
Failed to identify game. Achievements will not unlock. = Identificazione del gioco non riuscita. Gli obiettivi non verranno sbloccati.
|
||||
Hardcore Mode (no savestates) = Modalità Sfida (senza stati salvati)
|
||||
Hardcore Mode = Modalità Sfida
|
||||
How to use RetroAchievements = Come usare RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In modalità Encore - le voci qui sotto potrebbero essere errate
|
||||
Leaderboard attempt started or failed = Tentativo di classifica iniziato o fallito
|
||||
|
@ -42,14 +42,14 @@ Register on www.retroachievements.org = Registrati su www.retroachievements.org
|
|||
RetroAchievements are not available for this game = I RetroAchievements non sono disponibili per questo gioco
|
||||
RetroAchievements website = Sito web di RetroAchievements
|
||||
Rich Presence = Rich Presence
|
||||
Save states not available in Challenge Mode = Stati salvati non disponibili in Modalità Sfida
|
||||
Save state loaded without achievement data = Stato salvato caricato senza dati degli obiettivi
|
||||
Save states not available in Hardcore Mode = Stati salvati non disponibili in Modalità Sfida
|
||||
Sound Effects = Effetti Sonori
|
||||
Statistics = Statistiche
|
||||
Submitted %1 for %2 = Inviato %1 per %2
|
||||
Syncing achievements data... = Sincronizzazione dati obiettivi in corso...
|
||||
Test Mode = Modalità Test
|
||||
This feature is not available in Challenge Mode = Questa funzione non è disponibile in Modalità Sfida
|
||||
This feature is not available in Hardcore Mode = Questa funzione non è disponibile in Modalità Sfida
|
||||
This game has no achievements = Questo gioco non ha obiettivi
|
||||
Top players = Migliori giocatori
|
||||
Unlocked achievements = Obiettivi sbloccati
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = 実績
|
|||
Achievements are disabled = 実績は無効化されています
|
||||
Achievements enabled = 実績を有効化
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = もう少しで達成する実績
|
||||
Around me = 自分の近く
|
||||
Can't log in to RetroAchievements right now = 現在RetroAchievementsにログインできません。
|
||||
Challenge indicator = チャレンジ目標
|
||||
Challenge Mode = チャレンジモード
|
||||
Challenge Mode (no savestates) = チャレンジモード (セーブステートオフ)
|
||||
Contacting RetroAchievements server... = RetroAchievementsのサーバーに接続しています...
|
||||
Customize = カスタマイズ
|
||||
Earned = %2個中%1つの実績を解除し、%4ポイント中%3ポイントを得ています
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encoreモード
|
|||
Failed logging in to RetroAchievements = RetroAchievementsのログインに失敗しました
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = RetroAchievementsへの接続に失敗しました。実績はアンロックされません。
|
||||
Failed to identify game. Achievements will not unlock. = ゲームの識別に失敗しました。実績はアンロックされません。
|
||||
Hardcore Mode (no savestates) = チャレンジモード (セーブステートオフ)
|
||||
Hardcore Mode = チャレンジモード
|
||||
How to use RetroAchievements = RetroAchievementsの使い方
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievementsはこの
|
|||
RetroAchievements website = RetroAchievementsウェブサイト
|
||||
Rich Presence = リッチプリゼンス
|
||||
Save state loaded without achievement data = 実績データなしでセーブステートが読み込まれました
|
||||
Save states not available in Challenge Mode = チャレンジ・モードではセーブ・ステートを使用できません
|
||||
Save states not available in Hardcore Mode = チャレンジ・モードではセーブ・ステートを使用できません
|
||||
Sound Effects = サウンドエフェクト
|
||||
Statistics = 統計
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = 実績データの同期中...
|
||||
Test Mode = テストモード
|
||||
This feature is not available in Challenge Mode = この機能はチャレンジモードでは使用できません
|
||||
This feature is not available in Hardcore Mode = この機能はチャレンジモードでは使用できません
|
||||
This game has no achievements = このゲームは実績機能がありません
|
||||
Top players = トッププレイヤー
|
||||
Unlocked achievements = 達成していない実績
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,12 +9,10 @@ Achievements = 성과
|
|||
Achievements enabled = 성과 활성화
|
||||
Achievements are disabled = 성과 비활성화
|
||||
Achievements with active challenges = 도전 과제가 활성화된 성과
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = 거의 완료된 성과
|
||||
Can't log in to RetroAchievements right now = 지금 RetroAchievements에 로그인할 수 없음
|
||||
Challenge indicator = 도전 표시기
|
||||
Challenge Mode = 도전 모드
|
||||
Challenge Mode (no savestates) = 도전 모드 (저장 상태 없음)
|
||||
Contacting RetroAchievements server... = RetroAchievements 서버에 연결 중...
|
||||
Customize = 맞춤 설정
|
||||
Earned = %1 의 %2 성과 및 %3 의 %4 포인트 획득
|
||||
|
@ -22,6 +20,8 @@ Encore Mode = 앙코르 모드
|
|||
Failed logging in to RetroAchievements = RetroAchievements에 로그인 실패
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = RetroAchievements에 연결하지 못했습니다. 성과가 잠금 해제되지 않습니다.
|
||||
Failed to identify game. Achievements will not unlock. = 게임을 식별하지 못했습니다. 성과가 잠금 해제되지 않습니다.
|
||||
Hardcore Mode (no savestates) = 도전 모드 (저장 상태 없음)
|
||||
Hardcore Mode = 도전 모드
|
||||
How to use RetroAchievements = RetroAchievements 사용 방법
|
||||
In Encore mode - listings may be wrong below = 앙코르 모드 - 아래 목록이 잘못 표시될 수 있음
|
||||
Leaderboard attempt started or failed = 순위표 시도 시작 또는 실패
|
||||
|
@ -42,14 +42,14 @@ Register on www.retroachievements.org = www.retroachievements.org에 등록
|
|||
RetroAchievements are not available for this game = 이 게임에서는 RetroAchievements 사용할 수 없음
|
||||
RetroAchievements website = RetroAchievements 웹사이트
|
||||
Rich Presence = 활동 상태
|
||||
Save states not available in Challenge Mode = 도전 모드에서 사용할 수 없는 저장 상태
|
||||
Save state loaded without achievement data = 성과 데이터 없이 로드된 상태 저장
|
||||
Save states not available in Hardcore Mode = 도전 모드에서 사용할 수 없는 저장 상태
|
||||
Sound Effects = 사운드 효과
|
||||
Statistics = 통계
|
||||
Submitted %1 for %2 = 2에 %1을(를) 제출함
|
||||
Syncing achievements data... = 성과 데이터 동기화 중...
|
||||
Test Mode = 테스트 모드
|
||||
This feature is not available in Challenge Mode = 도전 모드에서는 이 기능을 사용할 수 없음
|
||||
This feature is not available in Hardcore Mode = 도전 모드에서는 이 기능을 사용할 수 없음
|
||||
This game has no achievements = 이 게임에는 성과가 없음
|
||||
Top players = 상위 플레이어
|
||||
Unlocked achievements = 잠금 해제된 성과
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Osiągnięcia
|
|||
Achievements are disabled = Osiągnięcia są wyłączone
|
||||
Achievements enabled = Osiągnięcia włączone
|
||||
Achievements with active challenges = Osiągnięcia z aktywnymi wyzwaniami
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Prawie ukończone osiągnięcia
|
||||
Around me = Wokół mnie
|
||||
Can't log in to RetroAchievements right now = W tym momencie nie można zalogować do RetroAchievements
|
||||
Challenge indicator = Wskazówki Wyzwania
|
||||
Challenge Mode = Tryb Wyzwania
|
||||
Challenge Mode (no savestates) = Tryb Wyzwania (bez zapisów stanu)
|
||||
Contacting RetroAchievements server... = Łączenie z serwerem RetroAchievements...
|
||||
Customize = Dostosuj
|
||||
Earned = Zdobyłeś %1 z %2 osiągnięć i %3 z %4 punktów
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Logowanie do RetroAchievements nieudane
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Łączenie z serwerem RetroAchievements nieudane. Osiągnięcia nie będą odblokowywane.
|
||||
Failed to identify game. Achievements will not unlock. = Identyfikacja gry nieudana. Osiągnięcia nie będą odblokowywane.
|
||||
Hardcore Mode (no savestates) = Tryb Wyzwania (bez zapisów stanu)
|
||||
Hardcore Mode = Tryb Wyzwania
|
||||
How to use RetroAchievements = Jak używać RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Start Tabeli wyników udany lub nieudany
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = Usługa RetroAchievements ni
|
|||
RetroAchievements website = Strona internetowa RetroAchievements
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Zapis stanu załadowany bez danych osiągnięć
|
||||
Save states not available in Challenge Mode = Zapisy stanu nie są dostępne w Trybie Wyzwania
|
||||
Save states not available in Hardcore Mode = Zapisy stanu nie są dostępne w Trybie Wyzwania
|
||||
Sound Effects = Efekty dźwiękowe
|
||||
Statistics = Statystyki
|
||||
Submitted %1 for %2 = Przesłano %1 dla %2
|
||||
Syncing achievements data... = Synchronizacja osiągnięć...
|
||||
Test Mode = Tryb Testowy
|
||||
This feature is not available in Challenge Mode = Ta funkcja nie jest dostępna w Trybie Wyzwania
|
||||
This feature is not available in Hardcore Mode = Ta funkcja nie jest dostępna w Trybie Wyzwania
|
||||
This game has no achievements = Ta gra nie posiada osiągnięć
|
||||
Top players = Najlepsi gracze
|
||||
Unlocked achievements = Odblokowane osiągnięcia
|
||||
|
|
|
@ -33,12 +33,10 @@ Achievements = Conquistas
|
|||
Achievements enabled = Conquistas ativadas
|
||||
Achievements are disabled = As conquistas estão desativadas
|
||||
Achievements with active challenges = Conquistas com desafios ativos
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Conquistas quase completadas
|
||||
Can't log in to RetroAchievements right now = Não consegue logar no RetroAchievements agora
|
||||
Challenge indicator = Indicador do desafio
|
||||
Challenge Mode = Modo Desafio
|
||||
Challenge Mode (no savestates) = Modo Desafio (sem save states)
|
||||
Contacting RetroAchievements server... = Contactando o servidor do RetroAchievements...
|
||||
Customize = Personalizar
|
||||
Earned = Você ganhou %1 de %2 conquistas e %3 de %4 pontos
|
||||
|
@ -46,6 +44,8 @@ Encore Mode = Modo de Repetição
|
|||
Failed logging in to RetroAchievements = Falhou em logar no RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Falhou em conectar com o RetroAchievements. As conquistas não destrancarão.
|
||||
Failed to identify game. Achievements will not unlock. = Falhou em identificar o jogo. As conquistas não destrancarão.
|
||||
Hardcore Mode (no savestates) = Modo Desafio (sem save states)
|
||||
Hardcore Mode = Modo Desafio
|
||||
How to use RetroAchievements = Como usar os RetroAchievements
|
||||
In Encore mode - listings may be wrong below = No modo de repetição - As listagens abaixo podem estar erradas
|
||||
Leaderboard attempt started or failed = A tentativa da tabela de classificação começou ou falhou
|
||||
|
@ -66,14 +66,14 @@ Register on www.retroachievements.org = Registrar no www.retroachievements.org
|
|||
RetroAchievements are not available for this game = Os RetroAchievements não estão disponíveis pra este jogo
|
||||
RetroAchievements website = Site dos RetroAchievements
|
||||
Rich Presence = Presença Rica
|
||||
Save states not available in Challenge Mode = Os save states não estão disponíveis no Modo Desafio
|
||||
Save state loaded without achievement data = O save state foi carregado sem os dados das conquistas
|
||||
Save states not available in Hardcore Mode = Os save states não estão disponíveis no Modo Desafio
|
||||
Sound Effects = Efeitos de Som
|
||||
Statistics = Estatísticas
|
||||
Submitted %1 for %2 = Submeteu o %1 pro %2
|
||||
Syncing achievements data... = Sincronizando os dados das conquistas...
|
||||
Test Mode = Modo Teste
|
||||
This feature is not available in Challenge Mode = Esta função não está disponível no Modo Desafio
|
||||
This feature is not available in Hardcore Mode = Esta função não está disponível no Modo Desafio
|
||||
This game has no achievements = Este jogo não tem conquistas
|
||||
Top players = Os melhores jogadores
|
||||
Unlocked achievements = Conquistas destrancadas
|
||||
|
|
|
@ -33,13 +33,11 @@ Achievements = Conquistas
|
|||
Achievements are disabled = As conquistas estão desativadas
|
||||
Achievements enabled = Conquistas ativadas
|
||||
Achievements with active challenges = Conquistas com desafios ativos
|
||||
Allow Save State in Challenge Mode (but not Load State) = Permitir salvar estados no Modo Desafio (mas não carregar estados)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Permitir salvar estados no Modo Desafio (mas não carregar estados)
|
||||
Almost completed achievements = Conquistas quase desbloqueadas
|
||||
Around me = À minha volta
|
||||
Can't log in to RetroAchievements right now = Não é possível cadastrar em RetroAchievements por agora, tenta novamente mais tarde
|
||||
Challenge indicator = Indicador do Desafio
|
||||
Challenge Mode = Modo Desafio
|
||||
Challenge Mode (no savestates) = Modo Desafio (sem estados salvos)
|
||||
Contacting RetroAchievements server... = Contactando os servidores de RetroAchievements...
|
||||
Customize = Personalizar
|
||||
Earned = Desbloqueaste %1 de %2 conquistas e ganhaste %3 de %4 pontos
|
||||
|
@ -47,6 +45,8 @@ Encore Mode = Modo de Repetição
|
|||
Failed logging in to RetroAchievements = Não foi possível cadastrar em RetroAchievements, tente novamente mais tarde
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Não foi possível conectar a RetroAchievements. As conquistas não serão desbloqueadas.
|
||||
Failed to identify game. Achievements will not unlock. = Não foi possível identificar o jogo. As conquistas não serão desbloqueadas.
|
||||
Hardcore Mode (no savestates) = Modo Desafio (sem estados salvos)
|
||||
Hardcore Mode = Modo Desafio
|
||||
How to use RetroAchievements = Como usar a RetroAchievements
|
||||
In Encore mode - listings may be wrong below = No Modo de Repetição - as listagem abaixo poderão estar incorretas
|
||||
Leaderboard attempt started or failed = Tabela classificativa começou ou falhou
|
||||
|
@ -67,13 +67,13 @@ RetroAchievements are not available for this game = Os RetroAchievements não es
|
|||
RetroAchievements website = Website da RetroAchievements
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Estado Salvo carregado sem os dados das conquistas
|
||||
Save states not available in Challenge Mode = Os Estados Salvos não estão disponíveis no Modo Desafio
|
||||
Save states not available in Hardcore Mode = Os Estados Salvos não estão disponíveis no Modo Desafio
|
||||
Sound Effects = Efeitos Sonoros (SFX)
|
||||
Statistics = Estatísticas
|
||||
Submitted %1 for %2 = Enviado %1 para %2
|
||||
Syncing achievements data... = A sincronizar os dados das conquistas...
|
||||
Test Mode = Modo de Teste
|
||||
This feature is not available in Challenge Mode = Esta função não está disponível no Modo Desafio
|
||||
This feature is not available in Hardcore Mode = Esta função não está disponível no Modo Desafio
|
||||
This game has no achievements = Este jogo não tem conquistas disponíveis
|
||||
Top players = Jogadores no topo
|
||||
Unlocked achievements = Conquistas desbloqueadas
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Достижения
|
|||
Achievements are disabled = Достижения отключены
|
||||
Achievements enabled = Достижения включены
|
||||
Achievements with active challenges = Достижения с активными испытаниями
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Почти завершенные достижения
|
||||
Around me = Вокруг меня
|
||||
Can't log in to RetroAchievements right now = Сейчас невозможно войти в RetroAchievements
|
||||
Challenge indicator = Индикатор испытания
|
||||
Challenge Mode = Режим испытания
|
||||
Challenge Mode (no savestates) = Режим испытания (без сохранений состояния)
|
||||
Contacting RetroAchievements server... = Подключение к серверу RetroAchievements...
|
||||
Customize = Настроить
|
||||
Earned = Вы разблокировали %1 из %2 достижений и получили %3 из %4 очков
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Режим повтора
|
|||
Failed logging in to RetroAchievements = Не удалось войти в RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Не удалось подключиться к RetroAchievements. Достижения не будут разблокированы.
|
||||
Failed to identify game. Achievements will not unlock. = Не удалось опознать игру. Достижения не будут разблокированы.
|
||||
Hardcore Mode (no savestates) = Режим испытания (без сохранений состояния)
|
||||
Hardcore Mode = Режим испытания
|
||||
How to use RetroAchievements = Как пользоваться RetroAchievements
|
||||
In Encore mode - listings may be wrong below = В режиме повтора - списки ниже могут быть неверными
|
||||
Leaderboard attempt started or failed = Попытка занесения в таблицу лидеров началась или не удалась
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements недос
|
|||
RetroAchievements website = Веб-сайт RetroAchievements
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Состояние загружено без данных о достижениях
|
||||
Save states not available in Challenge Mode = Сохранение состояний недоступно в режиме испытаний
|
||||
Save states not available in Hardcore Mode = Сохранение состояний недоступно в режиме испытаний
|
||||
Sound Effects = Звуковые эффекты
|
||||
Statistics = Статистика
|
||||
Submitted %1 for %2 = Занесено %1 для %2
|
||||
Syncing achievements data... = Синхронизация данных о достижениях...
|
||||
Test Mode = Тестовый режим
|
||||
This feature is not available in Challenge Mode = Данная возможность недоступна в режиме испытаний
|
||||
This feature is not available in Hardcore Mode = Данная возможность недоступна в режиме испытаний
|
||||
This game has no achievements = У данной игры нет достижений
|
||||
Top players = Лучшие игроки
|
||||
Unlocked achievements = Разблокированные достижения
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements är avstängda
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Nästan avklarade achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Kan inte logga in till RetroAchievements just nu
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Utmanings-läge
|
||||
Challenge Mode (no savestates) = Utmanings-läge (inga sparade state)
|
||||
Contacting RetroAchievements server... = Kontaktar RetroAchievements' server...
|
||||
Customize = Anpassa
|
||||
Earned = Du har tjänat %1 av %2 achievements, och %3 of %4 poäng
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore-läge (kan ta achievements igen)
|
|||
Failed logging in to RetroAchievements = Misslyckades logga in till RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Misslyckades logga in RetroAchievements. Achievements kommer ej kunna avklaras.
|
||||
Failed to identify game. Achievements will not unlock. = Kunde inte identifiera spel. Achievements kommer ej kunna avklaras.
|
||||
Hardcore Mode (no savestates) = Utmanings-läge (inga sparade state)
|
||||
Hardcore Mode = Utmanings-läge
|
||||
How to use RetroAchievements = Hur man använder RetroAchievements
|
||||
In Encore mode - listings may be wrong below = I Encore-läge - saker kan visas fel nedan
|
||||
Leaderboard attempt started or failed = Topplisteförsök påbörjat eller misslyckat
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements finns inte
|
|||
RetroAchievements website = RetroAchievements webbsida
|
||||
Rich Presence = Visa vad du spelar live på webbsidan
|
||||
Save state loaded without achievement data = Sparad state laddad utan achievement-data
|
||||
Save states not available in Challenge Mode = Sparade states inte tillgängliga i utmaningsläge
|
||||
Save states not available in Hardcore Mode = Sparade states inte tillgängliga i utmaningsläge
|
||||
Sound Effects = Ljudeffekter
|
||||
Statistics = Statistik
|
||||
Submitted %1 for %2 = Skickade in %1 for %2
|
||||
Syncing achievements data... = Synkar achievementdata...
|
||||
Test Mode = Test-läge
|
||||
This feature is not available in Challenge Mode = Denna feature är inte tillgänglig i utmaningsläge
|
||||
This feature is not available in Hardcore Mode = Denna feature är inte tillgänglig i utmaningsläge
|
||||
This game has no achievements = Detta spel har inga achievements
|
||||
Top players = Toppspelare
|
||||
Unlocked achievements = Upplåsta achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = เป้าหมายความสำเร็จ
|
|||
Achievements enabled = เปิดใช้งาน เป้าหมายความสำเร็จ
|
||||
Achievements are disabled = ปิดใช้งาน เป้าหมายความสำเร็จ
|
||||
Achievements with active challenges = เป้าหมายความสำเร็จพร้อมด้วยโหมดท้าทาย
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = เป้าหมายความสำเร็จใกล้จะเสร็จสมบูรณ์
|
||||
Around me = รอบตัวฉัน
|
||||
Can't log in to RetroAchievements right now = ไม่สามารถล็อกอินเข้าไปยัง RetroAchievements ได้ในขณะนี้
|
||||
Challenge indicator = ตัวบ่งชี้ความท้าทาย
|
||||
Challenge Mode = โหมดท้าทาย
|
||||
Challenge Mode (no savestates) = โหมดท้าทาย (ไม่มีเซฟสเตท)
|
||||
Contacting RetroAchievements server... = กำลังเชื่อมต่อกับเซิร์ฟเวอร์ RetroAchievements...
|
||||
Customize = ปรับแต่ง
|
||||
Earned = คุณได้รับ %1 of %2 เป้าหมายความสำเร็จ, และ %3 ของ %4 แต้ม
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = โหมดคำราม
|
|||
Failed logging in to RetroAchievements = ล้มเหลวในการเข้าใช้งานไปยัง RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = ล้มเหลวในการเข้าใช้งานไปยัง RetroAchievements เป้าหมายความสำเร็จอาจจะไม่ถูกปลดล็อค
|
||||
Failed to identify game. Achievements will not unlock. = ล้มเหลวในการระบุข้อมูลเกม เป้าหมายความสำเร็จอาจจะไม่ถูกปลดล็อค
|
||||
Hardcore Mode (no savestates) = โหมดท้าทาย (ไม่มีเซฟสเตท)
|
||||
Hardcore Mode = โหมดท้าทาย
|
||||
How to use RetroAchievements = วิธีใช้งาน RetroAchievements
|
||||
In Encore mode - listings may be wrong below = ในโหมดคำราม - รายชื่อด้านล่างอาจจะผิด
|
||||
Leaderboard attempt started or failed = เริ่มต้น/ล้มเหลว ไปยังกระดานแต้มผู้นำ
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = ไม่สามารถ
|
|||
RetroAchievements website = เว็บไซต์ RetroAchievements
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = โหลดเซฟสเตทแล้วโดยที่ไม่มีข้อมูลเป้าหมายความสำเร็จ
|
||||
Save states not available in Challenge Mode = ไม่สามารถใช้งานเซฟสเตทได้ในโหมดท้าทาย
|
||||
Save states not available in Hardcore Mode = ไม่สามารถใช้งานเซฟสเตทได้ในโหมดท้าทาย
|
||||
Sound Effects = เสียงเอฟเฟ็คท์
|
||||
Statistics = สถิติ
|
||||
Submitted %1 for %2 = ส่ง %1 สำหรับ %2
|
||||
Syncing achievements data... = กำลังซิงก์ข้อมูล เป้าหมายความสำเร็จ...
|
||||
Test Mode = โหมดทดสอบ
|
||||
This feature is not available in Challenge Mode = ฟีเจอร์นี้ไม่สามารถปรับใช้งานได้ในโหมดท้าทาย
|
||||
This feature is not available in Hardcore Mode = ฟีเจอร์นี้ไม่สามารถปรับใช้งานได้ในโหมดท้าทาย
|
||||
This game has no achievements = เกมนี้ไม่มีเป้าหมายความสำเร็จ
|
||||
Top players = ผู้เล่นชั้นนำ
|
||||
Unlocked achievements = เป้าหมายความสำเร็จที่ถูกปลดล็อคแล้ว
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = Achievements
|
|||
Achievements are disabled = Achievements are disabled
|
||||
Achievements enabled = Achievements enabled
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = Around me
|
||||
Can't log in to RetroAchievements right now = Can't log in to RetroAchievements right now
|
||||
Challenge indicator = Challenge indicator
|
||||
Challenge Mode = Challenge Mode
|
||||
Challenge Mode (no savestates) = Challenge Mode (no savestates)
|
||||
Contacting RetroAchievements server... = Contacting RetroAchievements server...
|
||||
Customize = Customize
|
||||
Earned = You have unlocked %1 of %2 achievements, and earned %3 of %4 points
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore Mode
|
|||
Failed logging in to RetroAchievements = Failed logging in to RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = Hardcore Mode (no savestates)
|
||||
Hardcore Mode = Hardcore Mode
|
||||
How to use RetroAchievements = How to use RetroAchievements
|
||||
In Encore mode - listings may be wrong below = In Encore mode - listings may be wrong below
|
||||
Leaderboard attempt started or failed = Leaderboard attempt started or failed
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements are not av
|
|||
RetroAchievements website = RetroAchievements website
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = Save state loaded without achievement data
|
||||
Save states not available in Challenge Mode = Save states not available in Challenge Mode
|
||||
Save states not available in Hardcore Mode = Save states not available in Hardcore Mode
|
||||
Sound Effects = Sound Effects
|
||||
Statistics = Statistics
|
||||
Submitted %1 for %2 = Submitted %1 for %2
|
||||
Syncing achievements data... = Syncing achievements data...
|
||||
Test Mode = Test Mode
|
||||
This feature is not available in Challenge Mode = This feature is not available in Challenge Mode
|
||||
This feature is not available in Hardcore Mode = This feature is not available in Hardcore Mode
|
||||
This game has no achievements = This game has no achievements
|
||||
Top players = Top players
|
||||
Unlocked achievements = Unlocked achievements
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = 成就
|
|||
Achievements are disabled = 未启用成就功能
|
||||
Achievements enabled = 启用成就功能
|
||||
Achievements with active challenges = 附有挑战的成就
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = 即将达成的成绩
|
||||
Around me = 与我接近的
|
||||
Can't log in to RetroAchievements right now = 暂时无法登录到RetroAchievements
|
||||
Challenge indicator = 挑战提示
|
||||
Challenge Mode = 挑战模式
|
||||
Challenge Mode (no savestates) = 挑战模式 (无即时存档)
|
||||
Contacting RetroAchievements server... = 连接RetroAchievements服务器…
|
||||
Customize = 自定义
|
||||
Earned = 您已经达成全部%2个成就中的%1个,已获得全部%4点数中的%3。
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = 回味模式
|
|||
Failed logging in to RetroAchievements = 未能登录到RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = 未连接到服务器,成就不会解锁。
|
||||
Failed to identify game. Achievements will not unlock. = 未能识别游戏,成就不能解锁。
|
||||
Hardcore Mode (no savestates) = 挑战模式 (无即时存档)
|
||||
Hardcore Mode = 挑战模式
|
||||
How to use RetroAchievements = 如何使用RetroAchievements
|
||||
In Encore mode - listings may be wrong below = 回味模式 - 下面列表中可能错误
|
||||
Leaderboard attempt started or failed = 排行榜挑战状态显示
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements暂未收
|
|||
RetroAchievements website = RetroAchievements网站
|
||||
Rich Presence = 展示详细信息
|
||||
Save state loaded without achievement data = 读取即时存档时不带成就数据
|
||||
Save states not available in Challenge Mode = 挑战模式下禁用即时存档
|
||||
Save states not available in Hardcore Mode = 挑战模式下禁用即时存档
|
||||
Sound Effects = 音效
|
||||
Statistics = 统计
|
||||
Submitted %1 for %2 = 正在提交%1到%2
|
||||
Syncing achievements data... = 同步成就数据中…
|
||||
Test Mode = 测试模式
|
||||
This feature is not available in Challenge Mode = 挑战模式下此功能不可用
|
||||
This feature is not available in Hardcore Mode = 挑战模式下此功能不可用
|
||||
This game has no achievements = 此游戏没有成就列表
|
||||
Top players = 速度排名
|
||||
Unlocked achievements = 解锁的成就
|
||||
|
|
|
@ -9,13 +9,11 @@ Achievements = 成就
|
|||
Achievements are disabled = 成就已停用
|
||||
Achievements enabled = 成就已啟用
|
||||
Achievements with active challenges = Achievements with active challenges
|
||||
Allow Save State in Challenge Mode (but not Load State) = Allow Save State in Challenge Mode (but not Load State)
|
||||
Allow Save State in Hardcore Mode (but not Load State) = Allow Save State in Hardcore Mode (but not Load State)
|
||||
Almost completed achievements = Almost completed achievements
|
||||
Around me = 我的位置
|
||||
Can't log in to RetroAchievements right now = 目前無法登入至 RetroAchievements
|
||||
Challenge indicator = 挑戰指示器
|
||||
Challenge Mode = 挑戰模式
|
||||
Challenge Mode (no savestates) = 挑戰模式 (無存檔)
|
||||
Contacting RetroAchievements server... = 正在聯絡 RetroAchievements 伺服器…
|
||||
Customize = 自訂
|
||||
Earned = 您已經取得 %1/%2 個成就,以及 %3/%4 個點數
|
||||
|
@ -23,6 +21,8 @@ Encore Mode = Encore 模式
|
|||
Failed logging in to RetroAchievements = 無法登入至 RetroAchievements
|
||||
Failed to connect to RetroAchievements. Achievements will not unlock. = Failed to connect to RetroAchievements. Achievements will not unlock.
|
||||
Failed to identify game. Achievements will not unlock. = Failed to identify game. Achievements will not unlock.
|
||||
Hardcore Mode (no savestates) = 挑戰模式 (無存檔)
|
||||
Hardcore Mode = 挑戰模式
|
||||
How to use RetroAchievements = 如何使用 RetroAchievements
|
||||
In Encore mode - listings may be wrong below = 在 Encore 模式中 - 下方的清單可能有誤
|
||||
Leaderboard attempt started or failed = 排行榜嘗試已經開始或失敗
|
||||
|
@ -43,13 +43,13 @@ RetroAchievements are not available for this game = RetroAchievements 無法在
|
|||
RetroAchievements website = RetroAchievements 網站
|
||||
Rich Presence = Rich Presence
|
||||
Save state loaded without achievement data = 儲存存檔 (無成就資料) 已載入
|
||||
Save states not available in Challenge Mode = 儲存存檔無法在挑戰模式中使用
|
||||
Save states not available in Hardcore Mode = 儲存存檔無法在挑戰模式中使用
|
||||
Sound Effects = 音效
|
||||
Statistics = 統計資料
|
||||
Submitted %1 for %2 = 已為 %2 提交 %1
|
||||
Syncing achievements data... = 正在同步成就資料…
|
||||
Test Mode = 測試模式
|
||||
This feature is not available in Challenge Mode = 此功能無法在挑戰模式中使用
|
||||
This feature is not available in Hardcore Mode = 此功能無法在挑戰模式中使用
|
||||
This game has no achievements = 這個遊戲沒有成就
|
||||
Top players = 頂級玩家
|
||||
Unlocked achievements = 已解鎖的成就
|
||||
|
|
Loading…
Add table
Reference in a new issue