Files
android-hypergames/app/src/main/res/values/strings.xml

84 lines
3.9 KiB
XML
Executable File

<resources>
<string name="app_name">Hyper Games</string>
<string name="TAG">apps.hyperling.com.platformer</string>
<!-- Main Activity -->
<string name="tvGamesHeader">Games</string>
<string name="btnGameBird">Betty the Bird (Beta)</string>
<!-- Default Game -->
<!-- Testing only? Flappybird? -->
<string name="btnGameCow">Carly the Cow</string>
<!-- A cow must defend itself to escape the farmers trying to kill it. -->
<!-- Auto-runner. Cow can charge to scare farmers away. (They run off the map, cow does not kill or hit them) -->
<string name="btnGamePig">Patty the Pig</string>
<!-- A pig must hide from pursuers and avoid drying out in the sun using mud baths. -->
<!-- Press down to make the pig walk. Tapping rapidly makes it run for a short amount of time. You must avoid being noticed by patrols of farmers (like Deku Palace). -->
<!-- This is a top-down game? -->
<string name="btnGameChicken">Charlie the Chicken (Unfinished)</string>
<!-- Game where you must jump/fly over obstacles? -->
<!-- Auto-runner. Tapping makes it fly while holding down makes it run. Possible to get a running start and then fly? Avoid farmers and their nets. -->
<string name="btnGameCat">Kitty the Cat</string>
<!-- Full platformer like Super Mario World or Donkey Kong Country. -->
<!-- Tap the direction of the screen you'd like to move. Character is in the middle instead of on the left like an auto-runner. -->
<string name="btnGameSquirrel">Sammy the Squirrel</string>
<!-- Top-down like pig game, but like Frogger -->
<string name="btnOptions">Options</string>
<string name="btnHighScores">High Scores</string>
<string name="btnHelp">Help</string>
<string name="btnHighScoreSubHeader">High Score:</string>
<!-- Options Actvity -->
<string name="optionGroupGeneral">General</string>
<string name="optionGroupInGame">In Game</string>
<string name="optionGroupOnline">Online</string>
<string name="optionGroupOther">Other</string>
<string name="optionPracticeRound">Play Practice Round when Starting New Games?</string>
<string name="optionHigherQuality">Allow Higher Quality Images and Animations?</string>
<string name="optionFPS">Display FPS?</string>
<string name="optionNickname">Nickname for Online Leaderboards:</string>
<string name="optionUpload">Allow Automatic High Score Uploads?</string>
<string name="optionNicknameHint">Type Name Here</string>
<string name="btnDeletePreferences">Delete High Scores and Reset Preferences</string>
<string name="btnConfirmDeletePreferences">Are you seriously sure that you seriously want to seriously delete everything? If so, press here!</string>
<!-- Shared Preferences -->
<string name="sharedPreferencesKey">HyperGames</string>
<!-- Options -->
<string name="practiceRoundKey">Practice</string>
<string name="higherQualityKey">HigherQuality</string>
<string name="fpsKey">FPS</string>
<string name="nicknameKey">Nickname</string>
<string name="uploadKey">Upload</string>
<!-- High Scores -->
<string name="birdScoreKey">BirdScore009</string>
<string name="cowScoreKey">CowScore</string>
<string name="pigScoreKey">PigScore</string>
<string name="chickenScoreKey">ChickenScore009</string>
<string name="catScoreKey">CatScore</string>
<!-- All Versions High Scores -->
<string name="birdScoreHeader">Bird Game Scores</string>
<string-array name="allBirdScoreKeys">
<item>BirdScore009</item>
<item>BirdScore008(Beta)</item>
<item>BirdScore007</item>
<item>BirdScore005</item>
<item>BirdScore004</item>
<item>BirdScore003</item>
</string-array>
<string name="chickenScoreHeader">Chicken Game Scores</string>
<string-array name="allChickenScoreKeys">
<item>ChickenScore009</item>
<item>ChickenScore008(Alpha)</item>
</string-array>
</resources>