mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 11:48:02 +00:00
[Mobile] Preferred Art Options
This commit is contained in:
@@ -117,6 +117,8 @@ cbpCounterDisplayLocation=Markeranzeige Ort
|
||||
cbpGraveyardOrdering=Genaue Reihenfolge im Friedhof einhalten
|
||||
lblAltLifeDisplay=Alternatives Spieler-Layout (Landscape-Modus)
|
||||
nlAltLifeDisplay=Alternative Anzeige von Lebens-, Gift-, Energie- und Erfahrungspunkten.
|
||||
lblPreferredArt=Preferred Art
|
||||
nlPreferredArt=Sets the preferred art for cards.
|
||||
Troubleshooting=Fehlerbehebung
|
||||
GeneralConfiguration=Allgemeine Einstellungen
|
||||
lblPlayerName=Spielername
|
||||
|
||||
@@ -117,6 +117,8 @@ cbpCounterDisplayLocation=Counter Display Location
|
||||
cbpGraveyardOrdering=Allow Ordering Cards Put in Graveyard
|
||||
lblAltLifeDisplay=Alternate Player Layout (Landscape Mode)
|
||||
nlAltLifeDisplay=Enables alternate layout for displaying Player Life, Poison, Energy and Experience counters.
|
||||
lblPreferredArt=Preferred Art
|
||||
nlPreferredArt=Sets the preferred art for cards (RESTART REQUIRED).
|
||||
Troubleshooting=Troubleshooting
|
||||
GeneralConfiguration=General Configuration
|
||||
lblPlayerName=Player Name
|
||||
|
||||
@@ -117,6 +117,8 @@ cbpCounterDisplayLocation=Ubicación del contador
|
||||
cbpGraveyardOrdering=Permitir ordenar cartas puestas en el cementerio
|
||||
lblAltLifeDisplay=Diseño alternativo de jugador (Modo apaisado)
|
||||
nlAltLifeDisplay=Permite un diseño alternativo para mostrar los contadores de vida, veneno, energía y experiencia.
|
||||
lblPreferredArt=Preferred Art
|
||||
nlPreferredArt=Sets the preferred art for cards.
|
||||
Troubleshooting=Solución de problemas
|
||||
GeneralConfiguration=Configuración general
|
||||
lblPlayerName=Nombre Jugador
|
||||
|
||||
@@ -117,6 +117,8 @@ cbpCounterDisplayLocation=Posizione display contatore
|
||||
cbpGraveyardOrdering=Consenti l''ordinazione di carte messe nel cimitero
|
||||
lblAltLifeDisplay=Alternate Player Layout (Landscape Mode)
|
||||
nlAltLifeDisplay=Enables alternate layout for displaying Player Life, Poison, Energy and Experience counters.
|
||||
lblPreferredArt=Preferred Art
|
||||
nlPreferredArt=Sets the preferred art for cards.
|
||||
Troubleshooting=Risoluzione dei problemi
|
||||
GeneralConfiguration=Configurazione generale
|
||||
lblPlayerName=Nome del giocatore
|
||||
|
||||
@@ -117,6 +117,8 @@ cbpCounterDisplayLocation=カウンター表示場所
|
||||
cbpGraveyardOrdering=墓地に置かれるカードの順番指定を許可する
|
||||
lblAltLifeDisplay=代替のプレイヤーレイアウト(ランドスケープモード時)
|
||||
nlAltLifeDisplay=代替のレイアウトでプレイヤーライフ、毒、エネルギーと経験カウンターを表示する
|
||||
lblPreferredArt=Preferred Art
|
||||
nlPreferredArt=Sets the preferred art for cards.
|
||||
Troubleshooting=トラブルシューティング
|
||||
GeneralConfiguration=一般設定
|
||||
lblPlayerName=プレイヤー名
|
||||
|
||||
@@ -117,6 +117,8 @@ cbpCounterDisplayLocation=计数器显示区域
|
||||
cbpGraveyardOrdering=允许指衍生物进入墓地
|
||||
lblAltLifeDisplay=备用牌手布局(横向模式)
|
||||
nlAltLifeDisplay=启用备用牌手布局以显示玩家的生命以及中毒,能量和经验指示物。
|
||||
lblPreferredArt=Preferred Art
|
||||
nlPreferredArt=Sets the preferred art for cards.
|
||||
Troubleshooting=故障排除
|
||||
GeneralConfiguration=常规配置
|
||||
lblPlayerName=玩家名称
|
||||
|
||||
@@ -81,6 +81,7 @@ public class ForgePreferences extends PreferencesStore<ForgePreferences.FPref> {
|
||||
UI_OVERLAY_CARD_ID ("true"),
|
||||
UI_OVERLAY_ABILITY_ICONS("true"),
|
||||
UI_ENABLE_ONLINE_IMAGE_FETCHER ("false"),
|
||||
UI_PREFERRED_ART ("Latest"),
|
||||
UI_DISABLE_CARD_IMAGES ("false"),
|
||||
UI_IMAGE_CACHE_MAXIMUM("400"),
|
||||
UI_OVERLAY_FOIL_EFFECT ("true"),
|
||||
|
||||
@@ -183,7 +183,7 @@ public final class FModel {
|
||||
} catch (Exception e) {
|
||||
customReader = null;
|
||||
}
|
||||
magicDb = new StaticData(reader, tokenReader, customReader, ForgeConstants.EDITIONS_DIR, ForgeConstants.USER_CUSTOM_EDITIONS_DIR,ForgeConstants.BLOCK_DATA_DIR, FModel.getPreferences().getPrefBoolean(FPref.UI_LOAD_UNKNOWN_CARDS), FModel.getPreferences().getPrefBoolean(FPref.UI_LOAD_NONLEGAL_CARDS));
|
||||
magicDb = new StaticData(reader, tokenReader, customReader, ForgeConstants.EDITIONS_DIR, ForgeConstants.USER_CUSTOM_EDITIONS_DIR,ForgeConstants.BLOCK_DATA_DIR, FModel.getPreferences().getPref(FPref.UI_PREFERRED_ART), FModel.getPreferences().getPrefBoolean(FPref.UI_LOAD_UNKNOWN_CARDS), FModel.getPreferences().getPrefBoolean(FPref.UI_LOAD_NONLEGAL_CARDS));
|
||||
CardTranslation.preloadTranslation(preferences.getPref(FPref.UI_LANGUAGE), ForgeConstants.LANG_DIR);
|
||||
|
||||
//create profile dirs if they don't already exist
|
||||
|
||||
Reference in New Issue
Block a user