init commit
@@ -0,0 +1,10 @@
|
||||
*.iml
|
||||
.gradle
|
||||
/local.properties
|
||||
/.idea
|
||||
.DS_Store
|
||||
/build
|
||||
/captures
|
||||
.externalNativeBuild
|
||||
.cxx
|
||||
local.properties
|
||||
@@ -0,0 +1 @@
|
||||
/build
|
||||
@@ -0,0 +1,110 @@
|
||||
@Suppress("DSL_SCOPE_VIOLATION") // TODO: Remove once KTIJ-19369 is fixed
|
||||
plugins {
|
||||
alias(libs.plugins.androidApplication)
|
||||
alias(libs.plugins.kotlinAndroid)
|
||||
}
|
||||
|
||||
android {
|
||||
namespace = "com.ea.games.nfs13_na"
|
||||
compileSdk = 34
|
||||
|
||||
defaultConfig {
|
||||
applicationId = "com.ea.games.nfs13_na"
|
||||
minSdk = 21
|
||||
targetSdk = 34
|
||||
versionCode = 1
|
||||
versionName = "1.0"
|
||||
|
||||
buildConfigField( "String", "DEV_MENU_VERSION", "\"0.1\"")
|
||||
buildConfigField( "String", "DEV_MENU_ID", "\"DevMenu\"")
|
||||
|
||||
ndk.abiFilters.add("armeabi-v7a")
|
||||
|
||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||
vectorDrawables {
|
||||
useSupportLibrary = true
|
||||
}
|
||||
}
|
||||
ndkVersion = "21.0.6113669"
|
||||
|
||||
packaging {
|
||||
resources.excludes.add("META-INF/DEPENDENCIES")
|
||||
resources.excludes.add("META-INF/LICENSE")
|
||||
resources.excludes.add("META-INF/LICENSE.txt")
|
||||
resources.excludes.add("META-INF/license.txt")
|
||||
resources.excludes.add("META-INF/NOTICE")
|
||||
resources.excludes.add("META-INF/NOTICE.txt")
|
||||
resources.excludes.add("META-INF/notice.txt")
|
||||
resources.excludes.add("META-INF/ASL2.0")
|
||||
resources.excludes.add("META-INF/*.kotlin_module")
|
||||
}
|
||||
|
||||
android.buildFeatures.buildConfig = true
|
||||
|
||||
buildTypes {
|
||||
release {
|
||||
isMinifyEnabled = false
|
||||
proguardFiles(
|
||||
getDefaultProguardFile("proguard-android-optimize.txt"),
|
||||
"proguard-rules.pro"
|
||||
)
|
||||
}
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility = JavaVersion.VERSION_11
|
||||
targetCompatibility = JavaVersion.VERSION_11
|
||||
}
|
||||
kotlinOptions {
|
||||
jvmTarget = "11"
|
||||
}
|
||||
buildFeatures {
|
||||
compose = true
|
||||
}
|
||||
composeOptions {
|
||||
kotlinCompilerExtensionVersion = "1.5.1"
|
||||
}
|
||||
packaging {
|
||||
resources {
|
||||
excludes += "/META-INF/{AL2.0,LGPL2.1}"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
implementation(libs.core.ktx)
|
||||
implementation(libs.lifecycle.runtime.ktx)
|
||||
implementation(libs.activity.compose)
|
||||
implementation(platform(libs.compose.bom))
|
||||
implementation(libs.ui)
|
||||
implementation(libs.ui.graphics)
|
||||
implementation(libs.ui.tooling.preview)
|
||||
implementation(libs.material3)
|
||||
testImplementation(libs.junit)
|
||||
androidTestImplementation(libs.androidx.test.ext.junit)
|
||||
androidTestImplementation(libs.espresso.core)
|
||||
androidTestImplementation(platform(libs.compose.bom))
|
||||
androidTestImplementation(libs.ui.test.junit4)
|
||||
debugImplementation(libs.ui.tooling)
|
||||
debugImplementation(libs.ui.test.manifest)
|
||||
|
||||
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.6.2")
|
||||
val google_ver = "7.0.0"
|
||||
implementation ("org.apache.httpcomponents:httpclient:4.5")
|
||||
implementation ("com.google.android.gms:play-services:$google_ver")
|
||||
implementation ("com.google.android.gms:play-services-base:$google_ver")
|
||||
|
||||
implementation ("com.google.android.gms:play-services-ads:$google_ver")
|
||||
implementation ("com.google.android.gms:play-services-drive:$google_ver")
|
||||
|
||||
implementation ("commons-codec:commons-codec:1.15")
|
||||
implementation ("com.google.code.gson:gson:2.7")
|
||||
implementation ("com.facebook.android:facebook-android-sdk:3.21.0")
|
||||
|
||||
val fragment_version = "1.6.1"
|
||||
implementation("androidx.fragment:fragment:$fragment_version")
|
||||
// Kotlin
|
||||
implementation("androidx.fragment:fragment-ktx:$fragment_version")
|
||||
|
||||
implementation("androidx.localbroadcastmanager:localbroadcastmanager:1.0.0")
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
# Add project specific ProGuard rules here.
|
||||
# You can control the set of applied configuration files using the
|
||||
# proguardFiles setting in build.gradle.
|
||||
#
|
||||
# For more details, see
|
||||
# http://developer.android.com/guide/developing/tools/proguard.html
|
||||
|
||||
# If your project uses WebView with JS, uncomment the following
|
||||
# and specify the fully qualified class name to the JavaScript interface
|
||||
# class:
|
||||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||||
# public *;
|
||||
#}
|
||||
|
||||
# Uncomment this to preserve the line number information for
|
||||
# debugging stack traces.
|
||||
#-keepattributes SourceFile,LineNumberTable
|
||||
|
||||
# If you keep the line number information, uncomment this to
|
||||
# hide the original source file name.
|
||||
#-renamesourcefileattribute SourceFile
|
||||
@@ -0,0 +1,24 @@
|
||||
package com.ea.games.nfs13_na
|
||||
|
||||
import androidx.test.platform.app.InstrumentationRegistry
|
||||
import androidx.test.ext.junit.runners.AndroidJUnit4
|
||||
|
||||
import org.junit.Test
|
||||
import org.junit.runner.RunWith
|
||||
|
||||
import org.junit.Assert.*
|
||||
|
||||
/**
|
||||
* Instrumented test, which will execute on an Android device.
|
||||
*
|
||||
* See [testing documentation](http://d.android.com/tools/testing).
|
||||
*/
|
||||
@RunWith(AndroidJUnit4::class)
|
||||
class ExampleInstrumentedTest {
|
||||
@Test
|
||||
fun useAppContext() {
|
||||
// Context of the app under test.
|
||||
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
|
||||
assertEquals("com.ea.games.nfs13_na", appContext.packageName)
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,124 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.ea.games.nfs13_na"
|
||||
android:installLocation="auto" >
|
||||
|
||||
<supports-screens
|
||||
android:anyDensity="true"
|
||||
android:largeScreens="true"
|
||||
android:normalScreens="true"
|
||||
android:resizeable="true"
|
||||
android:smallScreens="true"
|
||||
android:xlargeScreens="true" />
|
||||
|
||||
<uses-permission
|
||||
android:name="android.permission.MANAGE_ACCOUNTS"
|
||||
android:maxSdkVersion="22" />
|
||||
<uses-permission android:name="android.permission.INTERNET" />
|
||||
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
|
||||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
||||
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
||||
<uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" />
|
||||
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
|
||||
<uses-permission android:name="com.android.vending.CHECK_LICENSE" />
|
||||
<uses-permission android:name="com.ea.games.nfs13_na.permission.C2D_MESSAGE" />
|
||||
<uses-permission android:name="com.google.android.c2dm.permission.RECEIVE" />
|
||||
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||||
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
|
||||
<uses-permission android:name="android.permission.START_BACKGROUND_SERVICE" />
|
||||
<uses-permission android:name="android.permission.READ_CONTACTS" />
|
||||
<uses-permission android:name="com.android.vending.BILLING" />
|
||||
|
||||
<uses-feature
|
||||
android:name="android.hardware.sensor.accelerometer"
|
||||
android:required="true" />
|
||||
<uses-feature
|
||||
android:glEsVersion="0x00020000"
|
||||
android:required="true" />
|
||||
|
||||
<permission
|
||||
android:name="com.ea.games.nfs13_na.permission.C2D_MESSAGE"
|
||||
android:protectionLevel="signature" />
|
||||
|
||||
<uses-configuration android:reqTouchScreen="finger" />
|
||||
|
||||
<application
|
||||
android:hardwareAccelerated="true"
|
||||
android:icon="@drawable/icon"
|
||||
android:label="@string/app_name"
|
||||
android:screenOrientation="landscape">
|
||||
<activity android:name="com.ea.ironmonkey.devmenu.PuppetActivity" >
|
||||
</activity>
|
||||
|
||||
<activity android:name="com.ea.ironmonkey.devmenu.MainActivity"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.MAIN" />
|
||||
<category android:name="android.intent.category.LAUNCHER" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name="com.ea.ironmonkey.devmenu.SettingsActivity"
|
||||
android:title="Настройки" >
|
||||
</activity>
|
||||
<activity
|
||||
android:name="com.ea.ironmonkey.GameActivity"
|
||||
android:alwaysRetainTaskState="true"
|
||||
android:configChanges="keyboardHidden|locale|orientation|screenSize|smallestScreenSize"
|
||||
android:launchMode="singleTop"
|
||||
android:screenOrientation="landscape"
|
||||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" >
|
||||
<meta-data
|
||||
android:name="foo"
|
||||
android:value="bar" />
|
||||
</activity>
|
||||
<activity
|
||||
android:name="com.ea.ironmonkey.WebActivity"
|
||||
android:configChanges="keyboardHidden|locale"
|
||||
android:theme="@android:style/Theme.NoTitleBar.Fullscreen" />
|
||||
<activity android:name="com.ea.ironmonkey.devmenu.RecoverListActivity" />
|
||||
|
||||
<meta-data
|
||||
android:name="com.facebook.sdk.ApplicationId"
|
||||
android:value="@string/app_id" />
|
||||
<meta-data
|
||||
android:name="com.ea.nimble.configuration"
|
||||
android:value="@string/nimble_configuration" />
|
||||
<meta-data
|
||||
android:name="xperiaplayoptimized_content"
|
||||
android:resource="@drawable/icon" />
|
||||
<meta-data
|
||||
android:name="game_display_name"
|
||||
android:resource="@string/app_name" />
|
||||
<meta-data
|
||||
android:name="game_icon"
|
||||
android:resource="@drawable/icon" />
|
||||
|
||||
<service android:name="com.ea.easp.mtx.market.android.AndroidBillingService" />
|
||||
|
||||
<receiver android:name="com.ea.easp.mtx.market.android.BillingReceiver"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="com.android.vending.billing.IN_APP_NOTIFY" />
|
||||
<action android:name="com.android.vending.billing.RESPONSE_CODE" />
|
||||
<action android:name="com.android.vending.billing.PURCHASE_STATE_CHANGED" />
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
<receiver
|
||||
android:name="com.ea.nimble.pushnotificationgoogle.NimbleBroadcastReceiver"
|
||||
android:permission="com.google.android.c2dm.permission.SEND"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="com.google.android.c2dm.intent.RECEIVE" />
|
||||
<action android:name="com.google.android.c2dm.intent.REGISTRATION" />
|
||||
|
||||
<category android:name="com.ea.games.nfs13_na" />
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
|
||||
<service android:name="com.ea.nimble.pushnotificationgoogle.GCMIntentService" />
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
@@ -0,0 +1,172 @@
|
||||
{␍
|
||||
"strings":␍
|
||||
[␍
|
||||
{␍
|
||||
"en":␍
|
||||
[␍
|
||||
{␍
|
||||
"MoreStr":"More",␍
|
||||
"GamesStr":"Games",␍
|
||||
"CatHotstr":"What's Hot",␍
|
||||
"CatYouStr":"Games For You",␍
|
||||
"CatNewStr":"New",␍
|
||||
"CatSoonStr":"Coming Soon",␍
|
||||
"CatAllStr":"All Games",␍
|
||||
"BuyNowStr":"BUY NOW",␍
|
||||
"AlertTitleStr":"",␍
|
||||
"AlertMsgStr":"To access your data, deactivate flight mode or use Wi-Fi",␍
|
||||
"AlertButStr":"OK",␍
|
||||
"Cancel":"CANCEL",␍
|
||||
"ServerErrMsg":"This service is temporarily unavailable.",␍
|
||||
"StaticPage":"dmg_staticpage_en.html",␍ ␍ "Cancel":"Cancel",␍ ␍ "Loading":"Loading ..."␍
|
||||
}␍
|
||||
]␍
|
||||
},␍
|
||||
{␍
|
||||
"fr":␍
|
||||
[␍
|
||||
{␍
|
||||
"MoreStr":"Plus de Jeux",␍
|
||||
"GamesStr":"",␍
|
||||
"CatHotstr":"Nouveautés",␍
|
||||
"CatYouStr":"Jeux pour vous",␍
|
||||
"CatNewStr":"Nouveau",␍
|
||||
"CatSoonStr":"Bientôt disponible(s)",␍
|
||||
"CatAllStr":"Tous les jeux",␍
|
||||
"BuyNowStr":"ACHETER",␍
|
||||
"AlertTitleStr":"Erreur réseau",␍
|
||||
"AlertMsgStr":"Désactivez le mode Avion ou utilisez Wi-Fi pour accéder à vos données",␍
|
||||
"AlertButStr":"OK",␍
|
||||
"Cancel":"ANNULER",␍
|
||||
"ServerErrMsg":"Ce service est momentanément indisponible.",␍
|
||||
"StaticPage":"dmg_staticpage_fr.html",␍ ␍ "Loading":"Chargement ...",␍ ␍ "Cancel":"Annuler"␍
|
||||
}␍
|
||||
]␍
|
||||
},␍
|
||||
{␍
|
||||
"it":␍
|
||||
[␍
|
||||
{␍
|
||||
"MoreStr":"Altri Giochi",␍
|
||||
"GamesStr":"",␍
|
||||
"CatHotstr":"Ultimissime",␍
|
||||
"CatYouStr":"Giochi per te",␍
|
||||
"CatNewStr":"Novità",␍
|
||||
"CatSoonStr":"Prossimamente",␍
|
||||
"CatAllStr":"Tutti i giochi",␍
|
||||
"BuyNowStr":"COMPRA ORA",␍
|
||||
"AlertTitleStr":"Errore di rete",␍
|
||||
"AlertMsgStr":"Disattiva la modalità di uso in aereo o usa il Wi-Fi per accedere ai dati",␍
|
||||
"AlertButStr":"OK",␍
|
||||
"Cancel":"ANNULLA",␍
|
||||
"ServerErrMsg":"Il servizio non è momentaneamente disponibile.",␍
|
||||
"StaticPage":"dmg_staticpage_it.html",␍ ␍ "Loading":"Caricamento ...",␍ ␍ "Cancel":"Annulla"␍
|
||||
}␍
|
||||
]␍
|
||||
},␍
|
||||
{␍
|
||||
"de":␍
|
||||
[␍
|
||||
{␍
|
||||
"MoreStr":"Mehr",␍
|
||||
"GamesStr":"-Spiele",␍
|
||||
"CatHotstr":"Angesagt",␍
|
||||
"CatYouStr":"Spiele für dich",␍
|
||||
"CatNewStr":"Neues",␍
|
||||
"CatSoonStr":"Bald erhältlich",␍
|
||||
"CatAllStr":"Alle Spiele",␍
|
||||
"BuyNowStr":"JETZT KAUFEN",␍
|
||||
"AlertTitleStr":"Netzwerkfehler",␍
|
||||
"AlertMsgStr":"Flugmodus deaktivieren oder Wi-Fi für Datenzugriff verwenden",␍
|
||||
"AlertButStr":"OK",␍
|
||||
"Cancel":"ABBRECHEN",␍
|
||||
"ServerErrMsg":"Dieser Dienst ist vorübergehend nicht verfügbar.",␍
|
||||
"StaticPage":"dmg_staticpage_de.html",␍␍ "Loading":"Geladen ...",␍␍ "Cancel":"Abbrechen"
|
||||
}␍
|
||||
]␍
|
||||
},␍
|
||||
{␍
|
||||
"es":␍
|
||||
[␍
|
||||
{␍
|
||||
"MoreStr":"Más Juegos de",␍
|
||||
"GamesStr":"",␍
|
||||
"CatHotstr":"Novedades",␍
|
||||
"CatYouStr":"Juegos para ti",␍
|
||||
"CatNewStr":"Nuevo",␍
|
||||
"CatSoonStr":"Próximamente",␍
|
||||
"CatAllStr":"Todos los juegos",␍
|
||||
"BuyNowStr":"COMPRAR AHORA",␍
|
||||
"AlertTitleStr":"Error de red",␍
|
||||
"AlertMsgStr":"Para acceder a tus datos, desactiva el modo Avión o usa Wi-Fi",␍
|
||||
"AlertButStr":"OK",␍
|
||||
"Cancel":"CANCELAR",␍
|
||||
"ServerErrMsg":"Este servicio está temporalmente indisponible.",␍
|
||||
"StaticPage":"dmg_staticpage_es.html",␍ ␍ "Loading":"Cargando ...",␍ ␍ "Cancel":"Cancelar"␍
|
||||
}␍
|
||||
]␍
|
||||
},␍
|
||||
{␍
|
||||
"ja":␍
|
||||
[␍
|
||||
{␍
|
||||
"MoreStr":"他の",␍
|
||||
"GamesStr":"ゲーム",␍
|
||||
"CatHotstr":"ホットな\nアプリ",␍
|
||||
"CatYouStr":"お勧め\nゲーム",␍
|
||||
"CatNewStr":"新作",␍
|
||||
"CatSoonStr":"近日配信",␍
|
||||
"CatAllStr":"全ての\nゲーム",␍
|
||||
"BuyNowStr":"今すぐ購入",␍
|
||||
"AlertTitleStr":"ネットワークエラー",␍
|
||||
"AlertMsgStr":"データにアクセスするには、機内モードをオフにするか、Wi-Fiを使用してください",␍
|
||||
"AlertButStr":"OK",␍
|
||||
"Cancel":"キャンセル",␍
|
||||
"ServerErrMsg":"現在このサービスは使用できません.",␍
|
||||
"StaticPage":"dmg_staticpage_ja.html",␍ ␍ "Loading":"ロード ...",␍ ␍ "Cancel":"キャンセル"␍
|
||||
}␍
|
||||
]␍
|
||||
},␍
|
||||
{␍
|
||||
"zh":␍
|
||||
[␍
|
||||
{␍
|
||||
"MoreStr":"更多",␍
|
||||
"GamesStr":"游戏",␍
|
||||
"CatHotstr":"热门",␍
|
||||
"CatYouStr":"推荐",␍
|
||||
"CatNewStr":"最新",␍
|
||||
"CatSoonStr":"即将推出",␍
|
||||
"CatAllStr":"所有游戏",␍
|
||||
"BuyNowStr":"马上购买",␍
|
||||
"AlertTitleStr":"网络错误",␍
|
||||
"AlertMsgStr":"要存取你的资料,关闭飞行模式或使用Wi-Fi",␍
|
||||
"AlertButStr":"好",␍
|
||||
"Cancel":"取消",␍
|
||||
"ServerErrMsg":"服务器暂时无法使用。",␍
|
||||
"StaticPage":"dmg_staticpage_zh.html",␍ ␍ "Loading":"載入中 ...",␍ ␍ "Cancel":"取消"␍
|
||||
}␍
|
||||
]␍
|
||||
},␍
|
||||
{␍
|
||||
"ko":␍
|
||||
[␍
|
||||
{␍
|
||||
"MoreStr":"더 보기",␍
|
||||
"GamesStr":"게임",␍
|
||||
"CatHotstr":"따끈한 소식",␍
|
||||
"CatYouStr":"당신을 위한 게임",␍
|
||||
"CatNewStr":"신규",␍
|
||||
"CatSoonStr":"곧 출시",␍
|
||||
"CatAllStr":"모든 게임",␍
|
||||
"BuyNowStr":"즉시 구매",␍
|
||||
"AlertTitleStr":"네트워크 오류",␍
|
||||
"AlertMsgStr":"데이터에 접근하려면 에어플레인 모드를 끄거나 Wi-Fi를 사용하십시오.",␍
|
||||
"AlertButStr":"OK",␍
|
||||
"Cancel":"취소",␍
|
||||
"ServerErrMsg":"이 기능은 일시적으로 이용이 불가능합니다.",␍
|
||||
"StaticPage":"dmg_staticpage_ko.html",␍ ␍ "Loading":"로드 ...",␍ ␍ "Cancel":"취소"␍
|
||||
}␍
|
||||
]␍
|
||||
},␍ {␍␍ "ru":␍␍ [␍␍ {␍␍ "MoreStr":"Еще",␍␍ "GamesStr":"Игры",␍␍ "CatHotstr":"Бестселлеры",␍␍ "CatYouStr":"Игры для вас",␍␍ "CatNewStr":"Новые",␍␍ "CatSoonStr":"Скоро...",␍␍ "CatAllStr":"Все игры",␍␍ "BuyNowStr":"КУПИТЬ",␍␍ "AlertTitleStr":":",␍␍ "AlertMsgStr":"Для доступа к данным отключите режим \"в самолете\" или используйте Wi-Fi.",␍␍ "AlertButStr":"OK",␍␍ "Cancel":"ОТМЕНА",␍␍ "ServerErrMsg":"Временно недоступно.",␍␍ "NoContentMsg":"Отсутствует доступный контент.",␍␍ "StaticPage":"dmg_staticpage_en.html"␍ ␍␍ }␍␍ ]␍␍ },␍ {␍␍ "nl":␍␍ [␍␍ {␍␍ "MoreStr":"Meer",␍␍ "GamesStr":"Games",␍␍ "CatHotstr":"Wat is hot",␍␍ "CatYouStr":"Games voor jou",␍␍ "CatNewStr":"Nieuw",␍␍ "CatSoonStr":"Binnenkort verwacht",␍␍ "CatAllStr":"Alle games",␍␍ "BuyNowStr":"KOOP NU",␍␍ "AlertTitleStr":":",␍␍ "AlertMsgStr":"Om toegang tot je gegevens te krijgen, deactiveer je de vliegtuigmodus of gebruik je Wi-Fi",␍␍ "AlertButStr":"OK",␍␍ "Cancel":"ANNULEREN",␍␍ "ServerErrMsg":"Deze dienst is tijdelijk niet beschikbaar.",␍␍ "NoContentMsg":"Er is geen content beschikbaar.",␍␍ "StaticPage":"dmg_staticpage_en.html"␍␍ }␍␍ ]␍␍ },␍ {␍␍ "pt":␍␍ [␍␍ {␍␍ "MoreStr":"Mais",␍␍ "GamesStr":"Jogos",␍␍ "CatHotstr":"Populares",␍␍ "CatYouStr":"Jogos para você",␍␍ "CatNewStr":"Nova",␍␍ "CatSoonStr":"EM BREVE",␍␍ "CatAllStr":"Todos os Jogos",␍␍ "BuyNowStr":"COMPRAR AGORA",␍␍ "AlertTitleStr":":",␍␍ "AlertMsgStr":"Para acessar seus dados, desative o modo avião ou use o Wi-Fi",␍␍ "AlertButStr":"OK",␍␍ "Cancel":"CANCELAR",␍␍ "ServerErrMsg":"No momento, esse serviço está indisponível.",␍␍ "NoContentMsg":"Não há conteúdo disponível.",␍␍ "StaticPage":"dmg_staticpage_en.html"␍␍ }␍␍ ]␍␍ } ␍ ␍ ]␍
|
||||
}␍
|
||||
|
After Width: | Height: | Size: 912 B |
@@ -0,0 +1,154 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>More EA Games</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0; user-scalable=0;" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
||||
|
||||
|
||||
<style type="text/css">
|
||||
/*Global Styles */
|
||||
* { margin:0;padding:0;-webkit-tap-highlight-color: rgba(0,0,0,0); }
|
||||
body { margin: 0px; min-height: 356px; font-family: Helvetica; background-color:#f4f4f4; }
|
||||
a{text-decoration:none;}
|
||||
img{border:0;}
|
||||
|
||||
/* Content */
|
||||
a.buynow{display:block; width: 71px; height: 24px; background-image:url(buy_now_dmg.png); background-repeat: no-repeat; background-position: 0 0; color: white; font-size: 13px; text-align: center; padding: 5px 0px 0px 1px;}
|
||||
|
||||
.featured{
|
||||
text-align:center; padding:5px 0px 5px 0px; border-width:1px 0;border-style:solid;border-top-color:#000000;border-bottom-color:#666; background-color: #ffffff; position:relative;}
|
||||
.featured img{ margin: 0 0px;}
|
||||
|
||||
/* List View */
|
||||
ul.list{background-color: #e1e1e1;color:#000;font:bold 18px Helvetica;margin:0;padding:0; position:relative;}
|
||||
ul.list li{height: 70px; margin:0;border-width:1px 0;border-style:solid;border-top-color:#f4f4f4;border-bottom-color:#666;height:64px; background-image:url(list_background.png);background-repeat:repeat-x; overflow:hidden; padding: 10px 10px 0px 10px; font-size: 12pt; font-family:Helvetica; list-style-type:none; clear:both; display:block;cursor:pointer; width: auto; position: relative; -webkit-transition-property: height; -webkit-transition-duration: 0.5s; -webkit-transition-timing-function: default;}
|
||||
ul.list li:nth-child(odd){background-color:#ececec;}
|
||||
ul.list li span{height:70px; width:auto; display:block; margin:0; padding:0; margin-right: 75px}
|
||||
ul.list li.open{ height:278px; background-repeat:no-repeat; -webkit-transition-property: height; -webkit-transition-duration: 0.5s; -webkit-transition-timing-function: default;}
|
||||
|
||||
ul.list li .C{height: 50px;}
|
||||
ul.list li .C>h3{font-size:.8em; font-weight:bold; margin-bottom: 2px;}
|
||||
ul.list li .C>p{font-size:.6em; font-weight:normal;}
|
||||
|
||||
ul.list li .L{float:left; width:64px; height:64px;}
|
||||
ul.list li span .C{height:57px; padding:0;}
|
||||
ul.list li .R{float:right; width:70px; height:25px;}
|
||||
ul.list li .screen{text-align:center; clear:both; margin:12px auto 0; padding: 5px 0 0 0; border-width:1px 0 0 0;border-style:solid;border-top-color:#999; }
|
||||
|
||||
/* Icon View */
|
||||
#AllGames{text-align:center;background-color:#f4f4f4;}
|
||||
ul.iconlist{ background-image: url(icon_background.png);background-repeat: repeat-x; background-position: top left; background-color:#eeeeee; margin:0 auto;padding:0 10px 5px;clear:both; overflow:auto;position:relative; text-align:center; border-width:1px 0;border-style:solid;border-top-color:#f4f4f4;width:auto;}
|
||||
ul.iconlist li img{margin:0; padding:4px;}
|
||||
ul.iconlist li{margin: 2px; width:70px; list-style-type:none;text-align:center; height:95px; float:left; display:block;}
|
||||
ul.iconlist li>h3{font-size:.6em; font-weight:bold; line-height: 1.1em; white-space:normal; margin-top: -5px;}
|
||||
|
||||
/*Containers */
|
||||
#window {position: relative;}
|
||||
#window li {position: relative;list-style-type: none;overflow: hidden;}
|
||||
#container{height: 369px;}
|
||||
|
||||
|
||||
/* Reposition on orientation change */
|
||||
body[class="portrait"] #container {height: 369px;}
|
||||
body[class="landscape"] #container {height: 208px;}
|
||||
body[class="landscape"] .featured img { margin: 0 20px;}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body class="portrait">
|
||||
<div id="container">
|
||||
<div id="window">
|
||||
|
||||
|
||||
<!-- List View -->
|
||||
<div id="New">
|
||||
<!-- Featured -->
|
||||
<div class="featured">
|
||||
<div id=feature_0>
|
||||
<a href="">
|
||||
<img src="tetris_banner.png"/>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Begin List, UL must have ID accordion for dropdown to work -->
|
||||
<ul class="list" id="accordion">
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
KAUFEN
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="monopolyclassic_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>MONOPOLY</h3>
|
||||
<p>Rücke auf LOS vor! Spiele den Brettspiel-Klassiker, in dem du alles besitzen kannst.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
KAUFEN
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="sims3_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>Die Sims 3</h3>
|
||||
<p>Lang leben Die Sims. In diesem Verkaufsschlager ist der Kreislauf des Lebens unendlich.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
KAUFEN
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="nfs_shift_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>Need for Speed Shift</h3>
|
||||
<p>Think Fast, Drive Faster! Erlebe den Rausch des Profi-Rennsports bis ins letzte Detail.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- Create new <li> here to add a panel -->
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<!-- End List View -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,154 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>More EA Games</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0; user-scalable=0;" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
||||
|
||||
|
||||
<style type="text/css">
|
||||
/*Global Styles */
|
||||
* { margin:0;padding:0;-webkit-tap-highlight-color: rgba(0,0,0,0); }
|
||||
body { margin: 0px; min-height: 356px; font-family: Helvetica; background-color:#f4f4f4; }
|
||||
a{text-decoration:none;}
|
||||
img{border:0;}
|
||||
|
||||
/* Content */
|
||||
a.buynow{display:block; width: 71px; height: 24px; background-image:url(buy_now_dmg.png); background-repeat: no-repeat; background-position: 0 0; color: white; font-size: 13px; text-align: center; padding: 5px 0px 0px 1px;}
|
||||
|
||||
.featured{
|
||||
text-align:center; padding:5px 0px 5px 0px; border-width:1px 0;border-style:solid;border-top-color:#000000;border-bottom-color:#666; background-color: #ffffff; position:relative;}
|
||||
.featured img{ margin: 0 0px;}
|
||||
|
||||
/* List View */
|
||||
ul.list{background-color: #e1e1e1;color:#000;font:bold 18px Helvetica;margin:0;padding:0; position:relative;}
|
||||
ul.list li{height: 70px; margin:0;border-width:1px 0;border-style:solid;border-top-color:#f4f4f4;border-bottom-color:#666;height:64px; background-image:url(list_background.png);background-repeat:repeat-x; overflow:hidden; padding: 10px 10px 0px 10px; font-size: 12pt; font-family:Helvetica; list-style-type:none; clear:both; display:block;cursor:pointer; width: auto; position: relative; -webkit-transition-property: height; -webkit-transition-duration: 0.5s; -webkit-transition-timing-function: default;}
|
||||
ul.list li:nth-child(odd){background-color:#ececec;}
|
||||
ul.list li span{height:70px; width:auto; display:block; margin:0; padding:0; margin-right: 75px}
|
||||
ul.list li.open{ height:278px; background-repeat:no-repeat; -webkit-transition-property: height; -webkit-transition-duration: 0.5s; -webkit-transition-timing-function: default;}
|
||||
|
||||
ul.list li .C{height: 50px;}
|
||||
ul.list li .C>h3{font-size:.8em; font-weight:bold; margin-bottom: 2px;}
|
||||
ul.list li .C>p{font-size:.6em; font-weight:normal;}
|
||||
|
||||
ul.list li .L{float:left; width:64px; height:64px;}
|
||||
ul.list li span .C{height:57px; padding:0;}
|
||||
ul.list li .R{float:right; width:70px; height:25px;}
|
||||
ul.list li .screen{text-align:center; clear:both; margin:12px auto 0; padding: 5px 0 0 0; border-width:1px 0 0 0;border-style:solid;border-top-color:#999; }
|
||||
|
||||
/* Icon View */
|
||||
#AllGames{text-align:center;background-color:#f4f4f4;}
|
||||
ul.iconlist{ background-image: url(icon_background.png);background-repeat: repeat-x; background-position: top left; background-color:#eeeeee; margin:0 auto;padding:0 10px 5px;clear:both; overflow:auto;position:relative; text-align:center; border-width:1px 0;border-style:solid;border-top-color:#f4f4f4;width:auto;}
|
||||
ul.iconlist li img{margin:0; padding:4px;}
|
||||
ul.iconlist li{margin: 2px; width:70px; list-style-type:none;text-align:center; height:95px; float:left; display:block;}
|
||||
ul.iconlist li>h3{font-size:.6em; font-weight:bold; line-height: 1.1em; white-space:normal; margin-top: -5px;}
|
||||
|
||||
/*Containers */
|
||||
#window {position: relative;}
|
||||
#window li {position: relative;list-style-type: none;overflow: hidden;}
|
||||
#container{height: 369px;}
|
||||
|
||||
|
||||
/* Reposition on orientation change */
|
||||
body[class="portrait"] #container {height: 369px;}
|
||||
body[class="landscape"] #container {height: 208px;}
|
||||
body[class="landscape"] .featured img { margin: 0 20px;}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body class="portrait">
|
||||
<div id="container">
|
||||
<div id="window">
|
||||
|
||||
|
||||
<!-- List View -->
|
||||
<div id="New">
|
||||
<!-- Featured -->
|
||||
<div class="featured">
|
||||
<div id=feature_0>
|
||||
<a href="">
|
||||
<img src="tetris_banner.png"/>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Begin List, UL must have ID accordion for dropdown to work -->
|
||||
<ul class="list" id="accordion">
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
BUY NOW
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="monopolyclassic_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>MONOPOLY</h3>
|
||||
<p>It's "Go" time! Play the original board game where you can own it all.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
BUY NOW
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="sims3_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>The Sims 3</h3>
|
||||
<p>Long live The Sims. The circle of life is infinite in the best-selling experience.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
BUY NOW
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="nfs_shift_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>Need for Speed Shift</h3>
|
||||
<p>Think fast! Drive faster! Experience every visceral detail of the pro circuit.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- Create new <li> here to add a panel -->
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<!-- End List View -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,154 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>More EA Games</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0; user-scalable=0;" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
||||
|
||||
|
||||
<style type="text/css">
|
||||
/*Global Styles */
|
||||
* { margin:0;padding:0;-webkit-tap-highlight-color: rgba(0,0,0,0); }
|
||||
body { margin: 0px; min-height: 356px; font-family: Helvetica; background-color:#f4f4f4; }
|
||||
a{text-decoration:none;}
|
||||
img{border:0;}
|
||||
|
||||
/* Content */
|
||||
a.buynow{display:block; width: 71px; height: 24px; background-image:url(buy_now_dmg.png); background-repeat: no-repeat; background-position: 0 0; color: white; font-size: 13px; text-align: center; padding: 5px 0px 0px 1px;}
|
||||
|
||||
.featured{
|
||||
text-align:center; padding:5px 0px 5px 0px; border-width:1px 0;border-style:solid;border-top-color:#000000;border-bottom-color:#666; background-color: #ffffff; position:relative;}
|
||||
.featured img{ margin: 0 0px;}
|
||||
|
||||
/* List View */
|
||||
ul.list{background-color: #e1e1e1;color:#000;font:bold 18px Helvetica;margin:0;padding:0; position:relative;}
|
||||
ul.list li{height: 70px; margin:0;border-width:1px 0;border-style:solid;border-top-color:#f4f4f4;border-bottom-color:#666;height:64px; background-image:url(list_background.png);background-repeat:repeat-x; overflow:hidden; padding: 10px 10px 0px 10px; font-size: 12pt; font-family:Helvetica; list-style-type:none; clear:both; display:block;cursor:pointer; width: auto; position: relative; -webkit-transition-property: height; -webkit-transition-duration: 0.5s; -webkit-transition-timing-function: default;}
|
||||
ul.list li:nth-child(odd){background-color:#ececec;}
|
||||
ul.list li span{height:70px; width:auto; display:block; margin:0; padding:0; margin-right: 75px}
|
||||
ul.list li.open{ height:278px; background-repeat:no-repeat; -webkit-transition-property: height; -webkit-transition-duration: 0.5s; -webkit-transition-timing-function: default;}
|
||||
|
||||
ul.list li .C{height: 50px;}
|
||||
ul.list li .C>h3{font-size:.8em; font-weight:bold; margin-bottom: 2px;}
|
||||
ul.list li .C>p{font-size:.6em; font-weight:normal;}
|
||||
|
||||
ul.list li .L{float:left; width:64px; height:64px;}
|
||||
ul.list li span .C{height:57px; padding:0;}
|
||||
ul.list li .R{float:right; width:70px; height:25px;}
|
||||
ul.list li .screen{text-align:center; clear:both; margin:12px auto 0; padding: 5px 0 0 0; border-width:1px 0 0 0;border-style:solid;border-top-color:#999; }
|
||||
|
||||
/* Icon View */
|
||||
#AllGames{text-align:center;background-color:#f4f4f4;}
|
||||
ul.iconlist{ background-image: url(icon_background.png);background-repeat: repeat-x; background-position: top left; background-color:#eeeeee; margin:0 auto;padding:0 10px 5px;clear:both; overflow:auto;position:relative; text-align:center; border-width:1px 0;border-style:solid;border-top-color:#f4f4f4;width:auto;}
|
||||
ul.iconlist li img{margin:0; padding:4px;}
|
||||
ul.iconlist li{margin: 2px; width:70px; list-style-type:none;text-align:center; height:95px; float:left; display:block;}
|
||||
ul.iconlist li>h3{font-size:.6em; font-weight:bold; line-height: 1.1em; white-space:normal; margin-top: -5px;}
|
||||
|
||||
/*Containers */
|
||||
#window {position: relative;}
|
||||
#window li {position: relative;list-style-type: none;overflow: hidden;}
|
||||
#container{height: 369px;}
|
||||
|
||||
|
||||
/* Reposition on orientation change */
|
||||
body[class="portrait"] #container {height: 369px;}
|
||||
body[class="landscape"] #container {height: 208px;}
|
||||
body[class="landscape"] .featured img { margin: 0 20px;}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body class="portrait">
|
||||
<div id="container">
|
||||
<div id="window">
|
||||
|
||||
|
||||
<!-- List View -->
|
||||
<div id="New">
|
||||
<!-- Featured -->
|
||||
<div class="featured">
|
||||
<div id=feature_0>
|
||||
<a href="">
|
||||
<img src="tetris_banner.png"/>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Begin List, UL must have ID accordion for dropdown to work -->
|
||||
<ul class="list" id="accordion">
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
COMPRAR
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="monopolyclassic_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>MONOPOLY</h3>
|
||||
<p>¡Te toca! Juega al clásico juego de mesa en el que puedes ganarlo todo.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
COMPRAR
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="sims3_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>Los Sims 3</h3>
|
||||
<p>Larga vida a los Sims. El círculo de la vida no tiene fin en este gran éxito mundial.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
COMPRAR
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="nfs_shift_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>Need for Speed Shift</h3>
|
||||
<p>¡Piensa rápido, conduce aún más rápido! Siente la emoción del circuito profesional.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- Create new <li> here to add a panel -->
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<!-- End List View -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,154 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>More EA Games</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0; user-scalable=0;" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
||||
|
||||
|
||||
<style type="text/css">
|
||||
/*Global Styles */
|
||||
* { margin:0;padding:0;-webkit-tap-highlight-color: rgba(0,0,0,0); }
|
||||
body { margin: 0px; min-height: 356px; font-family: Helvetica; background-color:#f4f4f4; }
|
||||
a{text-decoration:none;}
|
||||
img{border:0;}
|
||||
|
||||
/* Content */
|
||||
a.buynow{display:block; width: 71px; height: 24px; background-image:url(buy_now_dmg.png); background-repeat: no-repeat; background-position: 0 0; color: white; font-size: 13px; text-align: center; padding: 5px 0px 0px 1px;}
|
||||
|
||||
.featured{
|
||||
text-align:center; padding:5px 0px 5px 0px; border-width:1px 0;border-style:solid;border-top-color:#000000;border-bottom-color:#666; background-color: #ffffff; position:relative;}
|
||||
.featured img{ margin: 0 0px;}
|
||||
|
||||
/* List View */
|
||||
ul.list{background-color: #e1e1e1;color:#000;font:bold 18px Helvetica;margin:0;padding:0; position:relative;}
|
||||
ul.list li{height: 70px; margin:0;border-width:1px 0;border-style:solid;border-top-color:#f4f4f4;border-bottom-color:#666;height:64px; background-image:url(list_background.png);background-repeat:repeat-x; overflow:hidden; padding: 10px 10px 0px 10px; font-size: 12pt; font-family:Helvetica; list-style-type:none; clear:both; display:block;cursor:pointer; width: auto; position: relative; -webkit-transition-property: height; -webkit-transition-duration: 0.5s; -webkit-transition-timing-function: default;}
|
||||
ul.list li:nth-child(odd){background-color:#ececec;}
|
||||
ul.list li span{height:70px; width:auto; display:block; margin:0; padding:0; margin-right: 75px}
|
||||
ul.list li.open{ height:278px; background-repeat:no-repeat; -webkit-transition-property: height; -webkit-transition-duration: 0.5s; -webkit-transition-timing-function: default;}
|
||||
|
||||
ul.list li .C{height: 50px;}
|
||||
ul.list li .C>h3{font-size:.8em; font-weight:bold; margin-bottom: 2px;}
|
||||
ul.list li .C>p{font-size:.6em; font-weight:normal;}
|
||||
|
||||
ul.list li .L{float:left; width:64px; height:64px;}
|
||||
ul.list li span .C{height:57px; padding:0;}
|
||||
ul.list li .R{float:right; width:70px; height:25px;}
|
||||
ul.list li .screen{text-align:center; clear:both; margin:12px auto 0; padding: 5px 0 0 0; border-width:1px 0 0 0;border-style:solid;border-top-color:#999; }
|
||||
|
||||
/* Icon View */
|
||||
#AllGames{text-align:center;background-color:#f4f4f4;}
|
||||
ul.iconlist{ background-image: url(icon_background.png);background-repeat: repeat-x; background-position: top left; background-color:#eeeeee; margin:0 auto;padding:0 10px 5px;clear:both; overflow:auto;position:relative; text-align:center; border-width:1px 0;border-style:solid;border-top-color:#f4f4f4;width:auto;}
|
||||
ul.iconlist li img{margin:0; padding:4px;}
|
||||
ul.iconlist li{margin: 2px; width:70px; list-style-type:none;text-align:center; height:95px; float:left; display:block;}
|
||||
ul.iconlist li>h3{font-size:.6em; font-weight:bold; line-height: 1.1em; white-space:normal; margin-top: -5px;}
|
||||
|
||||
/*Containers */
|
||||
#window {position: relative;}
|
||||
#window li {position: relative;list-style-type: none;overflow: hidden;}
|
||||
#container{height: 369px;}
|
||||
|
||||
|
||||
/* Reposition on orientation change */
|
||||
body[class="portrait"] #container {height: 369px;}
|
||||
body[class="landscape"] #container {height: 208px;}
|
||||
body[class="landscape"] .featured img { margin: 0 20px;}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body class="portrait">
|
||||
<div id="container">
|
||||
<div id="window">
|
||||
|
||||
|
||||
<!-- List View -->
|
||||
<div id="New">
|
||||
<!-- Featured -->
|
||||
<div class="featured">
|
||||
<div id=feature_0>
|
||||
<a href="">
|
||||
<img src="tetris_banner.png"/>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Begin List, UL must have ID accordion for dropdown to work -->
|
||||
<ul class="list" id="accordion">
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
ACHETER
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="monopolyclassic_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>MONOPOLY</h3>
|
||||
<p>Avancez jusqu'à la case DÉPART ! Jouez à votre jeu de transactions immobilières préféré.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
ACHETER
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="sims3_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>Les Sims 3</h3>
|
||||
<p>Vive les Sims ! Découvrez le cercle de la vie infini avec ce titre incontournable.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
ACHETER
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="nfs_shift_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>Need for Speed Shift</h3>
|
||||
<p>Un esprit vif dans un bolide encore plus vif ! Éprouvez l'excitation des courses de rue.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- Create new <li> here to add a panel -->
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<!-- End List View -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,154 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>More EA Games</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0; user-scalable=0;" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
||||
|
||||
|
||||
<style type="text/css">
|
||||
/*Global Styles */
|
||||
* { margin:0;padding:0;-webkit-tap-highlight-color: rgba(0,0,0,0); }
|
||||
body { margin: 0px; min-height: 356px; font-family: Helvetica; background-color:#f4f4f4; }
|
||||
a{text-decoration:none;}
|
||||
img{border:0;}
|
||||
|
||||
/* Content */
|
||||
a.buynow{display:block; width: 71px; height: 24px; background-image:url(buy_now_dmg.png); background-repeat: no-repeat; background-position: 0 0; color: white; font-size: 13px; text-align: center; padding: 5px 0px 0px 1px;}
|
||||
|
||||
.featured{
|
||||
text-align:center; padding:5px 0px 5px 0px; border-width:1px 0;border-style:solid;border-top-color:#000000;border-bottom-color:#666; background-color: #ffffff; position:relative;}
|
||||
.featured img{ margin: 0 0px;}
|
||||
|
||||
/* List View */
|
||||
ul.list{background-color: #e1e1e1;color:#000;font:bold 18px Helvetica;margin:0;padding:0; position:relative;}
|
||||
ul.list li{height: 70px; margin:0;border-width:1px 0;border-style:solid;border-top-color:#f4f4f4;border-bottom-color:#666;height:64px; background-image:url(list_background.png);background-repeat:repeat-x; overflow:hidden; padding: 10px 10px 0px 10px; font-size: 12pt; font-family:Helvetica; list-style-type:none; clear:both; display:block;cursor:pointer; width: auto; position: relative; -webkit-transition-property: height; -webkit-transition-duration: 0.5s; -webkit-transition-timing-function: default;}
|
||||
ul.list li:nth-child(odd){background-color:#ececec;}
|
||||
ul.list li span{height:70px; width:auto; display:block; margin:0; padding:0; margin-right: 75px}
|
||||
ul.list li.open{ height:278px; background-repeat:no-repeat; -webkit-transition-property: height; -webkit-transition-duration: 0.5s; -webkit-transition-timing-function: default;}
|
||||
|
||||
ul.list li .C{height: 50px;}
|
||||
ul.list li .C>h3{font-size:.8em; font-weight:bold; margin-bottom: 2px;}
|
||||
ul.list li .C>p{font-size:.6em; font-weight:normal;}
|
||||
|
||||
ul.list li .L{float:left; width:64px; height:64px;}
|
||||
ul.list li span .C{height:57px; padding:0;}
|
||||
ul.list li .R{float:right; width:70px; height:25px;}
|
||||
ul.list li .screen{text-align:center; clear:both; margin:12px auto 0; padding: 5px 0 0 0; border-width:1px 0 0 0;border-style:solid;border-top-color:#999; }
|
||||
|
||||
/* Icon View */
|
||||
#AllGames{text-align:center;background-color:#f4f4f4;}
|
||||
ul.iconlist{ background-image: url(icon_background.png);background-repeat: repeat-x; background-position: top left; background-color:#eeeeee; margin:0 auto;padding:0 10px 5px;clear:both; overflow:auto;position:relative; text-align:center; border-width:1px 0;border-style:solid;border-top-color:#f4f4f4;width:auto;}
|
||||
ul.iconlist li img{margin:0; padding:4px;}
|
||||
ul.iconlist li{margin: 2px; width:70px; list-style-type:none;text-align:center; height:95px; float:left; display:block;}
|
||||
ul.iconlist li>h3{font-size:.6em; font-weight:bold; line-height: 1.1em; white-space:normal; margin-top: -5px;}
|
||||
|
||||
/*Containers */
|
||||
#window {position: relative;}
|
||||
#window li {position: relative;list-style-type: none;overflow: hidden;}
|
||||
#container{height: 369px;}
|
||||
|
||||
|
||||
/* Reposition on orientation change */
|
||||
body[class="portrait"] #container {height: 369px;}
|
||||
body[class="landscape"] #container {height: 208px;}
|
||||
body[class="landscape"] .featured img { margin: 0 20px;}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body class="portrait">
|
||||
<div id="container">
|
||||
<div id="window">
|
||||
|
||||
|
||||
<!-- List View -->
|
||||
<div id="New">
|
||||
<!-- Featured -->
|
||||
<div class="featured">
|
||||
<div id=feature_0>
|
||||
<a href="">
|
||||
<img src="tetris_banner.png"/>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Begin List, UL must have ID accordion for dropdown to work -->
|
||||
<ul class="list" id="accordion">
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
COMPRA
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="monopolyclassic_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>MONOPOLY</h3>
|
||||
<p>È ora di passare dal “Via”! Monopolizza tutto nel gioco da tavolo per eccellenza.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
COMPRA
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="sims3_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>The Sims 3</h3>
|
||||
<p>Lunga vita ai Sims. Le novità non finiscono mai con questo gioco campione di vendite.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
COMPRA
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="nfs_shift_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>Need for Speed Shift</h3>
|
||||
<p>Pensa veloce, guida come un fulmine! Prova il brivido del circuito per professionisti.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- Create new <li> here to add a panel -->
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<!-- End List View -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,154 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>More EA Games</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0; user-scalable=0;" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
||||
|
||||
|
||||
<style type="text/css">
|
||||
/*Global Styles */
|
||||
* { margin:0;padding:0;-webkit-tap-highlight-color: rgba(0,0,0,0); }
|
||||
body { margin: 0px; min-height: 356px; font-family: Helvetica; background-color:#f4f4f4; }
|
||||
a{text-decoration:none;}
|
||||
img{border:0;}
|
||||
|
||||
/* Content */
|
||||
a.buynow{display:block; width: 71px; height: 24px; background-image:url(buy_now_dmg.png); background-repeat: no-repeat; background-position: 0 0; color: white; font-size: 13px; text-align: center; padding: 5px 0px 0px 1px;}
|
||||
|
||||
.featured{
|
||||
text-align:center; padding:5px 0px 5px 0px; border-width:1px 0;border-style:solid;border-top-color:#000000;border-bottom-color:#666; background-color: #ffffff; position:relative;}
|
||||
.featured img{ margin: 0 0px;}
|
||||
|
||||
/* List View */
|
||||
ul.list{background-color: #e1e1e1;color:#000;font:bold 18px Helvetica;margin:0;padding:0; position:relative;}
|
||||
ul.list li{height: 70px; margin:0;border-width:1px 0;border-style:solid;border-top-color:#f4f4f4;border-bottom-color:#666;height:64px; background-image:url(list_background.png);background-repeat:repeat-x; overflow:hidden; padding: 10px 10px 0px 10px; font-size: 12pt; font-family:Helvetica; list-style-type:none; clear:both; display:block;cursor:pointer; width: auto; position: relative; -webkit-transition-property: height; -webkit-transition-duration: 0.5s; -webkit-transition-timing-function: default;}
|
||||
ul.list li:nth-child(odd){background-color:#ececec;}
|
||||
ul.list li span{height:70px; width:auto; display:block; margin:0; padding:0; margin-right: 75px}
|
||||
ul.list li.open{ height:278px; background-repeat:no-repeat; -webkit-transition-property: height; -webkit-transition-duration: 0.5s; -webkit-transition-timing-function: default;}
|
||||
|
||||
ul.list li .C{height: 50px;}
|
||||
ul.list li .C>h3{font-size:.8em; font-weight:bold; margin-bottom: 2px;}
|
||||
ul.list li .C>p{font-size:.6em; font-weight:normal;}
|
||||
|
||||
ul.list li .L{float:left; width:64px; height:64px;}
|
||||
ul.list li span .C{height:57px; padding:0;}
|
||||
ul.list li .R{float:right; width:70px; height:25px;}
|
||||
ul.list li .screen{text-align:center; clear:both; margin:12px auto 0; padding: 5px 0 0 0; border-width:1px 0 0 0;border-style:solid;border-top-color:#999; }
|
||||
|
||||
/* Icon View */
|
||||
#AllGames{text-align:center;background-color:#f4f4f4;}
|
||||
ul.iconlist{ background-image: url(icon_background.png);background-repeat: repeat-x; background-position: top left; background-color:#eeeeee; margin:0 auto;padding:0 10px 5px;clear:both; overflow:auto;position:relative; text-align:center; border-width:1px 0;border-style:solid;border-top-color:#f4f4f4;width:auto;}
|
||||
ul.iconlist li img{margin:0; padding:4px;}
|
||||
ul.iconlist li{margin: 2px; width:70px; list-style-type:none;text-align:center; height:95px; float:left; display:block;}
|
||||
ul.iconlist li>h3{font-size:.6em; font-weight:bold; line-height: 1.1em; white-space:normal; margin-top: -5px;}
|
||||
|
||||
/*Containers */
|
||||
#window {position: relative;}
|
||||
#window li {position: relative;list-style-type: none;overflow: hidden;}
|
||||
#container{height: 369px;}
|
||||
|
||||
|
||||
/* Reposition on orientation change */
|
||||
body[class="portrait"] #container {height: 369px;}
|
||||
body[class="landscape"] #container {height: 208px;}
|
||||
body[class="landscape"] .featured img { margin: 0 20px;}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body class="portrait">
|
||||
<div id="container">
|
||||
<div id="window">
|
||||
|
||||
|
||||
<!-- List View -->
|
||||
<div id="New">
|
||||
<!-- Featured -->
|
||||
<div class="featured">
|
||||
<div id=feature_0>
|
||||
<a href="">
|
||||
<img src="tetris_banner.png"/>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Begin List, UL must have ID accordion for dropdown to work -->
|
||||
<ul class="list" id="accordion">
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
購入
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="monopolyclassic_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>MONOPOLY</h3>
|
||||
<p>MonopolyでGo!全てを独占できるボードゲームの元祖をプレイしましょう!</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
購入
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="sims3_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>The Sims 3</h3>
|
||||
<p>シム万歳!ベストセラーゲームの勢いは止まらない!</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
購入
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="nfs_shift_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>Need for Speed Shift</h3>
|
||||
<p>音速の判断力!#1レースフランチャイズでプロストリートバトルの迫力を体験しましょう!</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- Create new <li> here to add a panel -->
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<!-- End List View -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,154 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>More EA Games</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0; user-scalable=0;" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
||||
|
||||
|
||||
<style type="text/css">
|
||||
/*Global Styles */
|
||||
* { margin:0;padding:0;-webkit-tap-highlight-color: rgba(0,0,0,0); }
|
||||
body { margin: 0px; min-height: 356px; font-family: Helvetica; background-color:#f4f4f4; }
|
||||
a{text-decoration:none;}
|
||||
img{border:0;}
|
||||
|
||||
/* Content */
|
||||
a.buynow{display:block; width: 71px; height: 24px; background-image:url(buy_now_dmg.png); background-repeat: no-repeat; background-position: 0 0; color: white; font-size: 13px; text-align: center; padding: 5px 0px 0px 1px;}
|
||||
|
||||
.featured{
|
||||
text-align:center; padding:5px 0px 5px 0px; border-width:1px 0;border-style:solid;border-top-color:#000000;border-bottom-color:#666; background-color: #ffffff; position:relative;}
|
||||
.featured img{ margin: 0 0px;}
|
||||
|
||||
/* List View */
|
||||
ul.list{background-color: #e1e1e1;color:#000;font:bold 18px Helvetica;margin:0;padding:0; position:relative;}
|
||||
ul.list li{height: 70px; margin:0;border-width:1px 0;border-style:solid;border-top-color:#f4f4f4;border-bottom-color:#666;height:64px; background-image:url(list_background.png);background-repeat:repeat-x; overflow:hidden; padding: 10px 10px 0px 10px; font-size: 12pt; font-family:Helvetica; list-style-type:none; clear:both; display:block;cursor:pointer; width: auto; position: relative; -webkit-transition-property: height; -webkit-transition-duration: 0.5s; -webkit-transition-timing-function: default;}
|
||||
ul.list li:nth-child(odd){background-color:#ececec;}
|
||||
ul.list li span{height:70px; width:auto; display:block; margin:0; padding:0; margin-right: 75px}
|
||||
ul.list li.open{ height:278px; background-repeat:no-repeat; -webkit-transition-property: height; -webkit-transition-duration: 0.5s; -webkit-transition-timing-function: default;}
|
||||
|
||||
ul.list li .C{height: 50px;}
|
||||
ul.list li .C>h3{font-size:.8em; font-weight:bold; margin-bottom: 2px;}
|
||||
ul.list li .C>p{font-size:.6em; font-weight:normal;}
|
||||
|
||||
ul.list li .L{float:left; width:64px; height:64px;}
|
||||
ul.list li span .C{height:57px; padding:0;}
|
||||
ul.list li .R{float:right; width:70px; height:25px;}
|
||||
ul.list li .screen{text-align:center; clear:both; margin:12px auto 0; padding: 5px 0 0 0; border-width:1px 0 0 0;border-style:solid;border-top-color:#999; }
|
||||
|
||||
/* Icon View */
|
||||
#AllGames{text-align:center;background-color:#f4f4f4;}
|
||||
ul.iconlist{ background-image: url(icon_background.png);background-repeat: repeat-x; background-position: top left; background-color:#eeeeee; margin:0 auto;padding:0 10px 5px;clear:both; overflow:auto;position:relative; text-align:center; border-width:1px 0;border-style:solid;border-top-color:#f4f4f4;width:auto;}
|
||||
ul.iconlist li img{margin:0; padding:4px;}
|
||||
ul.iconlist li{margin: 2px; width:70px; list-style-type:none;text-align:center; height:95px; float:left; display:block;}
|
||||
ul.iconlist li>h3{font-size:.6em; font-weight:bold; line-height: 1.1em; white-space:normal; margin-top: -5px;}
|
||||
|
||||
/*Containers */
|
||||
#window {position: relative;}
|
||||
#window li {position: relative;list-style-type: none;overflow: hidden;}
|
||||
#container{height: 369px;}
|
||||
|
||||
|
||||
/* Reposition on orientation change */
|
||||
body[class="portrait"] #container {height: 369px;}
|
||||
body[class="landscape"] #container {height: 208px;}
|
||||
body[class="landscape"] .featured img { margin: 0 20px;}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body class="portrait">
|
||||
<div id="container">
|
||||
<div id="window">
|
||||
|
||||
|
||||
<!-- List View -->
|
||||
<div id="New">
|
||||
<!-- Featured -->
|
||||
<div class="featured">
|
||||
<div id=feature_0>
|
||||
<a href="">
|
||||
<img src="tetris_banner.png"/>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Begin List, UL must have ID accordion for dropdown to work -->
|
||||
<ul class="list" id="accordion">
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
구매하기
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="monopolyclassic_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>MONOPOLY</h3>
|
||||
<p>It's "Go" time! Play the original board game where you can own it all.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
구매하기
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="sims3_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>The Sims 3</h3>
|
||||
<p>Long live The Sims. The circle of life is infinite in the best-selling experience.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
구매하기
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="nfs_shift_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>Need for Speed Shift</h3>
|
||||
<p>Think fast! Drive faster! Experience every visceral detail of the pro circuit.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- Create new <li> here to add a panel -->
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<!-- End List View -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,154 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||
<head>
|
||||
<title>More EA Games</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<meta name="viewport" content="width=device-width, minimum-scale=1.0, maximum-scale=1.0; user-scalable=0;" />
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
||||
|
||||
|
||||
<style type="text/css">
|
||||
/*Global Styles */
|
||||
* { margin:0;padding:0;-webkit-tap-highlight-color: rgba(0,0,0,0); }
|
||||
body { margin: 0px; min-height: 356px; font-family: Helvetica; background-color:#f4f4f4; }
|
||||
a{text-decoration:none;}
|
||||
img{border:0;}
|
||||
|
||||
/* Content */
|
||||
a.buynow{display:block; width: 71px; height: 24px; background-image:url(buy_now_dmg.png); background-repeat: no-repeat; background-position: 0 0; color: white; font-size: 13px; text-align: center; padding: 5px 0px 0px 1px;}
|
||||
|
||||
.featured{
|
||||
text-align:center; padding:5px 0px 5px 0px; border-width:1px 0;border-style:solid;border-top-color:#000000;border-bottom-color:#666; background-color: #ffffff; position:relative;}
|
||||
.featured img{ margin: 0 0px;}
|
||||
|
||||
/* List View */
|
||||
ul.list{background-color: #e1e1e1;color:#000;font:bold 18px Helvetica;margin:0;padding:0; position:relative;}
|
||||
ul.list li{height: 70px; margin:0;border-width:1px 0;border-style:solid;border-top-color:#f4f4f4;border-bottom-color:#666;height:64px; background-image:url(list_background.png);background-repeat:repeat-x; overflow:hidden; padding: 10px 10px 0px 10px; font-size: 12pt; font-family:Helvetica; list-style-type:none; clear:both; display:block;cursor:pointer; width: auto; position: relative; -webkit-transition-property: height; -webkit-transition-duration: 0.5s; -webkit-transition-timing-function: default;}
|
||||
ul.list li:nth-child(odd){background-color:#ececec;}
|
||||
ul.list li span{height:70px; width:auto; display:block; margin:0; padding:0; margin-right: 75px}
|
||||
ul.list li.open{ height:278px; background-repeat:no-repeat; -webkit-transition-property: height; -webkit-transition-duration: 0.5s; -webkit-transition-timing-function: default;}
|
||||
|
||||
ul.list li .C{height: 50px;}
|
||||
ul.list li .C>h3{font-size:.8em; font-weight:bold; margin-bottom: 2px;}
|
||||
ul.list li .C>p{font-size:.6em; font-weight:normal;}
|
||||
|
||||
ul.list li .L{float:left; width:64px; height:64px;}
|
||||
ul.list li span .C{height:57px; padding:0;}
|
||||
ul.list li .R{float:right; width:70px; height:25px;}
|
||||
ul.list li .screen{text-align:center; clear:both; margin:12px auto 0; padding: 5px 0 0 0; border-width:1px 0 0 0;border-style:solid;border-top-color:#999; }
|
||||
|
||||
/* Icon View */
|
||||
#AllGames{text-align:center;background-color:#f4f4f4;}
|
||||
ul.iconlist{ background-image: url(icon_background.png);background-repeat: repeat-x; background-position: top left; background-color:#eeeeee; margin:0 auto;padding:0 10px 5px;clear:both; overflow:auto;position:relative; text-align:center; border-width:1px 0;border-style:solid;border-top-color:#f4f4f4;width:auto;}
|
||||
ul.iconlist li img{margin:0; padding:4px;}
|
||||
ul.iconlist li{margin: 2px; width:70px; list-style-type:none;text-align:center; height:95px; float:left; display:block;}
|
||||
ul.iconlist li>h3{font-size:.6em; font-weight:bold; line-height: 1.1em; white-space:normal; margin-top: -5px;}
|
||||
|
||||
/*Containers */
|
||||
#window {position: relative;}
|
||||
#window li {position: relative;list-style-type: none;overflow: hidden;}
|
||||
#container{height: 369px;}
|
||||
|
||||
|
||||
/* Reposition on orientation change */
|
||||
body[class="portrait"] #container {height: 369px;}
|
||||
body[class="landscape"] #container {height: 208px;}
|
||||
body[class="landscape"] .featured img { margin: 0 20px;}
|
||||
|
||||
</style>
|
||||
|
||||
</head>
|
||||
<body class="portrait">
|
||||
<div id="container">
|
||||
<div id="window">
|
||||
|
||||
|
||||
<!-- List View -->
|
||||
<div id="New">
|
||||
<!-- Featured -->
|
||||
<div class="featured">
|
||||
<div id=feature_0>
|
||||
<a href="">
|
||||
<img src="tetris_banner.png"/>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<!-- Begin List, UL must have ID accordion for dropdown to work -->
|
||||
<ul class="list" id="accordion">
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
购买
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="monopolyclassic_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>MONOPOLY</h3>
|
||||
<p>It's "Go" time! Play the original board game where you can own it all.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
购买
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="sims3_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>The Sims 3</h3>
|
||||
<p>Long live The Sims. The circle of life is infinite in the best-selling experience.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- List Item -->
|
||||
<li>
|
||||
<!-- Buy Now button, Span is dropdown hit area -->
|
||||
<div class="R">
|
||||
<a id="buynow" class="buynow" href="">
|
||||
购买
|
||||
</a>
|
||||
</div>
|
||||
<!-- Icon -->
|
||||
<span>
|
||||
<div class="L"><img src="nfs_shift_icon.png" id="img" /></div>
|
||||
<!-- Description -->
|
||||
<div class="C">
|
||||
<h3>Need for Speed Shift</h3>
|
||||
<p>Think fast! Drive faster! Experience every visceral detail of the pro circuit.</p>
|
||||
</div>
|
||||
</span>
|
||||
</li>
|
||||
<!-- End List Item -->
|
||||
|
||||
<!-- Create new <li> here to add a panel -->
|
||||
|
||||
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
<!-- End List View -->
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
After Width: | Height: | Size: 520 B |
|
After Width: | Height: | Size: 7.2 KiB |
|
After Width: | Height: | Size: 8.2 KiB |
|
After Width: | Height: | Size: 5.8 KiB |
|
After Width: | Height: | Size: 25 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1,36 @@
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIGWDCCBUCgAwIBAgIQCl8RTQNbF5EX0u/UA4w/OzANBgkqhkiG9w0BAQUFADBs
|
||||
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
|
||||
d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j
|
||||
ZSBFViBSb290IENBMB4XDTA4MDQwMjEyMDAwMFoXDTIyMDQwMzAwMDAwMFowZjEL
|
||||
MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3
|
||||
LmRpZ2ljZXJ0LmNvbTElMCMGA1UEAxMcRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug
|
||||
Q0EtMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL9hCikQH17+NDdR
|
||||
CPge+yLtYb4LDXBMUGMmdRW5QYiXtvCgFbsIYOBC6AUpEIc2iihlqO8xB3RtNpcv
|
||||
KEZmBMcqeSZ6mdWOw21PoF6tvD2Rwll7XjZswFPPAAgyPhBkWBATaccM7pxCUQD5
|
||||
BUTuJM56H+2MEb0SqPMV9Bx6MWkBG6fmXcCabH4JnudSREoQOiPkm7YDr6ictFuf
|
||||
1EutkozOtREqqjcYjbTCuNhcBoz4/yO9NV7UfD5+gw6RlgWYw7If48hl66l7XaAs
|
||||
zPw82W3tzPpLQ4zJ1LilYRyyQLYoEt+5+F/+07LJ7z20Hkt8HEyZNp496+ynaF4d
|
||||
32duXvsCAwEAAaOCAvowggL2MA4GA1UdDwEB/wQEAwIBhjCCAcYGA1UdIASCAb0w
|
||||
ggG5MIIBtQYLYIZIAYb9bAEDAAIwggGkMDoGCCsGAQUFBwIBFi5odHRwOi8vd3d3
|
||||
LmRpZ2ljZXJ0LmNvbS9zc2wtY3BzLXJlcG9zaXRvcnkuaHRtMIIBZAYIKwYBBQUH
|
||||
AgIwggFWHoIBUgBBAG4AeQAgAHUAcwBlACAAbwBmACAAdABoAGkAcwAgAEMAZQBy
|
||||
AHQAaQBmAGkAYwBhAHQAZQAgAGMAbwBuAHMAdABpAHQAdQB0AGUAcwAgAGEAYwBj
|
||||
AGUAcAB0AGEAbgBjAGUAIABvAGYAIAB0AGgAZQAgAEQAaQBnAGkAQwBlAHIAdAAg
|
||||
AEMAUAAvAEMAUABTACAAYQBuAGQAIAB0AGgAZQAgAFIAZQBsAHkAaQBuAGcAIABQ
|
||||
AGEAcgB0AHkAIABBAGcAcgBlAGUAbQBlAG4AdAAgAHcAaABpAGMAaAAgAGwAaQBt
|
||||
AGkAdAAgAGwAaQBhAGIAaQBsAGkAdAB5ACAAYQBuAGQAIABhAHIAZQAgAGkAbgBj
|
||||
AG8AcgBwAG8AcgBhAHQAZQBkACAAaABlAHIAZQBpAG4AIABiAHkAIAByAGUAZgBl
|
||||
AHIAZQBuAGMAZQAuMBIGA1UdEwEB/wQIMAYBAf8CAQAwNAYIKwYBBQUHAQEEKDAm
|
||||
MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wgY8GA1UdHwSB
|
||||
hzCBhDBAoD6gPIY6aHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGln
|
||||
aEFzc3VyYW5jZUVWUm9vdENBLmNybDBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNl
|
||||
cnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDAfBgNVHSME
|
||||
GDAWgBSxPsNpA/i/RwHUmCYaCALvY2QrwzAdBgNVHQ4EFgQUUOpzidsp+xCPnuUB
|
||||
INTeeZlIg/cwDQYJKoZIhvcNAQEFBQADggEBAB7ipUiebNtTOA/vphoqrOIDQ+2a
|
||||
vD6OdRvw/S4iWawTwGHi5/rpmc2HCXVUKL9GYNy+USyS8xuRfDEIcOI3ucFbqL2j
|
||||
CwD7GhX9A61YasXHJJlIR0YxHpLvtF9ONMeQvzHB+LGEhtCcAarfilYGzjrpDq6X
|
||||
dF3XcZpCdF/ejUN83ulV7WkAywXgemFhM9EZTfkI7qA5xSU1tyvED7Ld8aW3DiTE
|
||||
JiiNeXf1L/BXunwH1OH8zVowV36GEEfdMR/X/KLCvzB8XSSq6PmuX2p0ws5rs0bY
|
||||
Ib4p1I5eFdZCSucyb6Sxa1GDWL4/bcf72gMhy2oWGU4K8K2Eyl2Us1p292E=
|
||||
-----END CERTIFICATE-----
|
||||
@@ -0,0 +1,23 @@
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs
|
||||
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
|
||||
d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j
|
||||
ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL
|
||||
MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3
|
||||
LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug
|
||||
RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm
|
||||
+9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW
|
||||
PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM
|
||||
xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB
|
||||
Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3
|
||||
hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg
|
||||
EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF
|
||||
MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA
|
||||
FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec
|
||||
nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z
|
||||
eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF
|
||||
hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2
|
||||
Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe
|
||||
vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep
|
||||
+OkuE6N36B9K
|
||||
-----END CERTIFICATE-----
|
||||
@@ -0,0 +1,20 @@
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIDVDCCAjygAwIBAgIDAjRWMA0GCSqGSIb3DQEBBQUAMEIxCzAJBgNVBAYTAlVT
|
||||
MRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i
|
||||
YWwgQ0EwHhcNMDIwNTIxMDQwMDAwWhcNMjIwNTIxMDQwMDAwWjBCMQswCQYDVQQG
|
||||
EwJVUzEWMBQGA1UEChMNR2VvVHJ1c3QgSW5jLjEbMBkGA1UEAxMSR2VvVHJ1c3Qg
|
||||
R2xvYmFsIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2swYYzD9
|
||||
9BcjGlZ+W988bDjkcbd4kdS8odhM+KhDtgPpTSEHCIjaWC9mOSm9BXiLnTjoBbdq
|
||||
fnGk5sRgprDvgOSJKA+eJdbtg/OtppHHmMlCGDUUna2YRpIuT8rxh0PBFpVXLVDv
|
||||
iS2Aelet8u5fa9IAjbkU+BQVNdnARqN7csiRv8lVK83Qlz6cJmTM386DGXHKTubU
|
||||
1XupGc1V3sjs0l44U+VcT4wt/lAjNvxm5suOpDkZALeVAjmRCw7+OC7RHQWa9k0+
|
||||
bw8HHa8sHo9gOeL6NlMTOdReJivbPagUvTLrGAMoUgRx5aszPeE4uwc2hGKceeoW
|
||||
MPRfwCvocWvk+QIDAQABo1MwUTAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTA
|
||||
ephojYn7qwVkDBF9qn1luMrMTjAfBgNVHSMEGDAWgBTAephojYn7qwVkDBF9qn1l
|
||||
uMrMTjANBgkqhkiG9w0BAQUFAAOCAQEANeMpauUvXVSOKVCUn5kaFOSPeCpilKIn
|
||||
Z57QzxpeR+nBsqTP3UEaBU6bS+5Kb1VSsyShNwrrZHYqLizz/Tt1kL/6cdjHPTfS
|
||||
tQWVYrmm3ok9Nns4d0iXrKYgjy6myQzCsplFAMfOEVEiIuCl6rYVSAlk6l5PdPcF
|
||||
PseKUgzbFbS9bZvlxrFUaKnjaZC2mqUPuLk/IH2uSrW4nOQdtqvmlKXBx4Ot2/Un
|
||||
hw4EbNX/3aBd7YdStysVAq45pmp06drE57xNNB6pXE0zX5IJL4hmXXeXxx12E6nV
|
||||
5fEWCRE11azbJHFwLJhWC9kXtNHjUStedejV0NxPNO3CBWaAocvmMw==
|
||||
-----END CERTIFICATE-----
|
||||
@@ -0,0 +1,24 @@
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIID8DCCAtigAwIBAgIDAjqDMA0GCSqGSIb3DQEBCwUAMEIxCzAJBgNVBAYTAlVT
|
||||
MRYwFAYDVQQKEw1HZW9UcnVzdCBJbmMuMRswGQYDVQQDExJHZW9UcnVzdCBHbG9i
|
||||
YWwgQ0EwHhcNMTMwNDA1MTUxNTU2WhcNMTYxMjMxMjM1OTU5WjBJMQswCQYDVQQG
|
||||
EwJVUzETMBEGA1UEChMKR29vZ2xlIEluYzElMCMGA1UEAxMcR29vZ2xlIEludGVy
|
||||
bmV0IEF1dGhvcml0eSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB
|
||||
AJwqBHdc2FCROgajguDYUEi8iT/xGXAaiEZ+4I/F8YnOIe5a/mENtzJEiaB0C1NP
|
||||
VaTOgmKV7utZX8bhBYASxF6UP7xbSDj0U/ck5vuR6RXEz/RTDfRK/J9U3n2+oGtv
|
||||
h8DQUB8oMANA2ghzUWx//zo8pzcGjr1LEQTrfSTe5vn8MXH7lNVg8y5Kr0LSy+rE
|
||||
ahqyzFPdFUuLH8gZYR/Nnag+YyuENWllhMgZxUYi+FOVvuOAShDGKuy6lyARxzmZ
|
||||
EASg8GF6lSWMTlJ14rbtCMoU/M4iarNOz0YDl5cDfsCx3nuvRTPPuj5xt970JSXC
|
||||
DTWJnZ37DhF5iR43xa+OcmkCAwEAAaOB5zCB5DAfBgNVHSMEGDAWgBTAephojYn7
|
||||
qwVkDBF9qn1luMrMTjAdBgNVHQ4EFgQUSt0GFhu89mi1dvWBtrtiGrpagS8wDgYD
|
||||
VR0PAQH/BAQDAgEGMC4GCCsGAQUFBwEBBCIwIDAeBggrBgEFBQcwAYYSaHR0cDov
|
||||
L2cuc3ltY2QuY29tMBIGA1UdEwEB/wQIMAYBAf8CAQAwNQYDVR0fBC4wLDAqoCig
|
||||
JoYkaHR0cDovL2cuc3ltY2IuY29tL2NybHMvZ3RnbG9iYWwuY3JsMBcGA1UdIAQQ
|
||||
MA4wDAYKKwYBBAHWeQIFATANBgkqhkiG9w0BAQsFAAOCAQEAqvqpIM1qZ4PtXtR+
|
||||
3h3Ef+AlBgDFJPupyC1tft6dgmUsgWM0Zj7pUsIItMsv91+ZOmqcUHqFBYx90SpI
|
||||
hNMJbHzCzTWf84LuUt5oX+QAihcglvcpjZpNy6jehsgNb1aHA30DP9z6eX0hGfnI
|
||||
Oi9RdozHQZJxjyXON/hKTAAj78Q1EK7gI4BzfE00LshukNYQHpmEcxpw8u1VDu4X
|
||||
Bupn7jLrLN1nBz/2i8Jw3lsA5rsb0zYaImxssDVCbJAJPZPpZAkiDoUGn8JzIdPm
|
||||
X4DkjYUiOnMDsWCOrmji9D6X52ASCWg23jrW4kOVWzeBkoEfu43XrVJkFleW2V40
|
||||
fsg12A==
|
||||
-----END CERTIFICATE-----
|
||||
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 31 KiB |
|
After Width: | Height: | Size: 33 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 32 KiB |
|
After Width: | Height: | Size: 74 KiB |
|
After Width: | Height: | Size: 73 KiB |
|
After Width: | Height: | Size: 73 KiB |
|
After Width: | Height: | Size: 75 KiB |
|
After Width: | Height: | Size: 74 KiB |
|
After Width: | Height: | Size: 76 KiB |
|
After Width: | Height: | Size: 74 KiB |
|
After Width: | Height: | Size: 76 KiB |
|
After Width: | Height: | Size: 75 KiB |
|
After Width: | Height: | Size: 76 KiB |
|
After Width: | Height: | Size: 74 KiB |
@@ -0,0 +1,36 @@
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIGWDCCBUCgAwIBAgIQCl8RTQNbF5EX0u/UA4w/OzANBgkqhkiG9w0BAQUFADBs
|
||||
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
|
||||
d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j
|
||||
ZSBFViBSb290IENBMB4XDTA4MDQwMjEyMDAwMFoXDTIyMDQwMzAwMDAwMFowZjEL
|
||||
MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3
|
||||
LmRpZ2ljZXJ0LmNvbTElMCMGA1UEAxMcRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug
|
||||
Q0EtMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL9hCikQH17+NDdR
|
||||
CPge+yLtYb4LDXBMUGMmdRW5QYiXtvCgFbsIYOBC6AUpEIc2iihlqO8xB3RtNpcv
|
||||
KEZmBMcqeSZ6mdWOw21PoF6tvD2Rwll7XjZswFPPAAgyPhBkWBATaccM7pxCUQD5
|
||||
BUTuJM56H+2MEb0SqPMV9Bx6MWkBG6fmXcCabH4JnudSREoQOiPkm7YDr6ictFuf
|
||||
1EutkozOtREqqjcYjbTCuNhcBoz4/yO9NV7UfD5+gw6RlgWYw7If48hl66l7XaAs
|
||||
zPw82W3tzPpLQ4zJ1LilYRyyQLYoEt+5+F/+07LJ7z20Hkt8HEyZNp496+ynaF4d
|
||||
32duXvsCAwEAAaOCAvowggL2MA4GA1UdDwEB/wQEAwIBhjCCAcYGA1UdIASCAb0w
|
||||
ggG5MIIBtQYLYIZIAYb9bAEDAAIwggGkMDoGCCsGAQUFBwIBFi5odHRwOi8vd3d3
|
||||
LmRpZ2ljZXJ0LmNvbS9zc2wtY3BzLXJlcG9zaXRvcnkuaHRtMIIBZAYIKwYBBQUH
|
||||
AgIwggFWHoIBUgBBAG4AeQAgAHUAcwBlACAAbwBmACAAdABoAGkAcwAgAEMAZQBy
|
||||
AHQAaQBmAGkAYwBhAHQAZQAgAGMAbwBuAHMAdABpAHQAdQB0AGUAcwAgAGEAYwBj
|
||||
AGUAcAB0AGEAbgBjAGUAIABvAGYAIAB0AGgAZQAgAEQAaQBnAGkAQwBlAHIAdAAg
|
||||
AEMAUAAvAEMAUABTACAAYQBuAGQAIAB0AGgAZQAgAFIAZQBsAHkAaQBuAGcAIABQ
|
||||
AGEAcgB0AHkAIABBAGcAcgBlAGUAbQBlAG4AdAAgAHcAaABpAGMAaAAgAGwAaQBt
|
||||
AGkAdAAgAGwAaQBhAGIAaQBsAGkAdAB5ACAAYQBuAGQAIABhAHIAZQAgAGkAbgBj
|
||||
AG8AcgBwAG8AcgBhAHQAZQBkACAAaABlAHIAZQBpAG4AIABiAHkAIAByAGUAZgBl
|
||||
AHIAZQBuAGMAZQAuMBIGA1UdEwEB/wQIMAYBAf8CAQAwNAYIKwYBBQUHAQEEKDAm
|
||||
MCQGCCsGAQUFBzABhhhodHRwOi8vb2NzcC5kaWdpY2VydC5jb20wgY8GA1UdHwSB
|
||||
hzCBhDBAoD6gPIY6aHR0cDovL2NybDMuZGlnaWNlcnQuY29tL0RpZ2lDZXJ0SGln
|
||||
aEFzc3VyYW5jZUVWUm9vdENBLmNybDBAoD6gPIY6aHR0cDovL2NybDQuZGlnaWNl
|
||||
cnQuY29tL0RpZ2lDZXJ0SGlnaEFzc3VyYW5jZUVWUm9vdENBLmNybDAfBgNVHSME
|
||||
GDAWgBSxPsNpA/i/RwHUmCYaCALvY2QrwzAdBgNVHQ4EFgQUUOpzidsp+xCPnuUB
|
||||
INTeeZlIg/cwDQYJKoZIhvcNAQEFBQADggEBAB7ipUiebNtTOA/vphoqrOIDQ+2a
|
||||
vD6OdRvw/S4iWawTwGHi5/rpmc2HCXVUKL9GYNy+USyS8xuRfDEIcOI3ucFbqL2j
|
||||
CwD7GhX9A61YasXHJJlIR0YxHpLvtF9ONMeQvzHB+LGEhtCcAarfilYGzjrpDq6X
|
||||
dF3XcZpCdF/ejUN83ulV7WkAywXgemFhM9EZTfkI7qA5xSU1tyvED7Ld8aW3DiTE
|
||||
JiiNeXf1L/BXunwH1OH8zVowV36GEEfdMR/X/KLCvzB8XSSq6PmuX2p0ws5rs0bY
|
||||
Ib4p1I5eFdZCSucyb6Sxa1GDWL4/bcf72gMhy2oWGU4K8K2Eyl2Us1p292E=
|
||||
-----END CERTIFICATE-----
|
||||
@@ -0,0 +1,23 @@
|
||||
-----BEGIN CERTIFICATE-----
|
||||
MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs
|
||||
MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3
|
||||
d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j
|
||||
ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL
|
||||
MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3
|
||||
LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug
|
||||
RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm
|
||||
+9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW
|
||||
PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM
|
||||
xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB
|
||||
Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3
|
||||
hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg
|
||||
EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF
|
||||
MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA
|
||||
FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec
|
||||
nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z
|
||||
eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF
|
||||
hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2
|
||||
Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe
|
||||
vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep
|
||||
+OkuE6N36B9K
|
||||
-----END CERTIFICATE-----
|
||||
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
|
After Width: | Height: | Size: 1.2 KiB |
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>HELP</center></font></B><BR><font size=2 color=#000000><BR><B>Q: How am I charged for something I purchase within the game (In-App Commerce / microtransaction)?<BR></B>A: You are billed/charged the same way for any other purchase on your Android device through your Amazon Account. If you have any billing disputes or questions, please contact Amazon.<BR><BR><B>Q: I purchased something in-game, but I cannot see it. What happened?<BR></B>A: In some cases, you may need to exit the game and restart it to access your new content. If that doesn't work, try turning off your device and restarting it. You can always check what you've purchased by entering the game's portal (for example: for Sims 3, select 'The Sims Store' from the game's main menu, then select the 'My Stuff' folder in the lower left hand corner of the screen).<BR><BR><B>Q: I purchased something on my device. Can I get this same content on another device? <BR></B>A: Yes, as long as those devices share the same Amazon Account. You can always check what you've purchased by selecting the 'My Stuff' folder in the lower left hand corner of the screen.<BR><BR><B>Q: My question is not answered here. What can I do?<BR></B>A: You can visit <a href="http://help.ea.com/en/">http://help.ea.com/en/<a> and write us. When contacting us, please include as much specific information as possible so that we can better assist you.<BR><BR><B>Q: What is your Privacy Policy?<BR></B>A: You can view EA's privacy policy by visiting <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/</a>.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>HELP</center></font></B><BR><font size=2 color=#000000><BR><B>Q: How am I charged for something I purchase within the game (In-App Commerce / microtransaction)?<BR></B>A: You are billed/charged the same way for any other purchase on your Android device through your Amazon Account. If you have any billing disputes or questions, please contact Amazon.<BR><BR><B>Q: I purchased something in-game, but I cannot see it. What happened?<BR></B>A: In some cases, you may need to exit the game and restart it to access your new content. If that doesn't work, try turning off your device and restarting it. You can always check what you've purchased by entering the game's portal (for example: for Sims 3, select 'The Sims Store' from the game's main menu, then select the 'My Stuff' folder in the lower left hand corner of the screen).<BR><BR><B>Q: I purchased something on my device. Can I get this same content on another device? <BR></B>A: Yes, as long as those devices share the same Amazon Account. You can always check what you've purchased by selecting the 'My Stuff' folder in the lower left hand corner of the screen.<BR><BR><B>Q: My question is not answered here. What can I do?<BR></B>A: You can visit <a href="http://help.ea.com/en/">http://help.ea.com/en/<a> and write us. When contacting us, please include as much specific information as possible so that we can better assist you.<BR><BR><B>Q: What is your Privacy Policy?<BR></B>A: You can view EA's privacy policy by visiting <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/</a>.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>HELP</center></font></B><BR><font size=2 color=#000000><BR><B>Q: How am I charged for something I purchase within the game (In-App Commerce / microtransaction)?<BR></B>A: You are billed/charged the same way for any other purchase on your Android device through your Amazon Account. If you have any billing disputes or questions, please contact Amazon.<BR><BR><B>Q: I purchased something in-game, but I cannot see it. What happened?<BR></B>A: In some cases, you may need to exit the game and restart it to access your new content. If that doesn't work, try turning off your device and restarting it. You can always check what you've purchased by entering the game's portal (for example: for Sims 3, select 'The Sims Store' from the game's main menu, then select the 'My Stuff' folder in the lower left hand corner of the screen).<BR><BR><B>Q: I purchased something on my device. Can I get this same content on another device? <BR></B>A: Yes, as long as those devices share the same Amazon Account. You can always check what you've purchased by selecting the 'My Stuff' folder in the lower left hand corner of the screen.<BR><BR><B>Q: My question is not answered here. What can I do?<BR></B>A: You can visit <a href="http://help.ea.com/en/">http://help.ea.com/en/<a> and write us. When contacting us, please include as much specific information as possible so that we can better assist you.<BR><BR><B>Q: What is your Privacy Policy?<BR></B>A: You can view EA's privacy policy by visiting <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/</a>.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>HELP</center></font></B><BR><font size=2 color=#000000><BR><B>Q: How am I charged for something I purchase within the game (In-App Commerce / microtransaction)?<BR></B>A: You are billed/charged the same way for any other purchase on your Android device through your Amazon Account. If you have any billing disputes or questions, please contact Amazon.<BR><BR><B>Q: I purchased something in-game, but I cannot see it. What happened?<BR></B>A: In some cases, you may need to exit the game and restart it to access your new content. If that doesn't work, try turning off your device and restarting it. You can always check what you've purchased by entering the game's portal (for example: for Sims 3, select 'The Sims Store' from the game's main menu, then select the 'My Stuff' folder in the lower left hand corner of the screen).<BR><BR><B>Q: I purchased something on my device. Can I get this same content on another device? <BR></B>A: Yes, as long as those devices share the same Amazon Account. You can always check what you've purchased by selecting the 'My Stuff' folder in the lower left hand corner of the screen.<BR><BR><B>Q: My question is not answered here. What can I do?<BR></B>A: You can visit <a href="http://help.ea.com/en/">http://help.ea.com/en/<a> and write us. When contacting us, please include as much specific information as possible so that we can better assist you.<BR><BR><B>Q: What is your Privacy Policy?<BR></B>A: You can view EA's privacy policy by visiting <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/</a>.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>HELP</center></font></B><BR><font size=2 color=#000000><BR><B>Q: How am I charged for something I purchase within the game (In-App Commerce / microtransaction)?<BR></B>A: You are billed/charged the same way for any other purchase on your Android device through your Amazon Account. If you have any billing disputes or questions, please contact Amazon.<BR><BR><B>Q: I purchased something in-game, but I cannot see it. What happened?<BR></B>A: In some cases, you may need to exit the game and restart it to access your new content. If that doesn't work, try turning off your device and restarting it. You can always check what you've purchased by entering the game's portal (for example: for Sims 3, select 'The Sims Store' from the game's main menu, then select the 'My Stuff' folder in the lower left hand corner of the screen).<BR><BR><B>Q: I purchased something on my device. Can I get this same content on another device? <BR></B>A: Yes, as long as those devices share the same Amazon Account. You can always check what you've purchased by selecting the 'My Stuff' folder in the lower left hand corner of the screen.<BR><BR><B>Q: My question is not answered here. What can I do?<BR></B>A: You can visit <a href="http://help.ea.com/en/">http://help.ea.com/en/<a> and write us. When contacting us, please include as much specific information as possible so that we can better assist you.<BR><BR><B>Q: What is your Privacy Policy?<BR></B>A: You can view EA's privacy policy by visiting <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/</a>.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>HELP</center></font></B><BR><font size=2 color=#000000><BR><B>Q: How am I charged for something I purchase within the game (In-App Commerce / microtransaction)?<BR></B>A: You are billed/charged the same way for any other purchase on your Android device through your Amazon Account. If you have any billing disputes or questions, please contact Amazon.<BR><BR><B>Q: I purchased something in-game, but I cannot see it. What happened?<BR></B>A: In some cases, you may need to exit the game and restart it to access your new content. If that doesn't work, try turning off your device and restarting it. You can always check what you've purchased by entering the game's portal (for example: for Sims 3, select 'The Sims Store' from the game's main menu, then select the 'My Stuff' folder in the lower left hand corner of the screen).<BR><BR><B>Q: I purchased something on my device. Can I get this same content on another device? <BR></B>A: Yes, as long as those devices share the same Amazon Account. You can always check what you've purchased by selecting the 'My Stuff' folder in the lower left hand corner of the screen.<BR><BR><B>Q: My question is not answered here. What can I do?<BR></B>A: You can visit <a href="http://help.ea.com/en/">http://help.ea.com/en/<a> and write us. When contacting us, please include as much specific information as possible so that we can better assist you.<BR><BR><B>Q: What is your Privacy Policy?<BR></B>A: You can view EA's privacy policy by visiting <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/</a>.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>HELP</center></font></B><BR><font size=2 color=#000000><BR><B>Q: How am I charged for something I purchase within the game (In-App Commerce / microtransaction)?<BR></B>A: You are billed/charged the same way for any other purchase on your Android device through your Amazon Account. If you have any billing disputes or questions, please contact Amazon.<BR><BR><B>Q: I purchased something in-game, but I cannot see it. What happened?<BR></B>A: In some cases, you may need to exit the game and restart it to access your new content. If that doesn't work, try turning off your device and restarting it. You can always check what you've purchased by entering the game's portal (for example: for Sims 3, select 'The Sims Store' from the game's main menu, then select the 'My Stuff' folder in the lower left hand corner of the screen).<BR><BR><B>Q: I purchased something on my device. Can I get this same content on another device? <BR></B>A: Yes, as long as those devices share the same Amazon Account. You can always check what you've purchased by selecting the 'My Stuff' folder in the lower left hand corner of the screen.<BR><BR><B>Q: My question is not answered here. What can I do?<BR></B>A: You can visit <a href="http://help.ea.com/en/">http://help.ea.com/en/<a> and write us. When contacting us, please include as much specific information as possible so that we can better assist you.<BR><BR><B>Q: What is your Privacy Policy?<BR></B>A: You can view EA's privacy policy by visiting <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/</a>.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>HELP</center></font></B><BR><font size=2 color=#000000><BR><B>Q: How am I charged for something I purchase within the game (In-App Commerce / microtransaction)?<BR></B>A: You are billed/charged the same way for any other purchase on your Android device through your Amazon Account. If you have any billing disputes or questions, please contact Amazon.<BR><BR><B>Q: I purchased something in-game, but I cannot see it. What happened?<BR></B>A: In some cases, you may need to exit the game and restart it to access your new content. If that doesn't work, try turning off your device and restarting it. You can always check what you've purchased by entering the game's portal (for example: for Sims 3, select 'The Sims Store' from the game's main menu, then select the 'My Stuff' folder in the lower left hand corner of the screen).<BR><BR><B>Q: I purchased something on my device. Can I get this same content on another device? <BR></B>A: Yes, as long as those devices share the same Amazon Account. You can always check what you've purchased by selecting the 'My Stuff' folder in the lower left hand corner of the screen.<BR><BR><B>Q: My question is not answered here. What can I do?<BR></B>A: You can visit <a href="http://help.ea.com/en/">http://help.ea.com/en/<a> and write us. When contacting us, please include as much specific information as possible so that we can better assist you.<BR><BR><B>Q: What is your Privacy Policy?<BR></B>A: You can view EA's privacy policy by visiting <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/</a>.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>HELP</center></font></B><BR><font size=2 color=#000000><BR><B>Q: How am I charged for something I purchase within the game (In-App Commerce / microtransaction)?<BR></B>A: You are billed/charged the same way for any other purchase on your Android device through your Amazon Account. If you have any billing disputes or questions, please contact Amazon.<BR><BR><B>Q: I purchased something in-game, but I cannot see it. What happened?<BR></B>A: In some cases, you may need to exit the game and restart it to access your new content. If that doesn't work, try turning off your device and restarting it. You can always check what you've purchased by entering the game's portal (for example: for Sims 3, select 'The Sims Store' from the game's main menu, then select the 'My Stuff' folder in the lower left hand corner of the screen).<BR><BR><B>Q: I purchased something on my device. Can I get this same content on another device? <BR></B>A: Yes, as long as those devices share the same Amazon Account. You can always check what you've purchased by selecting the 'My Stuff' folder in the lower left hand corner of the screen.<BR><BR><B>Q: My question is not answered here. What can I do?<BR></B>A: You can visit <a href="http://help.ea.com/en/">http://help.ea.com/en/<a> and write us. When contacting us, please include as much specific information as possible so that we can better assist you.<BR><BR><B>Q: What is your Privacy Policy?<BR></B>A: You can view EA's privacy policy by visiting <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/</a>.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>HELP</center></font></B><BR><font size=2 color=#000000><BR><B>Q: How am I charged for something I purchase within the game (In-App Commerce / microtransaction)?<BR></B>A: You are billed/charged the same way for any other purchase on your Android device through your Amazon Account. If you have any billing disputes or questions, please contact Amazon.<BR><BR><B>Q: I purchased something in-game, but I cannot see it. What happened?<BR></B>A: In some cases, you may need to exit the game and restart it to access your new content. If that doesn't work, try turning off your device and restarting it. You can always check what you've purchased by entering the game's portal (for example: for Sims 3, select 'The Sims Store' from the game's main menu, then select the 'My Stuff' folder in the lower left hand corner of the screen).<BR><BR><B>Q: I purchased something on my device. Can I get this same content on another device? <BR></B>A: Yes, as long as those devices share the same Amazon Account. You can always check what you've purchased by selecting the 'My Stuff' folder in the lower left hand corner of the screen.<BR><BR><B>Q: My question is not answered here. What can I do?<BR></B>A: You can visit <a href="http://help.ea.com/en/">http://help.ea.com/en/<a> and write us. When contacting us, please include as much specific information as possible so that we can better assist you.<BR><BR><B>Q: What is your Privacy Policy?<BR></B>A: You can view EA's privacy policy by visiting <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/</a>.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>HELP</center></font></B><BR><font size=2 color=#000000><BR><B>Q: How am I charged for something I purchase within the game (In-App Commerce / microtransaction)?<BR></B>A: You are billed/charged the same way for any other purchase on your Android device through your Amazon Account. If you have any billing disputes or questions, please contact Amazon.<BR><BR><B>Q: I purchased something in-game, but I cannot see it. What happened?<BR></B>A: In some cases, you may need to exit the game and restart it to access your new content. If that doesn't work, try turning off your device and restarting it. You can always check what you've purchased by entering the game's portal (for example: for Sims 3, select 'The Sims Store' from the game's main menu, then select the 'My Stuff' folder in the lower left hand corner of the screen).<BR><BR><B>Q: I purchased something on my device. Can I get this same content on another device? <BR></B>A: Yes, as long as those devices share the same Amazon Account. You can always check what you've purchased by selecting the 'My Stuff' folder in the lower left hand corner of the screen.<BR><BR><B>Q: My question is not answered here. What can I do?<BR></B>A: You can visit <a href="http://help.ea.com/en/">http://help.ea.com/en/<a> and write us. When contacting us, please include as much specific information as possible so that we can better assist you.<BR><BR><B>Q: What is your Privacy Policy?<BR></B>A: You can view EA's privacy policy by visiting <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/</a>.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>HILFE</center></font></B><BR><font size=2 color=#000000><BR><B>F: Wie werden Dinge abgerechnet, die ich im Spiel kaufe (In-App-Kaufabwicklung / Microtransaction)?<BR></B>A: Die Abrechnung erfolgt auf die gleiche Weise wie bei anderen Kaufen auf deinem Android-Gerat uber dein Google-Konto. Bei Fragen oder Widerspruchen zu deinen Abrechnungen kontaktiere bitte Google.<BR><BR><B>F: Ich habe im Spiel etwas gekauft, kann es aber nicht sehen. Was kann ich tun?<BR></B>A: Es kann sein, dass du das Spiel verlassen und neu starten musst, um Zugriff auf neue Inhalte zu erhalten. Wenn auch das nicht funktioniert, solltest du versuchen, dein Gerat auszuschalten und neu zu starten. Du kannst jederzeit nachsehen, was du gekauft hast, indem du das Portal des Spiels aufrufst (bei Sims 3 wahlst du beispielsweise im Hauptmenu des Spiels "Sims Store" und dann links unten im Bild "Meine Objekte").<BR><BR><B>F: Wenn ich einen Inhalt auf meinem Gerat kaufe, kann ich diesen dann auch auf einem anderen Gerat nutzen?<BR></B>A: Ja, solange beide Gerate dasselbe Google-Konto nutzen. Du kannst jederzeit nachsehen, was du gekauft hast, indem du links unten im Bild den Ordner "Meine Objekte" auswahlst.<BR><BR><B>F: Meine Frage wurde hier nicht beantwortet. Was kann ich tun?<BR></B>A: Du kannst den FAQ-Abschnitt unter <a href="http://www.google.com/support/androidmarket/?hl=de"> http://www.google.com/support/androidmarket/</a> aufrufen und Google bezuglich Problemen bei Abrechnungen kontaktieren. Alternativ kannst du auch <a href="http://help.ea.com/de/">http://help.ea.com/de/<a> aufrufen und uns schreiben. Wenn du uns kontaktierst, gib bitte so viele und so genaue Informationen wie moglich an, damit wir dir besser helfen konnen.<BR><BR><B>F: Wie sehen eure Datenschutzrichtlinien aus?<BR></B>A: Die EA Datenschutzrichtlinien findest du unter <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/de/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/de/PC/</a>.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>HELP</center></font></B><BR><font size=2 color=#000000><BR><B>Q: How am I charged for something I purchase within the game (In-App Commerce / microtransaction)?<BR></B>A: You are billed/charged the same way for any other purchase on your Android device through your Google Account. If you have any billing disputes or questions, please contact Google.<BR><BR><B>Q: I purchased something in-game, but I cannot see it. What happened?<BR></B>A: In some cases, you may need to exit the game and restart it to access your new content. If that doesn't work, try turning off your device and restarting it. You can always check what you've purchased by entering the game's portal (for example: for Sims 3, select 'The Sims Store' from the game's main menu, then select the 'My Stuff' folder in the lower left hand corner of the screen).<BR><BR><B>Q: I purchased something on my device. Can I get this same content on another device? <BR></B>A: Yes, as long as those devices share the same Google Account. You can always check what you've purchased by selecting the 'My Stuff' folder in the lower left hand corner of the screen.<BR><BR><B>Q: My question is not answered here. What can I do?<BR></B>A: You can visit the FAQ sections at <a href="http://support.google.com/androidmarket/?hl=en"> http://support.google.com/androidmarket/?hl=en</a> and contact Google for any billing issues, or visit <a href="http://help.ea.com/en/">http://help.ea.com/en/<a> and write us. When contacting us, please include as much specific information as possible so that we can better assist you.<BR><BR><B>Q: What is your Privacy Policy?<BR></B>A: You can view EA's privacy policy by visiting <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/</a>.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>AYUDA</center></font></B><BR><font size=2 color=#000000><BR><B>P.: ¿Cómo se me cobra algo que compre dentro del juego (Comercio en el App/microtransacción)?<BR></B>R.: Se te facturará/cobrará de la misma forma que para cualquier otra compra en tu dispositivo Android a través de tu cuenta Google. En caso de dudas o controversia respecto a la facturación, ponte en contacto con Google.<BR><BR><B>P.: He comprado algo en el juego, pero no puedo verlo. ¿Qué ha pasado?<BR></B>R.: En algunos casos, puede que tengas que salir del juego y reiniciarlo para acceder a tu contenido nuevo. Si eso no funciona, prueba a apagar tu dispositivo y a reiniciarlo. Siempre puedes comprobar qué has comprado si entras en el portal del juego (por ejemplo, para Sims 3, selecciona "La tienda de los Sims" en el menú principal del juego y luego selecciona la carpeta "Mis cosas" en la esquina inferior izquierda de la pantalla).<BR><BR><B>P.: He comprado algo en mi dispositivo. ¿Puedo conseguir este mismo contenido en otro dispositivo? <BR></B>R.: Sí, siempre y cuando esos dispositivos compartan la misma cuenta Google. Siempre puedes comprobar qué has comprado si seleccionas la carpeta "Mis cosas" en la esquina inferior izquierda de la pantalla.<BR><BR><B>P.: Mi pregunta no encuentra respuesta aquí. ¿Qué puedo hacer?<BR></B>R.: Puedes visitar las secciones de preguntas frecuentes en <a href="http://support.google.com/androidmarket/?hl=es"> http://support.google.com/androidmarket/?hl=es</a> y ponerte en contacto con Google por cualquier problema de facturación o visitar <a href="http://help.ea.com/es/">http://help.ea.com/es/<a> y escribirnos. En caso de ponerte en contacto con nosotros, incluye toda la información específica que puedas, para que podamos ayudarte mejor.<BR><BR><B>P.: ¿Cuál es vuestra política de privacidad?<BR></B>R.: Puedes encontrar la política de privacidad si visitas <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/es/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/es/PC/</a>.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>AIDE</center></font></B><BR><font size=2 color=#000000><BR><B>Q : Comment suis-je facture(e) pour un achat au sein du jeu (commerce via l'application / microtransaction)?<BR></B>R : Vous etes facture(e) de la meme facon que pour n'importe quel achat effectue a partir de votre appareil Android, via votre compte Google. Pour toutes questions ou reclamations a ce sujet, veuillez contacter Google<BR><BR><B>Q : J'ai achete quelque chose dans le jeu mais je ne le trouve pas. Pourquoi?<BR></B>R : Dans certains cas, vous devez quitter le jeu et le relancer pour acceder a votre contenu. Si cela ne fonctionne pas, essayez d'eteindre votre appareil et de le redemarrer. Vous pouvez toujours verifier ce que vous avez achete en accedant au portail du jeu (par exemple : pour Les Sims 3, selectionnez "Sims Store" depuis le menu principal puis "Mon Equipement" dans le coin en bas a gauche de l'ecran).<BR><BR><B>Q : J'ai achete quelque chose sur mon appareil. Puis-je acceder a ce contenu sur un autre appareil? <BR></B>R : Oui, tant que ces appareils partagent le meme compte Google. Vous pouvez toujours verifier ce que vous avez achete en selectionnant "Mon Equipement" dans le coin en bas a gauche de l'ecran.<BR><BR><B>Q : Je n'ai pas trouve de reponse a ma question. Que faire?<BR></B>R : Visitez la FAQ disponible sur <a href="http://support.google.com/androidmarket/?hl=fr"> http://www.google.com/support/androidmarket/</a> et contactez Google pour tous problemes de facturation, ou rendez-vous sur <a href="http://help.ea.com/fr/">http://help.ea.com/fr/<a> pour nous ecrire. Lorsque vous nous contactez, n'hesitez pas a preciser le plus de details possibles.<BR><BR><B>Q : Quelle est votre charte de confidentialite?<BR></B>R : Vous pouvez consulter la charte de confidentialite d'EA sur <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/fr/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/fr/PC/</a>.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>AIUTO</center></font></B><BR><font size=2 color=#000000><BR><B>D: In che modo posso pagare un prodotto acquistato all'interno del gioco (Microtransazione/commercio in-app)?<BR></B>R: Il metodo di fatturazione/pagamento sara lo stesso per tutti gli acquisti effettuati sul tuo dispositivo Android attraverso il tuo account Google. Se hai qualche problema di fatturazione o delle domande, contatta Google.<BR><BR><B>D: Ho acquistato un prodotto all'interno del gioco, ma non riesco a visualizzarlo. Cosa puo essere successo?<BR></B>R: A volte e necessario uscire dal gioco e riavviarlo per poter visualizzare i nuovi contenuti. Se in questo modo non funziona, prova a spegnere il dispositivo e a riavviarlo di nuovo. Puoi sempre controllare i tuoi acquisti attraverso il portale di gioco (per esempio: per Sims 3, seleziona "The Sims Store" dal menu principale del gioco e poi seleziona la cartella "Le mie cose" posizionata nell'angolo in basso a sinistra dello schermo).<BR><BR><B>D: Ho acquistato qualcosa sul mio dispositivo. Posso trasferire gli stessi contenuti su un altro dispositivo? <BR></B>R: Si, a condizione che i dispositivi siano registrati con lo stesso account Google. Puoi sempre controllare i tuoi acquisti, selezionando la cartella "Le mie cose" posizionata nell'angolo in basso a sinistra dello schermo.<BR><BR><B>D: Non ho ancora ricevuto risposta alla mia domanda. Cosa devo fare?<BR></B>R: Puoi visitare le sezioni delle FAQ su <a href="http://support.google.com/androidmarket/?hl=it"> http://support.google.com/androidmarket/?hl=it</a>e contattare Google per qualsiasi problema di fatturazione o visitare <a href="http://help.ea.com/it/">http://help.ea.com/it/<a> e scriverci, includendo piu informazioni dettagliate possibili, in questo modo potremo aiutarti al meglio.<BR><BR><B>D: Qual e la vostra Politica sulla Privacy?<BR></B>R: Puoi consultare la Politica sulla Privacy di EA su <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/it/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/it/PC/</a>.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>ヘルプ</center></font></B><BR><font size=2 color=#000000><BR><B>Q: ゲーム内(アプリ内ショッピング/少額取引)で購入した場合の請求方法について教えて下さい<BR></B>A: Android デバイスの Google アカウントから購入した場合と同様に請求されます。請求に関する質問、疑問は、Google へお問い合わせ下さい。<BR><BR><B>Q: インゲームで購入しましたが、見つかりません。問題があるのでしょうか?<BR></B>A: 場合によっては、一度ゲームを終了、再起動して、新しいコンテンツにアクセスする必要があります。それでも難しい場合は、一度デバイスを終了し、再起動して下さい。<BR><BR><B>Q: 自分のデバイスから商品を購入しました。別のデバイスでも同じ商品を利用できますか?<BR></B>A: はい。同じ Google アカウントを使用すれば、利用できます。スクリーン左下の My Stuff フォルダーから購入履歴を確認できます。<BR><BR><B>Q:質問したい事項がここに掲載されていません。どうしたらいいでしょうか?<BR></B>A:請求に関しては、 <a href="http://support.google.com/androidmarket/?hl=ja"> http://support.google.com/androidmarket/?hl=ja</a> の FAQ セクションをご覧になるか、Google にお問い合わせください。または <a href="http://help.ea.com/ja/">http://help.ea.com/ja/<a> からメールでお問い合わせください。弊社へのご連絡の際には、より適切なサポートをお届けするため、詳細をお伝えくださりますようお願いいたします。<BR><BR><B>Q: プライバシーポリシーについて教えて下さい。<BR></B>A: EAのプライバシーポリシーについては、 <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/ja/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/ja/PC/</a> をご覧ください。<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>도움말</center></font></B><BR><font size=2 color=#000000><BR><B>Q: 게임 내에서 구매를 하면 어떻게 결제해야 하나요(게임 내 결제 / 소액결제)?<BR></B>A: Google 계정을 통해 Android 기기에서 다른 물품을 구매하는 것과 같은 과정으로 결제가 이루어집니다. 결제에 문제나 질문이 있으면, Google로 연락해 주시기 바랍니다.<BR><BR><B>Q: 게임 내에서 물품을 구매했는데, 찾을 수 없습니다. 어떻게 된 건가요?<BR></B>A: 이러한 경우에는, 게임을 종료하고 다시 시작한 뒤에 새로운 콘텐츠를 확인해 보세요. 그래도 작동하지 않는다면, 기기를 껐다가 다시 켜보세요. 항상 해당 게임 메뉴에서 구매 내역을 확인할 수 있습니다 (예를 들어 심즈 3라면 게임의 메인 메뉴에 있는 '심즈 스토어'에서 화면의 왼쪽 아래에 있는 '내 물건(My Stuff)' 폴더를 선택하세요).<BR><BR><B>Q: 제 기기로 물품을 구매했습니다. 같은 콘텐츠를 다른 기기에서도 사용할 수 있나요? <BR></B>A: 예, Google 계정이 같다면 다른 기기에서도 사용할 수 있습니다. 화면의 왼쪽 아래에 있는 '내 물건(My Stuff)' 폴더에서 구매 내역을 확인할 수 있습니다.<BR><BR><B>Q: 여기에는 제가 원하는 질문에 대한 답변이 없네요. 어떻게 해야 하나요?<BR></B>A: <a href="http://support.google.com/androidmarket/?hl=ko"> http://support.google.com/androidmarket/?hl=ko</a> 을 방문해서 FAQ를 확인하고 Google에 연락하여 결제 문제를 알리거나, <a href="http://help.ea.com/ko/">http://help.ea.com/ko/<a> 을 방문해서 저희에게 연락하실 수 있습니다. 저희에게 연락하실 때, 구체적인 정보를 적어 주시면 저희가 좀 더 잘 도와드릴 수 있습니다.<BR><BR><B>Q: 개인정보 보호정책은 어떻게 되나요?<BR></B>A: EA의 개인정보 보호정책은 <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/ko/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/ko/PC/</a> 에서 확인하실 수 있습니다.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>HELP</center></font></B><BR><font size=2 color=#000000><BR><B>Q: How am I charged for something I purchase within the game (In-App Commerce / microtransaction)?<BR></B>A: You are billed/charged the same way for any other purchase on your Android device through your Google Account. If you have any billing disputes or questions, please contact Google.<BR><BR><B>Q: I purchased something in-game, but I cannot see it. What happened?<BR></B>A: In some cases, you may need to exit the game and restart it to access your new content. If that doesn't work, try turning off your device and restarting it. You can always check what you've purchased by entering the game's portal (for example: for Sims 3, select 'The Sims Store' from the game's main menu, then select the 'My Stuff' folder in the lower left hand corner of the screen).<BR><BR><B>Q: I purchased something on my device. Can I get this same content on another device? <BR></B>A: Yes, as long as those devices share the same Google Account. You can always check what you've purchased by selecting the 'My Stuff' folder in the lower left hand corner of the screen.<BR><BR><B>Q: My question is not answered here. What can I do?<BR></B>A: You can visit the FAQ sections at <a href="http://support.google.com/androidmarket/?hl=en"> http://support.google.com/androidmarket/?hl=en</a> and contact Google for any billing issues, or visit <a href="http://help.ea.com/en/">http://help.ea.com/en/<a> and write us. When contacting us, please include as much specific information as possible so that we can better assist you.<BR><BR><B>Q: What is your Privacy Policy?<BR></B>A: You can view EA's privacy policy by visiting <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/</a>.<BR></font></font></BODY></HTML>
|
||||
@@ -0,0 +1 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?><HTML><BODY bgcolor=#CCE5F2><font face=\Helvetica\><B><font size=4 color=#0C2159><center>HELP</center></font></B><BR><font size=2 color=#000000><BR><B>Q: How am I charged for something I purchase within the game (In-App Commerce / microtransaction)?<BR></B>A: You are billed/charged the same way for any other purchase on your Android device through your Google Account. If you have any billing disputes or questions, please contact Google.<BR><BR><B>Q: I purchased something in-game, but I cannot see it. What happened?<BR></B>A: In some cases, you may need to exit the game and restart it to access your new content. If that doesn't work, try turning off your device and restarting it. You can always check what you've purchased by entering the game's portal (for example: for Sims 3, select 'The Sims Store' from the game's main menu, then select the 'My Stuff' folder in the lower left hand corner of the screen).<BR><BR><B>Q: I purchased something on my device. Can I get this same content on another device? <BR></B>A: Yes, as long as those devices share the same Google Account. You can always check what you've purchased by selecting the 'My Stuff' folder in the lower left hand corner of the screen.<BR><BR><B>Q: My question is not answered here. What can I do?<BR></B>A: You can visit the FAQ sections at <a href="http://support.google.com/androidmarket/?hl=en"> http://support.google.com/androidmarket/?hl=en</a> and contact Google for any billing issues, or visit <a href="http://help.ea.com/en/">http://help.ea.com/en/<a> and write us. When contacting us, please include as much specific information as possible so that we can better assist you.<BR><BR><B>Q: What is your Privacy Policy?<BR></B>A: You can view EA's privacy policy by visiting <a href="http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/">http://tos.ea.com/legalapp/WEBPRIVACY/US/en/PC/</a>.<BR></font></font></BODY></HTML>
|
||||