mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Repurpose the removed "PPSSPP doesn't support online" dialog to supply warning about WLAN switch off.
This commit is contained in:
parent
165cc998af
commit
57ba231921
46 changed files with 54 additions and 16 deletions
|
@ -77,6 +77,7 @@ int PSPNetconfDialog::Init(u32 paramAddr) {
|
|||
scanInfosAddr = 0;
|
||||
scanStep = 0;
|
||||
startTime = (u64)(time_now_d() * 1000000.0);
|
||||
showNoWlanNotice_ = !g_Config.bEnableWlan;
|
||||
|
||||
StartFade(true);
|
||||
return 0;
|
||||
|
@ -128,16 +129,12 @@ int PSPNetconfDialog::Update(int animSpeed) {
|
|||
|
||||
// It seems JPCSP doesn't check for NETCONF_STATUS_APNET
|
||||
if (request.netAction == NETCONF_CONNECT_APNET || request.netAction == NETCONF_STATUS_APNET || request.netAction == NETCONF_CONNECT_APNET_LAST) {
|
||||
int state = NetApctl_GetState();
|
||||
|
||||
UpdateFade(animSpeed);
|
||||
StartDraw();
|
||||
|
||||
// This disables the notice that we don't support the internet below.
|
||||
// Keeping the code in case we need it for something later.
|
||||
hideNotice = true;
|
||||
|
||||
if (!hideNotice) {
|
||||
if (showNoWlanNotice_) {
|
||||
auto err = GetI18NCategory(I18NCat::ERRORS);
|
||||
const float WRAP_WIDTH = 254.0f;
|
||||
const int confirmBtn = GetConfirmButton();
|
||||
|
@ -150,9 +147,9 @@ int PSPNetconfDialog::Update(int animSpeed) {
|
|||
|
||||
PPGeDrawRect(0, 0, 480, 272, CalcFadedColor(0x63636363));
|
||||
DrawBanner();
|
||||
PPGeDrawTextWrapped(err->T("PPSSPPDoesNotSupportInternet", "PPSSPP currently does not support connecting to the Internet for DLC, PSN, or game updates.\nContinuing may cause unexpected behavior or freezes."), 241, 132, WRAP_WIDTH, 0, textStyle);
|
||||
PPGeDrawImage(confirmBtnImage, 185, 240, 20, 20, buttonStyle);
|
||||
PPGeDrawText(di->T("OK"), 215, 243, buttonStyle);
|
||||
PPGeDrawTextWrapped(err->T("WirelessSwitchOffError", "A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled)."), 241, 132, WRAP_WIDTH, 0, textStyle);
|
||||
// PPGeDrawImage(confirmBtnImage, 185, 240, 20, 20, buttonStyle);
|
||||
// PPGeDrawText(di->T("OK"), 215, 243, buttonStyle);
|
||||
PPGeDrawImage(cancelBtnImage, 255, 240, 20, 20, buttonStyle);
|
||||
PPGeDrawText(di->T("Cancel"), 285, 243, buttonStyle);
|
||||
|
||||
|
@ -164,11 +161,8 @@ int PSPNetconfDialog::Update(int animSpeed) {
|
|||
// It seems to make Phantasy Star Portable 2 happy, so it should be okay for now.
|
||||
request.common.result = SCE_UTILITY_DIALOG_RESULT_ABORT;
|
||||
}
|
||||
else if (IsButtonPressed(confirmBtn)) {
|
||||
hideNotice = true;
|
||||
StartFade(true);
|
||||
}
|
||||
} else {
|
||||
int state = NetApctl_GetState();
|
||||
PPGeDrawRect(0, 0, 480, 272, CalcFadedColor(0xC0C8B2AC));
|
||||
DrawBanner();
|
||||
DrawIndicator();
|
||||
|
|
|
@ -56,11 +56,11 @@ private:
|
|||
SceUtilityNetconfParam request = {};
|
||||
u32 requestAddr = 0;
|
||||
int connResult = -1;
|
||||
bool hideNotice = false;
|
||||
|
||||
u32 scanInfosAddr = 0;
|
||||
int scanStep = 0;
|
||||
u64 startTime = 0;
|
||||
|
||||
bool showNoWlanNotice_ = false;
|
||||
bool jsonReady_ = false;
|
||||
};
|
||||
|
|
|
@ -533,6 +533,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Unable to write savedata, disk may be full.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = الملف مضغوط (ZIP).\nمن فضلك فك الضغط أولاً (جرب وين رر).
|
||||
ZIP file detected (Require WINRAR) = الملف مضغوط (ZIP).\nمن فضلك فك الضغط أولاً (جرب WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Unable to write savedata, disk may be full.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = file is compressed (ZIP).\nPlease decompress first (try UnRAR).
|
||||
ZIP file detected (Require WINRAR) = file is compressed (ZIP).\nPlease decompress first (try WinRAR).
|
||||
|
||||
|
@ -705,7 +706,7 @@ Stretch = Stretch
|
|||
Texture Filter = Texture filtering
|
||||
Texture Filtering = Texture filtering
|
||||
Texture replacement pack activated = Texture replacement pack activated
|
||||
Texture upscaling = Texture scaling
|
||||
Texture upscaling = Texture upscaling
|
||||
The chosen ZIP file doesn't contain a valid driver = The chosen ZIP file doesn't contain a valid driver
|
||||
Turn off Hardware Tessellation - unsupported = Turn off "hardware tessellation": unsupported
|
||||
Unlimited = Unlimited
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Unable to write savedata, disk may be full.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Файла е архивиран (ZIP).\nМоля първо разархивирайте (опитайте с UnRAR).
|
||||
ZIP file detected (Require WINRAR) = Файла е архивиран (ZIP).\nМоля първо разархивирайте (опитайте с WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Unable to write savedata, disk may be full.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = file is compressed (ZIP).\nPlease decompress first (try UnRAR).
|
||||
ZIP file detected (Require WINRAR) = file is compressed (ZIP).\nPlease decompress first (try WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Nelze zapsat data uložené hry, disk je možná zaplněn.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Varování: Video paměť je PLNÁ, zvětšení je zmenšeno a režim změněn na pomalé ukládání do mezipaměti.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Varování: Video paměť je PLNÁ, režim změněn na pomalé ukládání do mezipaměti.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Soubor je komprimován (ZIP).\nNejdříve ho prosím rozbalte (zkuste UnRAR).
|
||||
ZIP file detected (Require WINRAR) = Soubor je komprimován (ZIP).\nNejdříve ho prosím rozbalte (zkuste WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Kunne ikke gemme data, disk kan være fuld.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Advarsel: Video hukommelse er FULD, reducerer opskalering og skifter til langsom caching tilstand.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Advarsel: Video hukommelse er FULD, skifter til langsom caching tilstand.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Fil er pakket (ZIP).\nPak venligst ud først (prøv UnRAR).
|
||||
ZIP file detected (Require WINRAR) = Fil er pakket (ZIP).\nPak venligst ud først (prøv WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Initialisierung der Rendering Engine fe
|
|||
Unable to write savedata, disk may be full = Speicherdaten konnten nicht geschrieben werden, eventuell volle Festplatte.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warnung: Videospeicher VOLL, reduziere Hochskalierung und wechsle zu langsamen Cachemodus.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warnung: Videospeicher VOLL, wechsle zu langsamen Cachemodus.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Datei ist komprimiert (ZIP).\nBitte zuerst entpacken (z.B. mit UnRAR).
|
||||
ZIP file detected (Require WINRAR) = Datei ist komprimiert (ZIP).\nBitte zuerst entpacken (z.B. mit WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Unable to write savedata, disk may be full.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = file is compressed (ZIP).\nPlease decompress first (try UnRAR).
|
||||
ZIP file detected (Require WINRAR) = file is compressed (ZIP).\nPlease decompress first (try WinRAR).
|
||||
|
||||
|
|
|
@ -730,7 +730,7 @@ Stretch = Stretch
|
|||
Texture Filter = Texture filtering
|
||||
Texture Filtering = Texture filtering
|
||||
Texture replacement pack activated = Texture replacement pack activated
|
||||
Texture upscaling = Texture scaling
|
||||
Texture upscaling = Texture upscaling
|
||||
The chosen ZIP file doesn't contain a valid driver = The chosen ZIP file doesn't contain a valid driver
|
||||
Turn off Hardware Tessellation - unsupported = Turn off "hardware tessellation": unsupported
|
||||
Unlimited = Unlimited
|
||||
|
|
|
@ -526,6 +526,7 @@ Unable to initialize rendering engine. = No se pudo iniciar el motor de renderiz
|
|||
Unable to write savedata, disk may be full = No se pudieron escribir los datos de guardado, es posible que el disco este lleno..
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = AVISO: memoria de vídeo LLENA, reduciendo escalado y cambiando a modo de caché lento.
|
||||
Warning: Video memory FULL, switching to slow caching mode = AVISO: memoria de vídeo LLENA, cambiando a modo de caché lento.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = El archivo está comprimido (ZIP).\nDescomprímalo primero (usa UnRAR).
|
||||
ZIP file detected (Require WINRAR) = El archivo está comprimido (ZIP).\nDescomprímalo primero (usa WinRAR).
|
||||
|
||||
|
@ -706,6 +707,7 @@ Stretch = Estirar
|
|||
Texture Filter = Filtro de texturas
|
||||
Texture Filtering = Filtrado de texturas
|
||||
Texture replacement pack activated = Paquete de reemplazo de textura activado
|
||||
Texture upscaling = Texture upscaling
|
||||
The chosen ZIP file doesn't contain a valid driver = El archivo ZIP seleccionado no contiene un controlador válido
|
||||
Turn off Hardware Tessellation - unsupported = Desactivar "Teselación de hardware": no compatible
|
||||
Unlimited = Ilimitado
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = No se pudo inicializar el motor de rend
|
|||
Unable to write savedata, disk may be full = No se pudieron escribir los datos de guardado, el disco podría estar lleno.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = ADVERTENCIA: VRAM lleno, reduciendo escalado y cambiando al modo cache lento.
|
||||
Warning: Video memory FULL, switching to slow caching mode = ADVERTENCIA: VRAM lleno, cambiando al modo de caché lento.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Se ha detectado un archivo ZIP.\nUtiliza UnRar para descomprimirlo.
|
||||
ZIP file detected (Require WINRAR) = Se ha detectado un archivo ZIP.\nUtiliza compresores como WinRar o WinZip para descomprimirlo.
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Unable to write savedata, disk may be full.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = \n.فشرده سازی شده است ZIP این فایل با فرمت\n.آن را از حالت فشرده خارج کنید UnRAR لطفا با نرم افزار
|
||||
ZIP file detected (Require WINRAR) = \n.فشرده سازی شده است ZIP این فایل با فرمت\n.آن را از حالت فشرده خارج کنید WinRAR لطفا با نرم افزار
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Unable to write savedata, disk may be full.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = file is compressed (ZIP).\nPlease decompress first (try UnRAR).
|
||||
ZIP file detected (Require WINRAR) = file is compressed (ZIP).\nPlease decompress first (try WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Impossible d'initialiser le moteur de r
|
|||
Unable to write savedata, disk may be full = Impossible d'enregistrer la sauvegarde, le disque dur est peut-être plein.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Avertissement : Mémoire vidéo PLEINE, réduction de l'upscaling et passage en mode de cache lent.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Avertissement : Mémoire vidéo PLEINE, passage en mode de cache lent.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Le fichier est compressé (.zip).\nVeuillez d'abord le décompresser (essayez UnRAR).
|
||||
ZIP file detected (Require WINRAR) = Le fichier est compressé (.zip).\nVeuillez d'abord le décompresser (essayez WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Unable to write savedata, disk may be full.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Arquivo comprimido (ZIP).\nNecesita ser descomprimido (usa UnRAR).
|
||||
ZIP file detected (Require WINRAR) = Arquivo comprimido (ZIP).\nNecesita ser descomprimido (usa WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Αδυναμία προετοιμασί
|
|||
Unable to write savedata, disk may be full = Αδυναμία εγγραφής savedata, ο δίσκος ενδέχεται να είναι γεμάτος.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Προειδοποίηση: Η μνήμη γραφικών είναι ΠΛΗΡΗΣ, μείωση κλιμάκωσης και μετάβαση σε αργή λειτουργία προσωρινής αποθήκευσης.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Προειδοποίηση: Η μνήμη γραφικών είναι ΠΛΗΡΗΣ, μετάβαση σε αργή λειτουργία προσωρινής αποθήκευσης.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Το αρχείο είναι συμπισμένο (ZIP).\nΠαρακαλώ αποσυμπιέστε το πρώτα (δοκιμάστε το UnRAR).
|
||||
ZIP file detected (Require WINRAR) = Το αρχείο είναι συμπισμένο (ZIP).\nΠαρακαλώ αποσυμπιέστε το πρώτα (δοκιμάστε το WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Unable to write savedata, disk may be full.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = file is compressed (ZIP).\nPlease decompress first (try UnRAR).
|
||||
ZIP file detected (Require WINRAR) = file is compressed (ZIP).\nPlease decompress first (try WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Unable to write savedata, disk may be full.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = file is compressed (ZIP).\nPlease decompress first (try UnRAR).
|
||||
ZIP file detected (Require WINRAR) = file is compressed (ZIP).\nPlease decompress first (try WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Nije moguće kreirati savedatu, disk je možda pun.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Upozorenje: Video memorija PUNA, smanjivanje upscaling i mijenjanje na slow caching mod.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memorija PUNA, mijenjanje na slow caching mod.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Datoteka je pakirana (ZIP).\nPrvo raspakirajte (probaj UnRAR).
|
||||
ZIP file detected (Require WINRAR) = Datoteka je pakirana (ZIP).\nPrvo raspakirajte (probaj WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Renderelő motor inicializálása siker
|
|||
Unable to write savedata, disk may be full = Mentés létrehozása sikertelen, talán megtelt a lemez.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Figyelem: Videómemória MEGTELT. Átváltás alacsonyabb skálázásra és lassú gyorsítótárazásra.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Figyelem: Videómemória MEGTELT. Átváltás lassú gyorsítótárazásra.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = A fájl tömörített (ZIP).\nElőbb csomagold ki (próbáld UnRAR-ral).
|
||||
ZIP file detected (Require WINRAR) = A fájl tömörített (ZIP).\nElőbb csomagold ki (próbáld WinRAR-ral).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Tidak dapat menginisialisasi mesin pelu
|
|||
Unable to write savedata, disk may be full = Tidak dapat menulis simpanan data, penyimpanan mungkin penuh.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Perhatian: Memori video penuh, mengurangi penskalaan-atas dan berganti ke mode penembolokan lambat.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Perhatian: Memori video penuh, berganti ke mode penembolokan lambat.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Berkas terkompresi (ZIP).\nSilakan ekstrak dahulu (coba UnRAR).
|
||||
ZIP file detected (Require WINRAR) = Berkas terkompresi (ZIP).\nSilakan ekstrak dahulu (coba WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Impossibile inizializzare il motore di
|
|||
Unable to write savedata, disk may be full = Impossibile scrivere i dati del salvataggio, il disco potrebbe essere pieno.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Attenzione: Memoria Video PIENA, ridurre l'upscaling e passare in modalità caching lenta.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Attenzione: Memoria Video PIENA, passare in modalità caching lenta.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Il file è compresso (ZIP).\nPrima si deve decomprimere (prova UnRAR).
|
||||
ZIP file detected (Require WINRAR) = Il file è compresso (ZIP).\nPrima si deve decomprimere (prova WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = レンダリングエンジンを初期
|
|||
Unable to write savedata, disk may be full = セーブデータを書き込めません。ディスクが一杯のようです。
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = 警告: ビデオメモリが一杯なので、アップスケールを落として低速キャッシュモードに切り替えます。
|
||||
Warning: Video memory FULL, switching to slow caching mode = 警告: ビデオメモリが一杯なので、低速キャッシュモードに切り替えます。
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = ファイルが圧縮されています (ZIP)。\nまず解凍してください (UnRARを使う)。
|
||||
ZIP file detected (Require WINRAR) = ファイルが圧縮されています (ZIP)。\nまず解凍してください (WinRARを使う)。
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Ora dapat nulis simpenan, penyimpenan penuh.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Peringatan: memori Video LENGKAP,ngurangi upscaling lan ngoper menyang mode alon caching.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Peringatan: Memori Video LENGKAP, ngoper menyang mode alon caching .
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = berkas iki terkompres (ZIP).\nMohon bongkar dahulu (coba UnRAR).
|
||||
ZIP file detected (Require WINRAR) = berkas iki terkompres (ZIP).\nMohon bongkar dahulu (coba WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = 렌더링 엔진을 초기화할 수
|
|||
Unable to write savedata, disk may be full = 저장 데이터를 쓸 수 없습니다. 디스크가 가득 찼을 수 있습니다.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = 경고: 비디오 메모리가 가득 찼서, 업스케일링을 줄이고 느린 캐싱 모드로 전환합니다.
|
||||
Warning: Video memory FULL, switching to slow caching mode = 비디오 메모리가 가득 찼서, 저속 캐싱 모드로 전환합니다.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = 파일은 (ZIP으로) 압축되어 있습니다.\n먼저 압축을 해제하세요 (UnRAR 시도).
|
||||
ZIP file detected (Require WINRAR) = 파일은 (ZIP으로) 압축되어 있습니다.\n먼저 압축을 해제하세요 (WinRAR 시도).
|
||||
|
||||
|
|
|
@ -539,6 +539,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Unable to write savedata, disk may be full.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = File is compressed (ZIP).\nPlease decompress first (try UnRAR).
|
||||
ZIP file detected (Require WINRAR) = File is compressed (ZIP).\nPlease decompress first (try WinRAR).
|
||||
|
||||
|
@ -719,7 +720,7 @@ Stretch = Stretch
|
|||
Texture Filter = Texture filtering
|
||||
Texture Filtering = Texture filtering
|
||||
Texture replacement pack activated = Texture replacement pack activated
|
||||
Texture upscaling = Texture scaling
|
||||
Texture upscaling = Texture upscaling
|
||||
The chosen ZIP file doesn't contain a valid driver = The chosen ZIP file doesn't contain a valid driver
|
||||
Turn off Hardware Tessellation - unsupported = Turn off "hardware tessellation": unsupported
|
||||
Unlimited = Unlimited
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = ບໍ່ສາມາດຂຽນບັນທຶກຂໍ້ມູນ, ພື້ນທີ່ອາດຈະເຕັມ.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = ຄຳເຕືອນ: ໜ່ວຍຄວາມຈຳວີດີໂອເຕັມ, ຫຼຸດການ upscaling ແລະ ກຳລັງປ່ຽນໄປເປັນໂໝດແຄດແບບຊ້າ.
|
||||
Warning: Video memory FULL, switching to slow caching mode = ຄຳເຕືອນ: ໜ່ວຍຄວາມຈຳວີດີໂອເຕັມ, ກຳລັງປ່ຽນໄປເປັນໂໝດແຄດແບບຊ້າ.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = ໄຟລຖືກບີບອັດ (ZIP).\nກະລຸນາແຕກໄຟລ໌ກ່ອນ (ລອງໃຊ້ UnRAR).
|
||||
ZIP file detected (Require WINRAR) = ໄຟລ໌ຖືກບີບອັດ (ZIP).\nກະລຸນາແຕກໄຟລ໌ກ່ອນ (ລອງໃຊ້ WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Unable to write savedata, disk may be full.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Failas yra suspaustas (ZIP formato).\nReikia išpausti jį (pabandykite UnRAR).
|
||||
ZIP file detected (Require WINRAR) = Failas yra suspaustas (ZIP formato).\nReikia išpausti jį (pabandykite WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Unable to write savedata, disk may be full.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Fail dimampatkan (ZIP).\nSila nyah-mampatkan dahulu (cuba UnRAR).
|
||||
ZIP file detected (Require WINRAR) = Fail dimampatkan (ZIP).\nSila nyah-mampatkan dahulu (cuba WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Kan de savedata niet opslaan, de schijf is mogelijk vol.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Waarschuwing: het videogeheugen is vol, upscaling wordt gereduceerd en er wordt overgeschakeld naar de trage cachingmodus.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Waarschuwing: het videogeheugen is vol, er wordt overgeschakeld naar de trage cachingmodus.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = het bestand is verkleind (ZIP).\nPak het bestand eerst uit (probeer UnRAR)
|
||||
ZIP file detected (Require WINRAR) = het bestand is verkleind (ZIP).\nPak het bestand eerst uit (probeer WinRAR)
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Unable to write savedata, disk may be full.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = file is compressed (ZIP).\nPlease decompress first (try UnRAR).
|
||||
ZIP file detected (Require WINRAR) = file is compressed (ZIP).\nPlease decompress first (try WinRAR).
|
||||
|
||||
|
|
|
@ -529,6 +529,7 @@ Warning: Ostrzeżenie: Pamięć wideo jest PEŁNA, nastąpi zmniejszenie rozdzie
|
|||
Warning: Ostrzeżenie: Pamięć wideo jest PEŁNA, nastąpi zmiana na powolne buforowanie.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Wykryto plik ZIP.\nRozpakuj go przed użyciem (spróbuj UnRAR).
|
||||
ZIP file detected (Require WINRAR) = Wykryto plik ZIP.\nRozpakuj go przed użyciem (spróbuj WinRAR).
|
||||
|
||||
|
|
|
@ -549,6 +549,7 @@ Unable to initialize rendering engine. = Incapaz de inicializar a engine da rend
|
|||
Unable to write savedata, disk may be full = Incapaz de gravar os dados do save, o disco pode estar cheio.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = AVISO: Memória de vídeo CHEIA, reduzindo a ampliação e trocando pro modo de cache lento.
|
||||
Warning: Video memory FULL, switching to slow caching mode = AVISO: Memória de vídeo CHEIA, trocando pro modo de cache lento.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = O arquivo está comprimido (ZIP).\nPor favor descomprima-o primeiro (tente o UnRAR).
|
||||
ZIP file detected (Require WINRAR) = O arquivo está comprimido (ZIP).\nPor favor descomprima-o primeiro (tente o WinRAR).
|
||||
|
||||
|
|
|
@ -549,6 +549,7 @@ Unable to initialize rendering engine. = Não foi possível inicializar a engine
|
|||
Unable to write savedata, disk may be full = Não foi possível gravar os dados do salvamento. O disco poderá estar cheio.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = AVISO: Memória de vídeo CHEIA, a reduzir a ampliação e a trocar para o modo de cache lento.
|
||||
Warning: Video memory FULL, switching to slow caching mode = AVISO: Memória de vídeo CHEIA, a trocar para o modo de cache lento.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = O ficheiro está comprimido (.zip).\nPor favor descomprima-o primeiro (tente usar o UnRAR).
|
||||
ZIP file detected (Require WINRAR) = O ficheiro está comprimido (.zip).\nPor favor descomprima-o primeiro (tente usar o WinRAR).
|
||||
|
||||
|
|
|
@ -526,6 +526,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Imposibil de scris salvare, diskul poate fi plin.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Fișierul e compresat(ZIP).\nVă rog decompresați întâi (încercați UnRAR).
|
||||
ZIP file detected (Require WINRAR) = Fișierul e compresat(ZIP).\nVă rog decompresați întâi (încercați WINRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Не удалось инициализ
|
|||
Unable to write savedata, disk may be full = Не удалось записать данные сохранения: не хватает места.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Предупреждение: видеопамять ЗАПОЛНЕНА, уменьшение масштаба и переключение на медленное кэширование.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Предупреждение: видеопамять ЗАПОЛНЕНА, переключение на медленное кэширование.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = файл сжат (ZIP).\nПожалуйста, распакуйте (попробуйте UnRAR).
|
||||
ZIP file detected (Require WINRAR) = файл сжат (ZIP).\nПожалуйста, распакуйте (попробуйте WinRAR).
|
||||
|
||||
|
|
|
@ -526,6 +526,7 @@ Unable to initialize rendering engine. = Misslyckades initiera renderingsmotor
|
|||
Unable to write savedata, disk may be full = Kunde inte skriva sparad data, disken kan vara full.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Warning: Video memory FULL, reducing upscaling and switching to slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Warning: Video memory FULL, switching to slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = filen är komprimerad (ZIP).\nPacka upp filen först (prova UnRAR).
|
||||
ZIP file detected (Require WINRAR) = filen är komprimerad (ZIP).\nPacka upp filen först (prova WinRAR).
|
||||
|
||||
|
|
|
@ -526,6 +526,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Hindi makakasulat ng save data, baka ang disk ay puno na.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Babala: PUNO ang memorya ng video, binabawasan ang pag-upscale at paglipat sa slow caching mode.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Babala: PUNO ang memorya ng video, bubuksan na ang slow caching mode.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Ang File ay na Compress (ZIP).\nPaki-decompress muna (subukan sa UnRAR).
|
||||
ZIP file detected (Require WINRAR) = Ang File ay na Compress (ZIP).\nPaki-decompress muna (subukan sa WinRAR).
|
||||
|
||||
|
|
|
@ -535,6 +535,7 @@ Unable to initialize rendering engine. = ไม่สามารถเริ่
|
|||
Unable to write savedata, disk may be full = ไม่สามารถบันทึกข้อมูลได้, เนื่องจากดิสก์เต็ม
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = คำเตือน: หน่วยความจำวีดีโอเต็ม, ให้ลดขนาดสเกลภาพ และสลับไปใช้แคชพื้นผิวแบบหยาบ
|
||||
Warning: Video memory FULL, switching to slow caching mode = คำเตือน: หน่วยความจำวีดีโอเต็ม, ให้สลับไปใช้แคชพื้นผิวแบบหยาบ
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = ไฟล์นี้ถูกบีบอัดมา (ZIP) โปรดแตกไฟล์ก่อน (ลองใช้ UnRAR หรือ Zarchiver)
|
||||
ZIP file detected (Require WINRAR) = ไฟล์นี้ถูกบีบอัดมา (ZIP) โปรดแตกไฟล์ก่อน (ลองใช้ WinRAR หรือ Zarchiver)
|
||||
|
||||
|
|
|
@ -527,6 +527,7 @@ Unable to initialize rendering engine. = İşleme motoru başlatılamıyor.
|
|||
Unable to write savedata, disk may be full = Kayıt verisi yazılamadı, belki de disk doludur.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = UYARI: Video belleği (VRAM) DOLU, video ölçekleme azaltılıyor ve yavaş önbellekleme moduna geçiliyor.
|
||||
Warning: Video memory FULL, switching to slow caching mode = UYARI: Video belleği (VRAM) DOLU, yavaş önbellekleme moduna geçiliyor.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Dosya sıkıştırılmış (ZIP).\nLütfen ilk olarak dosyayı çıkartın (UnRAR'ı deneyin).
|
||||
ZIP file detected (Require WINRAR) = Dosya sıkıştırlmış (ZIP).\nLütfen ilk olarak dosyayı çıkartın (WinRAR'ı deneyin).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Неможливо ініціалізу
|
|||
Unable to write savedata, disk may be full = Неможливо записати збереження: диск переповнено.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Попередження: Відеопам'ять ЗАПОВНЕНА, зменшення масштабу та перемикання в режим повільного кешування.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Попередження: Відеопам'ять ЗАПОВНЕНА, перемикання в режим повілього кешування.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = Файл стиснуто (ZIP).\nБудь ласка, розархівуйте (спробуйте UnRAR).
|
||||
ZIP file detected (Require WINRAR) = Файл стиснуто (ZIP).\nБудь ласка, розархівуйте (спробуйте WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = Unable to initialize rendering engine.
|
|||
Unable to write savedata, disk may be full = Không thể viết file lưu dữ liệu, ổ cứng của bạn có thể bị đầy.
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = Cảnh báo: bộ nhớ video FULL, giảm nâng cấp và chuyển sang chế độ bộ nhớ đệm chậm.
|
||||
Warning: Video memory FULL, switching to slow caching mode = Cảnh báo: bộ nhớ video FULL, chuyển sang chế độ bộ nhớ đệm chậm.
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = đây là file nén (ZIP).\nXin hãy giải nén trước (Thử dùng UnRAR).
|
||||
ZIP file detected (Require WINRAR) = đây là file nén (ZIP).\nXin hãy giải nén trước (Thử dùng WinRAR).
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = 无法初始化渲染引擎。
|
|||
Unable to write savedata, disk may be full = 无法写入存档数据,磁盘可能已满
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = 警告:显存已满,减少分辨率提升并切换到慢速缓存模式。
|
||||
Warning: Video memory FULL, switching to slow caching mode = 警告:显存已满,切换到慢速缓存模式。
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = 这是ZIP压缩文件。\n请尝试使用UnRAR进行解压缩。
|
||||
ZIP file detected (Require WINRAR) = 这是ZIP压缩文件。\n请尝试使用WinRAR进行解压缩。
|
||||
|
||||
|
|
|
@ -525,6 +525,7 @@ Unable to initialize rendering engine. = 無法初始化轉譯引擎
|
|||
Unable to write savedata, disk may be full = 無法寫入存檔資料,磁碟可能已滿
|
||||
Warning: Video memory FULL, reducing upscaling and switching to slow caching mode = 警告:視訊記憶體已滿,降低放大倍率並切換至慢速快取模式
|
||||
Warning: Video memory FULL, switching to slow caching mode = 警告:視訊記憶體已滿,切換至慢速快取模式
|
||||
WirelessSwitchOffError = A connection error has occurred.\nThe Wireless switch on the PSP system is off (network is disabled).
|
||||
ZIP file detected (Require UnRAR) = 檔案已壓縮 (ZIP)\n請先解壓縮 (嘗試 UnRAR)
|
||||
ZIP file detected (Require WINRAR) = 檔案已壓縮 (ZIP)\n請先解壓縮 (嘗試 WinRAR)
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue