This commit is contained in:
Paul 2001-08-09 22:12:44 +00:00
parent ab43637ad8
commit b0d4c77404
2 changed files with 4 additions and 2 deletions

View File

@ -155,7 +155,7 @@ eng=Load Error!\nPress the X button to continue
[STR__MEMCARD__NOSPACEONCARD]
eng=Insufficient free blocks available on MEMORY CARD in MEMORY CARD SLOT 1. One free block required
[STR__MEMCARD__DUPLICATESAVENAME]
eng=Are you sure you want to overwrite the existing file on the MEMORY CARD in MEMORY CARD slot 1?
eng=Are you sure you want to\noverwrite the existing file on the MEMORY CARD in MEMORY CARD slot 1?
[STR__MEMCARD__DOYOUWANTTOFORMATCARD]
eng=MEMORY CARD in MEMORY CARD slot 1 is not formatted. Do you wish to format?
[STR__MEMCARD__FORMATTINGPLEASEWIAT]
@ -533,6 +533,8 @@ eng=Item already purchased
eng=This item costs %d tokens, you currently have %d tokens. Are you sure that you want to purchase it?
[STR__SHOP_SCREEN__CANNOT_AFFORD_PURCHASE]
eng=This item costs %d tokens, you currently have %d tokens. You cannot afford to purchase it.
[STR__SHOP_SCREEN__CANNOT_AFFORD_PURCHASE_SINGULAR]
eng=This item costs %d tokens, you currently have %d token. You cannot afford to purchase it.

View File

@ -506,7 +506,7 @@ void CShopScene::renderUi()
char buf[100];
cost=s_shopItems[m_currentlySelectedItem].m_cost;
available=CGameSlotManager::getSlotData()->getNumberOfKelpTokensHeld();
sprintf(buf,TranslationDatabase::getString(STR__SHOP_SCREEN__CANNOT_AFFORD_PURCHASE),cost,available);
sprintf(buf,TranslationDatabase::getString(available!=1?STR__SHOP_SCREEN__CANNOT_AFFORD_PURCHASE:STR__SHOP_SCREEN__CANNOT_AFFORD_PURCHASE_SINGULAR),cost,available);
m_font->print((SHOP_QUERY_UI_W-20)/2,0,buf);
m_guiCannotAffordFrame->render();
}