status.c
4.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
#include "status.h"
#ifdef _ENGLISH
/* 0 game ticket */
unsigned char gsError_1[] = "There's no game on card\nPlease go to the depot\nto purchase games.";
/* skGetId() failed */
unsigned char gsError_2[] = "iQue player error. Please take your player and\nyour iQue card to the Depot\nfor repair. ";
/* launch failure, file system failure, ticket parsing failure */
unsigned char gsError_3[] = "Card error. Please take your iQue card and Player\nto the Depot to repair your card.";
/* id.sys mismatches with skGetId() */
unsigned char gsError_4[] = "The iQue card inserted\n is not for this player.\nInsert anohter card.\nIf problem persists please take\nyour iQue card and Player to the Depot\nto repair your card.";
/* card not inserted */
unsigned char gsError_5[] = "Please insert iQue card";
/* game not on card */
unsigned char gsError_6[] = "Game not on card.\nPlease go to the Depot\nto retrieve this game\nif you want to play.";
/* game expired */
unsigned char gsError_7[] = "Game expired.\nPlease go to the depot\nto purchase it, \nif you want to continue playing.";
/* game has no controller pak support */
unsigned char gsError_8[] = "Game has no memory cell support.";
/* iQue club App not on card */
unsigned char gsError_9[] = "iQue Club missing!\nPlease go to the depot\nto download it.";
/* user quit game without hitting power button */
unsigned char gsError_10[] = "Please always hit the power button to quit playing a game\nOtherwise your game state data won't be safely stored!";
unsigned char gsError_11[] = "Incorrect management password!";
unsigned char gsError_12[] = "Play time allowed for today has expired.\nPlease continue playing tomorrow. ";
unsigned char gsError_13[] = "No game state found. Press A to copy game state.";
unsigned char gsError_14[] = "Are you sure you want to\ndelete the game state?";
unsigned char gsError_15[] = "Please insert the card \nyou want to copy gpak\nfrom or hit B to cancel";
unsigned char gsError_16[] = "No game on card.\nInsert a different card\nto copy gpak from\nor hit B to cancel";
unsigned char gsError_17[] = "Game state already exists\nAre you sure you want to\noverwrite the game state?";
unsigned char gsError_18[] = "No game state on card\nInsert a different card\nto copy gpak from\nor hit B to cancel";
unsigned char gsError_19[] = "Insert destination card\nto copy gpak to.";
unsigned char gsError_20[] = "No space left on card.\nInsert a different card\nto copy gpak to\nor hit B to cancel.";
unsigned char gsError_21[] = "Card out-of-sync. \nPlease bring this card to depot \nfor syncronization.\nInsert a different card\nto copy gpak to\nor hit B to cancel.";
unsigned char gsError_22[] = "Wrong card. Please insert \nyour own card to copy gpak to\nor hit B to cancel.";
unsigned char gsError_23[] = "Gpak copy cancelled\nInsert original card";
unsigned char gsError_25[] = "Press A to copy game state.\nOr select the game state and press Z to delete.";
unsigned char gsError_26[] = "Select the game state to copy from.";
unsigned char gsError_27[] = "Game state copy successful";
unsigned char gsError_30[] = "Are you sure to\ndelete the memory cell?";
unsigned char gsError_31[] = "Please insert the card \nyou want to copy memory\ncell from or hit B \nto cancel";
unsigned char gsError_32[] = "No game on card.\nInsert a different card\nto copy memory cell from\nor hit B to cancel";
unsigned char gsError_33[] = "Memory cell not empty\nAre you sure you want to\noverwrite the memory cell?";
unsigned char gsError_34[] = "All memory cells are empty.\nInsert a different card\nto copy from\nor hit B to cancel";
unsigned char gsError_35[] = "Insert destination card\nto copy memory cell to.";
unsigned char gsError_36[] = "Wrong card. Please insert \nyour own card to copy to\nor hit B to cancel.";
unsigned char gsError_37[] = "Memory cell copy cancelled\nInsert original card";
unsigned char gsError_38[] = "Press A to copy memory cell.\nOr select the memory cell and press Z to delete.";
unsigned char gsError_39[] = "Select the memory cell to copy from.";
unsigned char gsError_40[] = "Select the memory cell to copy the data to.";
unsigned char gsError_41[] = "Card out-of-sync. \nPlease bring this card to depot \nfor syncronization.\nInsert a different card\nto copy memory cell to\nor hit B to cancel.";
unsigned char gsError_42[] = "Memory cell copy successful";
unsigned char gsError_43[] = "Source Memory cell empty\nPlease press A to select a \ndifferent cell or hit B to cancel";
unsigned char gsError_44[] = "Number of gpaks full. Cannot launch game unless you delete a gpak.";
#else
#include "status_zh.c"
#endif