diff --git a/data/archenemy-forum.mse-export-template/export-template b/data/archenemy-forum.mse-export-template/export-template
index 45aaf41a..aa847625 100644
--- a/data/archenemy-forum.mse-export-template/export-template
+++ b/data/archenemy-forum.mse-export-template/export-template
@@ -1,211 +1,211 @@
-mse version: 0.3.8
-short name: Forum
-full name: Spoiler Exporter
-position hint: 002
-icon: icon.png
-version: 2010-05-17
-installer group: Magic Archenemy/Export/forum
-
-depends on:
- package: archenemy.mse-game
- version: 2010-05-17
-
-game: archenemy
-file type: *.txt|*.txt|*.*|*.*
-
-# By Pichoro
-# Based on code by Idle Muse, Innuendo and Seeonee
-
-option field:
- type: choice
- name: forum
- choice: mse
- choice: mtgsalvation
- description: What forum should the spoiler be formatted for?
-option field:
- type: boolean
- name: text costs
- initial: yes
- description: Should mana costs be plain text? Symbols usually can't be copied and pasted.
-option field:
- type: text
- name: creator
- description: The creator of the set.
-option field:
- type: boolean
- name: include notes
- description: Should card notes be included?
- initial: no
-option field:
- type: boolean
- name: color rarities
- description: Should rarities be colored?
- initial: yes
-script:
- # Colored rarity markers.
- rarity_color := {
- if card.rarity == "basic land" then " (C)"
- else if card.rarity == "common" then " (C)"
- else if card.rarity == "uncommon" then " [color=silver](U)[/color]"
- else if card.rarity == "rare" then " [color=gold](R)[/color]"
- else if card.rarity == "mythic rare" then " [color=orange](M)[/color]"
- else if card.rarity == "special" then " [color=purple](S)[/color]"
- else " (C)"
- }
- # Non colored rarity markers.
- rarity_uncolor := {
- if card.rarity == "basic land" then " (C)"
- else if card.rarity == "common" then " (C)"
- else if card.rarity == "uncommon" then " (U)"
- else if card.rarity == "rare" then " (R)"
- else if card.rarity == "mythic rare" then " (M)"
- else if card.rarity == "special" then " (S)"
- else " (C)"
- }
- # Formats rules text w/ only italic tags.
- forum_rules_filter_plain := replace@(match:"[(]", replace:"[i](")+
- replace@(match:"[)]", replace: ")[/i]")
- # Formats rules text w/ mana symbols. MSE and mtgsally use same bbcode tags for mana.
- forum_rules_filter_mtgsally_mse :=
- # Italics around parenthesis.
- replace@(match:"[(]", replace:"[i](")+
- replace@(match:"[)]", replace: ")[/i]")+
- # 2/C's don't appear in regular english, format them all.
- replace@(match:"2/W", replace:":sym2w:")+
- replace@(match:"2/U", replace:":sym2u:")+
- replace@(match:"2/B", replace:":sym2b:")+
- replace@(match:"2/R", replace:":sym2r:")+
- replace@(match:"2/G", replace:":sym2g:")+
- # C/D's don't appear in regular english, format them all.
- replace@(match:"W/U", replace:":symwu:")+
- replace@(match:"W/B", replace:":symwb:")+
- replace@(match:"U/B", replace:":symub:")+
- replace@(match:"U/R", replace:":symur:")+
- replace@(match:"B/R", replace:":symbr:")+
- replace@(match:"B/G", replace:":symbg:")+
- replace@(match:"R/G", replace:":symrg:")+
- replace@(match:"R/W", replace:":symrw:")+
- replace@(match:"G/W", replace:":symgw:")+
- replace@(match:"G/U", replace:":symgu:")+
- # Various positions for taps, untaps and chaos symbols.
- replace@(match:" T ", replace:" :symtap: ")+
- replace@(match:" Q ", replace:" :symq: ")+
- replace@(match:" C ", replace:" :symch: ")+
- replace@(match:"T,", replace:":symtap:,")+
- replace@(match:"Q,", replace:":symq:,")+
- replace@(match:"C,", replace:":symch:,")+
- replace@(match:"T:", replace:":symtap::")+
- replace@(match:"Q:", replace:":symq::")+
- replace@(match:"C:", replace:":symch::")+
- # Mana right before a space.
- replace@(match:"G ", replace:":symg: ")+
- replace@(match:"R ", replace:":symr: ")+
- replace@(match:"B ", replace:":symb: ")+
- replace@(match:"U ", replace:":symu: ")+
- replace@(match:"W ", replace:":symw: ")+
- replace@(match:"S ", replace:":snow: ")+
- # Mana right before a comma.
- replace@(match:"G,", replace:":symg:,")+
- replace@(match:"R,", replace:":symr:,")+
- replace@(match:"B,", replace:":symb:,")+
- replace@(match:"U,", replace:":symu:,")+
- replace@(match:"W,", replace:":symw:,")+
- replace@(match:"S,", replace:":snow:,")+
- # Mana right before a colon.
- replace@(match:"G:", replace:":symg::")+
- replace@(match:"R:", replace:":symr::")+
- replace@(match:"B:", replace:":symb::")+
- replace@(match:"U:", replace:":symu::")+
- replace@(match:"W:", replace:":symw::")+
- # Drag rules text to search for more mana characters. Reverse color wheel order works better. Repeat several times.
- replace@(match:"G:", replace:":symg::")+
- replace@(match:"R:", replace:":symr::")+
- replace@(match:"B:", replace:":symb::")+
- replace@(match:"U:", replace:":symu::")+
- replace@(match:"W:", replace:":symw::")+
- replace@(match:"G:", replace:":symg::")+
- replace@(match:"R:", replace:":symr::")+
- replace@(match:"B:", replace:":symb::")+
- replace@(match:"U:", replace:":symu::")+
- replace@(match:"W:", replace:":symw::")+
- replace@(match:"G:", replace:":symg::")+
- replace@(match:"R:", replace:":symr::")+
- replace@(match:"B:", replace:":symb::")+
- replace@(match:"U:", replace:":symu::")+
- replace@(match:"W:", replace:":symw::")+
- # Symbolize snow.
- replace@(match:"S:", replace:":snow::")+
- replace@(match:"S:", replace:":snow::")+
- replace@(match:"S:", replace:":snow::")+
- # Symbolize numbers from 20-0 when before a comma.
- replace@(match:"20,", replace:":20mana:,")+
- replace@(match:"19,", replace:":19mana:,")+
- replace@(match:"18,", replace:":18mana:,")+
- replace@(match:"17,", replace:":17mana:,")+
- replace@(match:"16,", replace:":16mana:,")+
- replace@(match:"15,", replace:":15mana:,")+
- replace@(match:"14,", replace:":14mana:,")+
- replace@(match:"13,", replace:":13mana:,")+
- replace@(match:"12,", replace:":12mana:,")+
- replace@(match:"11,", replace:":11mana:,")+
- replace@(match:"10,", replace:":10mana:,")+
- replace@(match:"9,", replace:":9mana:,")+
- replace@(match:"8,", replace:":8mana:,")+
- replace@(match:"7,", replace:":7mana:,")+
- replace@(match:"6,", replace:":6mana:,")+
- replace@(match:"5,", replace:":5mana:,")+
- replace@(match:"4,", replace:":4mana:,")+
- replace@(match:"3,", replace:":3mana:,")+
- replace@(match:"2,", replace:":2mana:,")+
- replace@(match:"1,", replace:":1mana:,")+
- replace@(match:"0,", replace:":0mana:,")+
- # Symbolize numbers from 20-0 when before another symbol or a colon.
- replace@(match:"20:", replace:":20mana::")+
- replace@(match:"19:", replace:":19mana::")+
- replace@(match:"18:", replace:":18mana::")+
- replace@(match:"17:", replace:":17mana::")+
- replace@(match:"16:", replace:":16mana::")+
- replace@(match:"15:", replace:":15mana::")+
- replace@(match:"14:", replace:":14mana::")+
- replace@(match:"13:", replace:":13mana::")+
- replace@(match:"12:", replace:":12mana::")+
- replace@(match:"11:", replace:":11mana::")+
- replace@(match:"10:", replace:":10mana::")+
- replace@(match:"9:", replace:":9mana::")+
- replace@(match:"8:", replace:":8mana::")+
- replace@(match:"7:", replace:":7mana::")+
- replace@(match:"6:", replace:":6mana::")+
- replace@(match:"5:", replace:":5mana::")+
- replace@(match:"4:", replace:":4mana::")+
- replace@(match:"3:", replace:":3mana::")+
- replace@(match:"2:", replace:":2mana::")+
- replace@(match:"1:", replace:":1mana::")+
- replace@(match:"0:", replace:":0mana::")+
- # Symbolize X and Y when before a comma.
- replace@(match:"Y,", replace:":symy:,")+
- replace@(match:"X,", replace:":symx:,")+
- # Symbolize X and Y when before another symbol or a colon.
- replace@(match:"Y:", replace:":symy::")+
- replace@(match:"X:", replace:":symx::")
- # Count the number of paragraphs to detect number of walker abilities.
- write_card := {
- # The Name
- "\n[b]"+card.name+"[/b]"
- # The Type and Rarity
- +"\n"+card.type+(if options.color_rarities then rarity_color() else rarity_uncolor())
- # The Rules Text
- +(if card.rule_text != "" then "\n")
- +(if not options.text_costs then forum_rules_filter_mtgsally_mse(remove_tags(card.rule_text)))
- +(if options.text_costs then forum_rules_filter_plain(card.rule_text))
- # The Flavor Text
- +(if card.flavor_text != "" then "\n[i]")
- +card.flavor_text
- +(if card.flavor_text != "" then "[/i]")
- # The Notes
- +(if options.include_notes and card.notes !="" then "\n[spoiler]Card Notes: ")
- +(if options.include_notes and card.notes !="" then card.notes)
- +(if options.include_notes and card.notes !="" then "[/spoiler]")
- +"\n"
- }
- write_cards := to_text(for each card in sort_list(cards, order_by: {input.card_number}) do write_card())
- to_string("Full Spoiler List for "+set.title+"\nSet by "+options.creator+"\n"+set.description+"\n"+write_cards)
+mse version: 0.3.8
+short name: Forum
+full name: Spoiler Exporter
+position hint: 002
+icon: icon.png
+version: 2010-05-17
+installer group: Magic Archenemy/Export/forum
+
+depends on:
+ package: archenemy.mse-game
+ version: 2010-05-17
+
+game: archenemy
+file type: *.txt|*.txt|*.*|*.*
+
+# By Pichoro
+# Based on code by Idle Muse, Innuendo and Seeonee
+
+option field:
+ type: choice
+ name: forum
+ choice: mse
+ choice: mtgsalvation
+ description: What forum should the spoiler be formatted for?
+option field:
+ type: boolean
+ name: text costs
+ initial: yes
+ description: Should mana costs be plain text? Symbols usually can't be copied and pasted.
+option field:
+ type: text
+ name: creator
+ description: The creator of the set.
+option field:
+ type: boolean
+ name: include notes
+ description: Should card notes be included?
+ initial: no
+option field:
+ type: boolean
+ name: color rarities
+ description: Should rarities be colored?
+ initial: yes
+script:
+ # Colored rarity markers.
+ rarity_color := {
+ if card.rarity == "basic land" then " (C)"
+ else if card.rarity == "common" then " (C)"
+ else if card.rarity == "uncommon" then " [color=silver](U)[/color]"
+ else if card.rarity == "rare" then " [color=gold](R)[/color]"
+ else if card.rarity == "mythic rare" then " [color=orange](M)[/color]"
+ else if card.rarity == "special" then " [color=purple](S)[/color]"
+ else " (C)"
+ }
+ # Non colored rarity markers.
+ rarity_uncolor := {
+ if card.rarity == "basic land" then " (C)"
+ else if card.rarity == "common" then " (C)"
+ else if card.rarity == "uncommon" then " (U)"
+ else if card.rarity == "rare" then " (R)"
+ else if card.rarity == "mythic rare" then " (M)"
+ else if card.rarity == "special" then " (S)"
+ else " (C)"
+ }
+ # Formats rules text w/ only italic tags.
+ forum_rules_filter_plain := replace@(match:"[(]", replace:"[i](")+
+ replace@(match:"[)]", replace: ")[/i]")
+ # Formats rules text w/ mana symbols. MSE and mtgsally use same bbcode tags for mana.
+ forum_rules_filter_mtgsally_mse :=
+ # Italics around parenthesis.
+ replace@(match:"[(]", replace:"[i](")+
+ replace@(match:"[)]", replace: ")[/i]")+
+ # 2/C's don't appear in regular english, format them all.
+ replace@(match:"2/W", replace:":sym2w:")+
+ replace@(match:"2/U", replace:":sym2u:")+
+ replace@(match:"2/B", replace:":sym2b:")+
+ replace@(match:"2/R", replace:":sym2r:")+
+ replace@(match:"2/G", replace:":sym2g:")+
+ # C/D's don't appear in regular english, format them all.
+ replace@(match:"W/U", replace:":symwu:")+
+ replace@(match:"W/B", replace:":symwb:")+
+ replace@(match:"U/B", replace:":symub:")+
+ replace@(match:"U/R", replace:":symur:")+
+ replace@(match:"B/R", replace:":symbr:")+
+ replace@(match:"B/G", replace:":symbg:")+
+ replace@(match:"R/G", replace:":symrg:")+
+ replace@(match:"R/W", replace:":symrw:")+
+ replace@(match:"G/W", replace:":symgw:")+
+ replace@(match:"G/U", replace:":symgu:")+
+ # Various positions for taps, untaps and chaos symbols.
+ replace@(match:" T ", replace:" :symtap: ")+
+ replace@(match:" Q ", replace:" :symq: ")+
+ replace@(match:" C ", replace:" :symch: ")+
+ replace@(match:"T,", replace:":symtap:,")+
+ replace@(match:"Q,", replace:":symq:,")+
+ replace@(match:"C,", replace:":symch:,")+
+ replace@(match:"T:", replace:":symtap::")+
+ replace@(match:"Q:", replace:":symq::")+
+ replace@(match:"C:", replace:":symch::")+
+ # Mana right before a space.
+ replace@(match:"G ", replace:":symg: ")+
+ replace@(match:"R ", replace:":symr: ")+
+ replace@(match:"B ", replace:":symb: ")+
+ replace@(match:"U ", replace:":symu: ")+
+ replace@(match:"W ", replace:":symw: ")+
+ replace@(match:"S ", replace:":snow: ")+
+ # Mana right before a comma.
+ replace@(match:"G,", replace:":symg:,")+
+ replace@(match:"R,", replace:":symr:,")+
+ replace@(match:"B,", replace:":symb:,")+
+ replace@(match:"U,", replace:":symu:,")+
+ replace@(match:"W,", replace:":symw:,")+
+ replace@(match:"S,", replace:":snow:,")+
+ # Mana right before a colon.
+ replace@(match:"G:", replace:":symg::")+
+ replace@(match:"R:", replace:":symr::")+
+ replace@(match:"B:", replace:":symb::")+
+ replace@(match:"U:", replace:":symu::")+
+ replace@(match:"W:", replace:":symw::")+
+ # Drag rules text to search for more mana characters. Reverse color wheel order works better. Repeat several times.
+ replace@(match:"G:", replace:":symg::")+
+ replace@(match:"R:", replace:":symr::")+
+ replace@(match:"B:", replace:":symb::")+
+ replace@(match:"U:", replace:":symu::")+
+ replace@(match:"W:", replace:":symw::")+
+ replace@(match:"G:", replace:":symg::")+
+ replace@(match:"R:", replace:":symr::")+
+ replace@(match:"B:", replace:":symb::")+
+ replace@(match:"U:", replace:":symu::")+
+ replace@(match:"W:", replace:":symw::")+
+ replace@(match:"G:", replace:":symg::")+
+ replace@(match:"R:", replace:":symr::")+
+ replace@(match:"B:", replace:":symb::")+
+ replace@(match:"U:", replace:":symu::")+
+ replace@(match:"W:", replace:":symw::")+
+ # Symbolize snow.
+ replace@(match:"S:", replace:":snow::")+
+ replace@(match:"S:", replace:":snow::")+
+ replace@(match:"S:", replace:":snow::")+
+ # Symbolize numbers from 20-0 when before a comma.
+ replace@(match:"20,", replace:":20mana:,")+
+ replace@(match:"19,", replace:":19mana:,")+
+ replace@(match:"18,", replace:":18mana:,")+
+ replace@(match:"17,", replace:":17mana:,")+
+ replace@(match:"16,", replace:":16mana:,")+
+ replace@(match:"15,", replace:":15mana:,")+
+ replace@(match:"14,", replace:":14mana:,")+
+ replace@(match:"13,", replace:":13mana:,")+
+ replace@(match:"12,", replace:":12mana:,")+
+ replace@(match:"11,", replace:":11mana:,")+
+ replace@(match:"10,", replace:":10mana:,")+
+ replace@(match:"9,", replace:":9mana:,")+
+ replace@(match:"8,", replace:":8mana:,")+
+ replace@(match:"7,", replace:":7mana:,")+
+ replace@(match:"6,", replace:":6mana:,")+
+ replace@(match:"5,", replace:":5mana:,")+
+ replace@(match:"4,", replace:":4mana:,")+
+ replace@(match:"3,", replace:":3mana:,")+
+ replace@(match:"2,", replace:":2mana:,")+
+ replace@(match:"1,", replace:":1mana:,")+
+ replace@(match:"0,", replace:":0mana:,")+
+ # Symbolize numbers from 20-0 when before another symbol or a colon.
+ replace@(match:"20:", replace:":20mana::")+
+ replace@(match:"19:", replace:":19mana::")+
+ replace@(match:"18:", replace:":18mana::")+
+ replace@(match:"17:", replace:":17mana::")+
+ replace@(match:"16:", replace:":16mana::")+
+ replace@(match:"15:", replace:":15mana::")+
+ replace@(match:"14:", replace:":14mana::")+
+ replace@(match:"13:", replace:":13mana::")+
+ replace@(match:"12:", replace:":12mana::")+
+ replace@(match:"11:", replace:":11mana::")+
+ replace@(match:"10:", replace:":10mana::")+
+ replace@(match:"9:", replace:":9mana::")+
+ replace@(match:"8:", replace:":8mana::")+
+ replace@(match:"7:", replace:":7mana::")+
+ replace@(match:"6:", replace:":6mana::")+
+ replace@(match:"5:", replace:":5mana::")+
+ replace@(match:"4:", replace:":4mana::")+
+ replace@(match:"3:", replace:":3mana::")+
+ replace@(match:"2:", replace:":2mana::")+
+ replace@(match:"1:", replace:":1mana::")+
+ replace@(match:"0:", replace:":0mana::")+
+ # Symbolize X and Y when before a comma.
+ replace@(match:"Y,", replace:":symy:,")+
+ replace@(match:"X,", replace:":symx:,")+
+ # Symbolize X and Y when before another symbol or a colon.
+ replace@(match:"Y:", replace:":symy::")+
+ replace@(match:"X:", replace:":symx::")
+ # Count the number of paragraphs to detect number of walker abilities.
+ write_card := {
+ # The Name
+ "\n[b]"+card.name+"[/b]"
+ # The Type and Rarity
+ +"\n"+card.type+(if options.color_rarities then rarity_color() else rarity_uncolor())
+ # The Rules Text
+ +(if card.rule_text != "" then "\n")
+ +(if not options.text_costs then forum_rules_filter_mtgsally_mse(remove_tags(card.rule_text)))
+ +(if options.text_costs then forum_rules_filter_plain(card.rule_text))
+ # The Flavor Text
+ +(if card.flavor_text != "" then "\n[i]")
+ +card.flavor_text
+ +(if card.flavor_text != "" then "[/i]")
+ # The Notes
+ +(if options.include_notes and card.notes !="" then "\n[spoiler]Card Notes: ")
+ +(if options.include_notes and card.notes !="" then card.notes)
+ +(if options.include_notes and card.notes !="" then "[/spoiler]")
+ +"\n"
+ }
+ write_cards := to_text(for each card in sort_list(cards, order_by: {input.card_number}) do write_card())
+ to_string("Full Spoiler List for "+set.title+"\nSet by "+options.creator+"\n"+set.description+"\n"+write_cards)
diff --git a/data/archenemy-standard.mse-style/style b/data/archenemy-standard.mse-style/style
index eb5c5838..2db1ce68 100644
--- a/data/archenemy-standard.mse-style/style
+++ b/data/archenemy-standard.mse-style/style
@@ -1,249 +1,249 @@
-mse version: 0.3.8
-game: archenemy
-short name: Standard
-installer group: Magic Archenemy/normal style
-icon: card-sample.png
-position hint: 01
-
-version: 2010-05-20
-depends on:
- package: archenemy.mse-game
- version: 2010-05-17
-depends on:
- package: magic-mana-small.mse-symbol-font
- version: 2007-09-23
-depends on:
- package: magic-future-common.mse-include
- version: 2007-09-23
-
-card width: 435
-card height: 621
-card dpi: 131.1179678
-# By Pichoro
-# Images by Art_Freak
-############################################################## Extra scripts
-init script:
- # Use the normal tap symbol
- mana_t := {
- if styling.tap_symbol == "old" then "old"
- else if styling.tap_symbol == "diagonal T" then "older"
- else "new"
- }
- # Use guild mana symbols?
- guild_mana := { styling.use_guild_mana_symbols }
-
-############################################################## Set info fields
-set info style:
- symbol:
- variation:
- name: invertedcommon
- border radius: 0.10
- fill type: solid
- fill color: rgb(255,255,255)
- border color: rgb(0,0,0)
-############################################################## Extra style options
-styling field:
- type: boolean
- name: use guild mana symbols
- description: Use the Ravnica guild symbols instead of the official half/half circles for hybrid mana.
- initial: no
-styling field:
- type: package choice
- name: text box mana symbols
- match: magic-mana-*.mse-symbol-font
- initial: magic-mana-small.mse-symbol-font
-styling field:
- type: choice
- name: tap symbol
- description: What tap and untap symbols should be used on cards?
- initial: modern
- choice: modern
- choice: old
- choice: diagonal T
-styling field:
- type: boolean
- name: inverted common symbol
- description: Should the common rarity symbol be inverted, like in Coldsnap?
- initial: no
-styling field:
- type: choice
- name: artist font color
- description: Should the illustrator, copyright, and illustrator paintbrush be white or black?
- choice: white
- choice: black
-styling field:
- type: package choice
- name: overlay
- description: Should there be an overlay applied, such as foil?
- match: magic-overlay-*.mse-include
- required: false
-styling style:
- use guild mana symbols:
- choice images:
- yes: /magic-mana-small.mse-symbol-font/mana_guild_rg.png
- no: /magic-mana-small.mse-symbol-font/mana_rg.png
- tap symbol:
- render style: both
- choice images:
- modern: /magic-mana-small.mse-symbol-font/mana_t.png
- old: /magic-mana-small.mse-symbol-font/mana_t_old.png
- diagonal T: /magic-mana-small.mse-symbol-font/mana_t_older.png
-############################################################## Card fields
-card style:
- ############################# Background stuff
- border color:
- left: 0
- top: 0
- width: 435
- height: 621
- radius: 16
- left width: 16
- right width: 15
- top width: 13
- bottom width: 15
- z index: 4
- ############################# Name line
- name:
- left: 63
- top: 35
- width: 306
- height: 27
- alignment: bottom center shrink-overflow
- padding bottom: 0
- z index: 2
- font:
- name: Matrix
- size: 16
- weight: bold
- color: black
- ############################# Image
- image:
- left: 26
- top: 25
- width: 383
- height: 571
- z index: 1
- mask: image_mask.png
- ############################# Card type
- type:
- left: 65
- top: 406
- width: { 312 - max(21,card_style.rarity.content_width) }
- height: 21
- alignment: middle left shrink-overflow
- z index: 2
- font:
- name: Matrix
- size: 14
- color: black
- rarity:
- right: 370
- top: 407
- width: 37
- height: 19
- z index: 2
- render style: image
- alignment: middle right
- choice images:
- # Images based on the set symbol
- common:
- script:
- if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
- else symbol_variation(symbol: set.symbol, variation: "common")
- uncommon: script: symbol_variation(symbol: set.symbol, variation: "uncommon")
- rare: script: symbol_variation(symbol: set.symbol, variation: "rare")
- mythic rare: script: symbol_variation(symbol: set.symbol, variation: "mythic rare")
- special: script: symbol_variation(symbol: set.symbol, variation: "special")
- ############################# Text box
- text:
- left: 64
- top: 435
- width: 309
- height: 122
- font:
- name: MPlantin
- italic name: MPlantin-Italic
- size: 14
- scale down to: 7
- color: black
- symbol font:
- name: { styling.text_box_mana_symbols }
- size: 14
- alignment: middle left
- z index: 2
- padding left: 5
- padding top: 2
- padding right: 5
- padding bottom: 2
- line height hard: 1.2
- line height line: 1.5
- ############################# Card sorting / numbering
- ############################# Copyright stuff
- illustrator:
- left: 99
- top: 570
- width: 267
- height: 14
- alignment: center
- z index: 2
- font:
- name: Matrix
- size: 11
- color: {styling.artist_font_color}
- copyright line:
- left: 67
- top: 587
- width: 296
- height: 14
- alignment: center
- z index: 2
- font:
- name: MPlantin
- size: 6
- color: {styling.artist_font_color}
-############################################################## Extra card fields
-extra card field:
- type: choice
- name: frame
- choice: frame
- save value: false
- editable: false
-extra card field:
- type: choice
- name: foil layer
- choice: foil
- save value: false
- editable: false
-extra card field:
- type: choice
- name: paintbrush
- script: styling.artist_font_color
- editable: false
- save value: false
-extra card style:
- paintbrush:
- right: { 232 + ( card_style.illustrator.content_width * -0.5 ) }
- top: 571
- width: 35
- height: 14
- z index: 6
- render style: image
- choice images:
- black: /magic-future-common.mse-include/paintbrush_black.png
- white: /magic-future-common.mse-include/paintbrush_white.png
- frame:
- left: 0
- top: 0
- width: 435
- height: 621
- z index: 0
- render style: image
- image: card.png
- foil layer:
- left: 0
- top: 0
- width: 435
- height: 621
- z index: 3
- render style: image
- image: {if styling.overlay == "" then nil else styling.overlay + "/overlay.png"}
+mse version: 0.3.8
+game: archenemy
+short name: Standard
+installer group: Magic Archenemy/normal style
+icon: card-sample.png
+position hint: 01
+
+version: 2010-05-20
+depends on:
+ package: archenemy.mse-game
+ version: 2010-05-17
+depends on:
+ package: magic-mana-small.mse-symbol-font
+ version: 2007-09-23
+depends on:
+ package: magic-future-common.mse-include
+ version: 2007-09-23
+
+card width: 435
+card height: 621
+card dpi: 131.1179678
+# By Pichoro
+# Images by Art_Freak
+############################################################## Extra scripts
+init script:
+ # Use the normal tap symbol
+ mana_t := {
+ if styling.tap_symbol == "old" then "old"
+ else if styling.tap_symbol == "diagonal T" then "older"
+ else "new"
+ }
+ # Use guild mana symbols?
+ guild_mana := { styling.use_guild_mana_symbols }
+
+############################################################## Set info fields
+set info style:
+ symbol:
+ variation:
+ name: invertedcommon
+ border radius: 0.10
+ fill type: solid
+ fill color: rgb(255,255,255)
+ border color: rgb(0,0,0)
+############################################################## Extra style options
+styling field:
+ type: boolean
+ name: use guild mana symbols
+ description: Use the Ravnica guild symbols instead of the official half/half circles for hybrid mana.
+ initial: no
+styling field:
+ type: package choice
+ name: text box mana symbols
+ match: magic-mana-*.mse-symbol-font
+ initial: magic-mana-small.mse-symbol-font
+styling field:
+ type: choice
+ name: tap symbol
+ description: What tap and untap symbols should be used on cards?
+ initial: modern
+ choice: modern
+ choice: old
+ choice: diagonal T
+styling field:
+ type: boolean
+ name: inverted common symbol
+ description: Should the common rarity symbol be inverted, like in Coldsnap?
+ initial: no
+styling field:
+ type: choice
+ name: artist font color
+ description: Should the illustrator, copyright, and illustrator paintbrush be white or black?
+ choice: white
+ choice: black
+styling field:
+ type: package choice
+ name: overlay
+ description: Should there be an overlay applied, such as foil?
+ match: magic-overlay-*.mse-include
+ required: false
+styling style:
+ use guild mana symbols:
+ choice images:
+ yes: /magic-mana-small.mse-symbol-font/mana_guild_rg.png
+ no: /magic-mana-small.mse-symbol-font/mana_rg.png
+ tap symbol:
+ render style: both
+ choice images:
+ modern: /magic-mana-small.mse-symbol-font/mana_t.png
+ old: /magic-mana-small.mse-symbol-font/mana_t_old.png
+ diagonal T: /magic-mana-small.mse-symbol-font/mana_t_older.png
+############################################################## Card fields
+card style:
+ ############################# Background stuff
+ border color:
+ left: 0
+ top: 0
+ width: 435
+ height: 621
+ radius: 16
+ left width: 16
+ right width: 15
+ top width: 13
+ bottom width: 15
+ z index: 4
+ ############################# Name line
+ name:
+ left: 63
+ top: 35
+ width: 306
+ height: 27
+ alignment: bottom center shrink-overflow
+ padding bottom: 0
+ z index: 2
+ font:
+ name: Matrix
+ size: 16
+ weight: bold
+ color: black
+ ############################# Image
+ image:
+ left: 26
+ top: 25
+ width: 383
+ height: 571
+ z index: 1
+ mask: image_mask.png
+ ############################# Card type
+ type:
+ left: 65
+ top: 406
+ width: { 312 - max(21,card_style.rarity.content_width) }
+ height: 21
+ alignment: middle left shrink-overflow
+ z index: 2
+ font:
+ name: Matrix
+ size: 14
+ color: black
+ rarity:
+ right: 370
+ top: 407
+ width: 37
+ height: 19
+ z index: 2
+ render style: image
+ alignment: middle right
+ choice images:
+ # Images based on the set symbol
+ common:
+ script:
+ if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
+ else symbol_variation(symbol: set.symbol, variation: "common")
+ uncommon: script: symbol_variation(symbol: set.symbol, variation: "uncommon")
+ rare: script: symbol_variation(symbol: set.symbol, variation: "rare")
+ mythic rare: script: symbol_variation(symbol: set.symbol, variation: "mythic rare")
+ special: script: symbol_variation(symbol: set.symbol, variation: "special")
+ ############################# Text box
+ text:
+ left: 64
+ top: 435
+ width: 309
+ height: 122
+ font:
+ name: MPlantin
+ italic name: MPlantin-Italic
+ size: 14
+ scale down to: 7
+ color: black
+ symbol font:
+ name: { styling.text_box_mana_symbols }
+ size: 14
+ alignment: middle left
+ z index: 2
+ padding left: 5
+ padding top: 2
+ padding right: 5
+ padding bottom: 2
+ line height hard: 1.2
+ line height line: 1.5
+ ############################# Card sorting / numbering
+ ############################# Copyright stuff
+ illustrator:
+ left: 99
+ top: 570
+ width: 267
+ height: 14
+ alignment: center
+ z index: 2
+ font:
+ name: Matrix
+ size: 11
+ color: {styling.artist_font_color}
+ copyright line:
+ left: 67
+ top: 587
+ width: 296
+ height: 14
+ alignment: center
+ z index: 2
+ font:
+ name: MPlantin
+ size: 6
+ color: {styling.artist_font_color}
+############################################################## Extra card fields
+extra card field:
+ type: choice
+ name: frame
+ choice: frame
+ save value: false
+ editable: false
+extra card field:
+ type: choice
+ name: foil layer
+ choice: foil
+ save value: false
+ editable: false
+extra card field:
+ type: choice
+ name: paintbrush
+ script: styling.artist_font_color
+ editable: false
+ save value: false
+extra card style:
+ paintbrush:
+ right: { 232 + ( card_style.illustrator.content_width * -0.5 ) }
+ top: 571
+ width: 35
+ height: 14
+ z index: 6
+ render style: image
+ choice images:
+ black: /magic-future-common.mse-include/paintbrush_black.png
+ white: /magic-future-common.mse-include/paintbrush_white.png
+ frame:
+ left: 0
+ top: 0
+ width: 435
+ height: 621
+ z index: 0
+ render style: image
+ image: card.png
+ foil layer:
+ left: 0
+ top: 0
+ width: 435
+ height: 621
+ z index: 3
+ render style: image
+ image: {if styling.overlay == "" then nil else styling.overlay + "/overlay.png"}
diff --git a/data/archenemy.mse-game/game b/data/archenemy.mse-game/game
index aa2898a6..4779848e 100644
--- a/data/archenemy.mse-game/game
+++ b/data/archenemy.mse-game/game
@@ -1,1207 +1,1207 @@
-mse version: 0.3.8
-short name: Archenemy
-full name: Magic Scheme Cards
-installer group: Magic Archenemy/game files
-icon: card-sample.png
-position hint: 02
-
-version: 2010-08-14
-
-# By Pichoro
-############################################################## Functions & filters
-# General functions
-init script:
- ############################################################## Sorting mana symbols
-
- # correctly sort a mana symbol (no guild mana)
- mana_sort := sort_text@(order: "XYZI[0123456789]S(WUBRG)")
-
- # correctly sort guild mana
- mana_sort_guild := sort_text@(order: "[XYZI01234567890SWUBRG/|]") +
- replace@(
- match: "./.|././.|./././.|.[|]",
- in_context: "(^|[^/])($|[^/])",
- replace: {sort_text(order:"in_place((WUBRG)")}
- )
- mana_has_guild := match@(match: "[/|]") # Is there guild or half mana in the input?
-
- # A mana cost can contain both normal and guild mana
- mana_filter := to_upper + {
- if mana_has_guild() then mana_sort_guild()
- else mana_sort()
- }
-
- # Like mana filter, only also allow tap symbols:
- tap_filter := sort_text@(order: "")
-
- mana_filter_t := replace@( # Remove [] used for forcing mana symbols
- match: "[\\[\\]]",
- replace: ""
- ) + { tap_filter() + mana_filter() }
-
- ############################################################## Utilities for keywords
-
- # replaces — correctly
- add := "" # default is nothing
- for_mana_costs := format_cost := {
- if input.separator_before == "—" and contains(input.param, " ") then (
- if contains(input.param, match:",") then (
- if match(match: "^[SCTQXYZIWUBRG0-9/|]+,", input.param) then
- "{add}{combined_cost(input.param)}"
- else "{combined_cost(input.param)}"
- ) else
- "{alternative_cost(input.param)}"
- ) else
- "{add}{input.param}"
- }
- alternative_cost := replace@(match:"^[A-Z]", replace: { to_lower() })
- combined_cost := replace@(match:", [A-Z]", replace: { to_lower() })+
- replace@(match:",", replace:" and")+
- replace@(match:"^[SCTQXYZIWUBRG0-9/|]", in_context: "(^|[[:space:]])", replace: "&")+
- replace@(match:"^[A-Z]", replace: { to_lower() })
- long_dash := replace@(match:"-", replace:"—")
-
- # Converted mana cost
- is_half_mana := match@(match: "1/2|[|][WUBRGS]")
- is_colored_mana := match@(match: "[WUBRG]")
- only_numbers := filter_text@(match: "^[0123456789]+")
- cmc_split := break_text@(match: "(?ix) 1/2 | [|][WUBRG] | [0-9]+(?!/[WUBRGSCTQ2]) | [WUBRGS0-9](/[WUBRGS])\{0,4} ")
- cmc := {to_number(
- for each sym in cmc_split() do (
- numbers := only_numbers(sym)
- if is_half_mana(sym) then 0.5
- else if numbers != "" then max(1, to_int(numbers))
- else 1 # all other symbols are 1
- ))
- }
-
- colored_mana := {to_number(
- for each sym in cmc_split() do (
- numbers := only_numbers(sym)
- if is_colored_mana(sym) then
- if is_half_mana(sym) then 0.5 else 1
- else 0
- ))
- }
-
- ############################################################## The text box
-
- # Filters for the text box
- # context in which mana symbols are found
- mana_context :=
- "(?ix) # case insensitive, ignore whitespace
- (^|[[:space:]\"(]) # start of a word
- ( : # G: something
- | , # G, tap: something
- | [ ]can[ ]be[ ]pay
- | (pays?|additional|costs?|the # pay X. creatures cost 1 less. pay an additional G.
- |adds?|pay(ed)?[ ](with|using)
- )
- ([ ]either)? # pay either X or Y
- ([ ]]*>[CTQSXYZIWUBRG0-9/|]+]*>[ ](and|or))* # pay X or Y
- [ ]
- ([,.)]|$ # (end of word)
- |[ ][^ .,]*$ # still typing...
- |[ ]( or | and | in | less | more | to ) # or next word is ...
- )
- )
- | # keyword argument that is declared as mana
- | [ ]* # keyword argument that is declared as cost
- | , # keyword argument that is declared as cost
- ";
- # the rule text filter
- # - adds mana symbols
- # - makes text in parentheses italic
- text_filter :=
- # step 1 : remove all automatic tags
- remove_tag@(tag: "") +
- remove_tag@(tag: "") +
- remove_tag@(tag: "{keyword}"
- else keyword + if expand then " ({reminder})" }
- ) +
- # step 2b : move inline keywords' reminder text to the end of the line
- replace@(
- match: "(.*]*>)([^\n(]+)",
- replace: "\\2\\1"
- ) +
- replace@(
- match: "(.*]*>)([^\n(]+)",
- replace: "\\2\\1"
- ) +
- replace@(
- match: "(.*]*>)([^\n(]+)",
- replace: "\\2\\1"
- ) +
- # step 3 : expand shortcut words ~ and CARDNAME
- replace@(
- match: "CARDNAME",
- in_context: "(^|[[:space:]]|\\()",
- replace: ""
- ) +
- # step 4 : explict non mana symbols
- replace@(
- match: "\\][SCTQXYZIWUBRG0-9/|]+\\[",
- replace: {"" + mana_filter_t() + ""} ) +
- # step 5 : add mana & tap symbols
- replace@(
- match: "[SCTQXYZIWUBRG0-9/|]+",
- in_context: mana_context,
- replace: {"" + mana_filter_t() + ""} ) +
- # step 5b : add explict mana symbols
- replace@(
- match: "\\[[SCTQXYZIWUBRG0-9/|]+\\]",
- replace: {"" + mana_filter_t() + ""} ) +
- # step 6 : curly quotes
- curly_quotes +
- # step 7 : italic reminder text
- replace@(
- match: "[(][^)\n]*[)]?",
- in_context: "(^|[[:space:]])|>",
- replace: "&") +
- # step 8 : automatic capitalization, but not after "("
- replace@(
- match: "[a-z]",
- in_context: "[ ]*: |—| — ",
- replace: { to_upper() })
-
- ############################################################## Other boxes
- # the flavor text filter
- # - makes all text italic
- flavor_text_filter :=
- # step 2 : remove italic tags
- remove_tag@(tag: "") +
- # step 3 : surround by tags
- { "" + input + "" } +
- # curly quotes
- replace@(
- match: "[[.quotation-mark.]]|”",
- in_context: "[ ]+|^|",
- replace: "“" )+
- replace@(
- match: "[[.quotation-mark.]]",
- replace: "”" )
-
- # Process the name for sorting rules
- sort_name :=
- # Remove "The", "A", and "And" at the beginning
- replace@(match: "^(The|An?) ", replace: "") +
- # Remove commas and apostrophes
- replace@(match: "(,|'|’)", replace: "") +
- # Remove bold and italic tags
- replace@(match: "(|||)", replace: "") +
- # Make lowercase
- to_lower
-
- #Necessary to make magic-mana-future play nicely
- colorless_color := { "c" }
-
- word_count := break_text@(match:"[^[:space:]]+") + length
- line_count := split_text@(match:"\n+",include_empty:false) + length
-
- # Move the cursor past the separator in the type box
- type_over_type := replace@(match:" ?[-:]$", replace:"")
-
- type_filter := {
- input := remove_tag(tag: "{input}{tag}>"
- }
-
-############################################################## Set fields
-set field:
- type: info
- name: Set Information
-set field:
- type: text
- name: title
-set field:
- type: text
- name: description
- multi line: true
-set field:
- type: text
- name: artist
-set field:
- type: text
- name: copyright
-set field:
- type: symbol
- name: symbol
- description: The symbol for this set, double click to edit
-set field:
- type: info
- name: Defaults and Automation
-set field:
- type: color
- name: border color
- description: The default border color for cards
- choice:
- name: black
- color: rgb(0,0,0)
- choice:
- name: white
- color: rgb(255,255,255)
- choice:
- name: silver
- color: rgb(128,128,128)
- choice:
- name: gold
- color: rgb(200,180,0)
-set field:
- type: multiple choice
- name: automatic reminder text
- choice: old
- choice: core
- choice: expert
- choice: pseudo
- choice: custom
- initial: old, expert, pseudo, custom
- # Convert from older mse versions
- script:
- if value = "yes" then "old, core, expert, custom"
- else if value = "no" then ""
- else value
- description: For which kinds of keywords should reminder text be added by default? Note: you can enable/disable reminder text by right clicking the keyword.
-set field:
- type: boolean
- name: automatic card numbers
- initial: yes
- description: Should card numbers be shown on the cards?
-############################# Default style
-default set style:
- title:
- padding left: 2
- font:
- size: 16
- symbol:
- max aspect ratio: 2.5
- variation:
- name: common
- border radius: 0.10
- fill type: solid
- fill color: rgb(0,0,0)
- border color: rgb(255,255,255)
- variation:
- name: uncommon
- border radius: 0.07
- fill type: linear gradient
- fill color 1: rgb(224,224,224)
- fill color 2: rgb(84, 84, 84)
- border color 1: rgb(0, 0, 0)
- border color 2: rgb(0, 0, 0)
- variation:
- name: rare
- border radius: 0.07
- fill type: linear gradient
- fill color 1: rgb(214,196,94)
- fill color 2: rgb(95, 84, 40)
- border color 1: rgb(0, 0, 0)
- border color 2: rgb(0, 0, 0)
- variation:
- name: mythic rare
- border radius: 0.07
- fill type: linear gradient
- fill color 1: rgb(245,148,31)
- fill color 2: rgb(186,45,38)
- border color 1: rgb(0, 0, 0)
- border color 2: rgb(0, 0, 0)
- variation:
- name: special
- border radius: 0.10
- fill type: linear gradient
- fill color 1: rgb(224,170,247)
- fill color 2: rgb(58,7,80)
- border color 1: rgb(255,255,255)
- border color 2: rgb(255,255,255)
- automatic reminder text:
- render style: checklist
- direction: vertical
-############################################################## Card fields
-############################# Background stuff
-card field:
- type: color
- name: border color
- default: set.border_color
- choice:
- name: black
- color: rgb(0,0,0)
- choice:
- name: white
- color: rgb(255,255,255)
- choice:
- name: silver
- color: rgb(128,128,128)
- choice:
- name: gold
- color: rgb(200,180,0)
- show statistics: false
- description: The border of the card; can be any solid color
-############################# Name line
-card field:
- type: text
- name: name
- identifying: true
- show statistics: false
- card list visible: true
- card list column: 1
- card list width: 150
- description: The name of the card
-############################# Image
-card field:
- type: image
- name: image
- show statistics: false
- description: The image of the card
-############################# Card type
-card field:
- type: text
- name: type
- icon: stats/type.png
- card list visible: true
- card list column: 2
- card list width: 100
- description: The type of the card
- script: type_filter(value)
-card field:
- type: choice
- name: rarity
- icon: stats/rarity.png
- position hint: 100
- choice: common
- choice: uncommon
- choice: rare
- choice: mythic rare
- choice: special
- initial: common
- card list visible: true
- card list column: 4
- card list width: 50
- description: The rarity of the card, to edit the symbol switch to the 'set info' tab
- choice colors:
- common: rgb(33,33,33)
- uncommon: rgb(224,224,224)
- mythic rare: rgb(202, 49, 35)
- rare: rgb(255,207,52)
- special: rgb(190,0,255)
-############################# Text box
-card field:
- type: text
- name: rule text
- script: text_filter(value)
- show statistics: false
- multi line: true
- description: The rules text of the card
-card field:
- type: text
- name: flavor text
- script: flavor_text_filter(value)
- show statistics: false
- multi line: true
- description: The flavor text of the card
-card field:
- type: text
- name: text
- multi line: true
- save value: false
- show statistics: false
- script:
- combined_editor(field1: card.rule_text, separator: "\n", field2: card.flavor_text)
- description: The rules and flavor text for the card; use up and down arrows to switch
-############################# Card sorting / numbering
-card field:
- type: text
- name: card number
- save value: false
- script:
- position(
- of: card
- in: set
- order_by: { sort_name(card.name) }
- ) + 1
- + "/" +
- number_of_items(in: set)
- card list visible: true
- card list column: 10
- card list width: 50
- card list name: #
- editable: false
- show statistics: false
-############################# Copyright stuff
-card field:
- type: text
- name: illustrator
- default: set.artist
- description: The illustrator of the image
- icon: stats/illustrator.png
- position hint: 100
-card field:
- type: text
- name: copyright
- default: set.copyright
- show statistics: false
- editable: false
-card field:
- type: text
- name: copyright line
- save value: false
- show statistics: false
- script:
- if set.automatic_card_numbers then
- combined_editor(field1: card.copyright, separator: " ", field2: card.card_number)
- else
- forward_editor(field: card.copyright)
- description: The copyright and card number of the card
-############################################################### Extra Statistics
-statistics dimension:
- name: keywords
- position hint: 1000
- script: keyword_usage(unique:true)
- show empty: false
- split list: true
- icon: stats/keywords.png
-statistics dimension:
- name: style
- position hint: 1001
- script: stylesheet.short_name
- icon: stats/stylesheet.png
-statistics dimension:
- name: text length (words)
- position hint: 100
- script: word_count(to_text(card.rule_text))
- numeric: true
- bin size: 5
- icon: stats/text_length.png
-statistics dimension:
- name: text length (lines)
- position hint: 101
- script: line_count(to_text(card.rule_text))
- numeric: true
- icon: stats/text_length.png
-############################################################## Auto replace
-# Do we need categories?
-#auto replace category: text box
-#auto replace category: copyright
-#auto replace category: everywhere
-auto replace:
- match: (C)
- replace: ©
-auto replace:
- match: CR
- replace: ©
-auto replace:
- match: AE
- replace: Æ
- whole word: false
-auto replace:
- match: TM
- replace: ™
- whole word: false
-auto replace:
- match: --
- replace: —
-auto replace:
- # note the spaces
- match:
- -
- replace:
- —
-auto replace:
- match: CIP
- replace: enters the battlefield
-auto replace:
- match: AAA
- replace: as an additional cost to cast
-auto replace:
- match: scheming
- replace: When you set this scheme in motion,
-auto replace:
- match: hot seat
- replace: When you set this scheme in motion, target opponent chooses self or others. If that player chooses self,
-auto replace:
- match: ~
- replace: this scheme
-auto replace:
- match: '
- replace: ’
-############################################################## Card pack items
-pack type:
- name: card
- filter: card.name != ""
-############################################################## Card packs
-pack type:
- name: booster pack
- item:
- name: card
- amount: 1
-############################################################## Archenemy word lists
-word list:
- name: type
- word:
- name: Ongoing
- is prefix: true
- line below: true
- word: Scheme
-############################################################## Keywords
-############################# Keyword rules
-
-has keywords: true
-
-#keyword preview: {keyword} ({reminder})
-
-keyword mode:
- name: old
- description: Old keywords (Banding, Phasing, etc.)
-keyword mode:
- name: core
- description: Core set keywords (Flying, Regenerate, etc.)
-keyword mode:
- name: expert
- description: Expert level keywords (Scry, Vanishing, etc.)
-keyword mode:
- name: pseudo
- description: Pseudo keyword / named ability (Hellbent, Threshold, etc.)
-keyword mode:
- is default: true
- name: custom
- description: Custom keywords
-
-keyword parameter type:
- name: mana
- match: [SCTQXYZI0-9WUBRG/|]+
- refer script:
- name: normal
- description: No changes made
- script: \{{input}\}
- refer script:
- name: converted mana cost
- description: Converts mana to number
- # "0" left in so users can easily see how to edit script.
- script: \{cmc({input}) + 0\}
- refer script:
- name: colored mana cost
- description: Converts mana to number of colored mana
- # "0" left in so users can easily see how to edit script.
- script: \{colored_mana({input}) + 0\}
-# By pichoro and bunnierein
-keyword parameter type:
- name: cost
- match: [ ][SCTQXYZI0-9WUBRG/|]*|[-—][^(\n]*
- separator before is: [ —-]
- separator after is: [.]
- optional: false
- # note: the separator is part of match
- refer script:
- name: normal
- description: When using mana only costs, doesn't include anything extra in the reminder text
- script: \{{input}\}
- refer script:
- name: add "pay an additional " for mana costs
- description: When using mana only costs, words the reminder text as "pay an additional "
- script: \{for_mana_costs(add:"pay an additional ",{input})\}
- refer script:
- name: add "pay " for mana costs
- description: When using mana only costs, words the reminder text as "pay "
- script: \{for_mana_costs(add:"pay ",{input})\}
- separator script: long_dash()
-keyword parameter type:
- name: number
- match: [XYZ0-9]+
- refer script:
- name: normal
- description: (1,2,3)
- script: \{{input}\}
- refer script:
- name: as words
- description: (one, two, three)
- script: \{english_number({input})\}
- refer script:
- name: as words, use "a" for 1
- description: (a, two, three)
- script: \{english_number_a({input})\}
- refer script:
- name: as words, use "" for 1
- description: (, two, three)
- script: \{english_number_multiple({input})\}
-keyword parameter type:
- name: action
- match: [^(:\n]+
- separator after is: [.]
- reminder script: alternative_cost()
-keyword parameter type:
- name: name
- match: [^(.:;\n—]+
- refer script:
- name: normal
- description: No changes made.
- script: \{{input}\}
- refer script:
- name: singular
- description: Removes plurality from words.
- script: \{english_singular({input})\}
-keyword parameter type:
- name: prefix
- description: Prefix for things like "walk"
- optional: false
- match: [A-Z][A-Z,a-z’ ]*
- example: Forest
-keyword parameter type:
- name: a
- match: [an?]*
-############################# All Magic keywords
-# By JrEye and Neko_Asakami, Updated by Pichoro and Buttock1234
-keyword:
- keyword: Flying
- match: flying
- mode: core
- reminder: It can’t be blocked except by creatures with flying or reach.
-keyword:
- keyword: First strike
- match: first strike
- mode: core
- reminder: It deals combat damage before creatures without first strike.
-keyword:
- keyword: Trample
- match: trample
- mode: core
- reminder: If it would deal enough combat damage to its blockers to destroy them, you may have it deal the rest of its damage to defending player or planeswalker.
-keyword:
- keyword: Banding
- match: banding
- mode: old
- reminder: Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature’s combat damage, not its controller, among any of the creatures it’s being blocked by or is blocking.
-keyword:
- keyword: Landwalk
- match: prefixwalk
- mode: core
- reminder: This creature is unblockable as long as defending player controls a {if match(param1.value, match: " land$") or contains(param1.value, match: "Snow") or contains(param1.value, match:"Basic") or contains(param1.value, match:"Legendary") then "{to_lower(param1)}" else "{param1}"}.
-keyword:
- keyword: Protection from
- match: protection from name
- mode: core
- reminder: It can’t be blocked, targeted, dealt damage, enchanted, or equipped by anything {english_singular(param1)}.
-keyword:
- keyword: Regeneration
- match: Regenerate
- mode: core
- reminder: The next time it would be destroyed this turn, it isn’t. If it is a creature, instead tap it, remove all damage from it, and remove it from combat.
-keyword:
- keyword: Bands with other
- match: bands with other name
- mode: old
- reminder: Any {param1} can attack in a band as long as at least one has “bands with other {param1}.” Bands are blocked as a group. If at least two {param1} you control, one of which has “bands with other {param1},” are blocking or being blocked by the same creature, you divide that creature’s combat damage, not its controller, among any of the creatures it’s being blocked by or is blocking.
-keyword:
- keyword: Rampage
- match: rampage number
- mode: old
- reminder: Whenever it becomes blocked, it gets +{param1}/+{param1} until end of turn for each creature blocking it beyond the first.
-keyword:
- keyword: Cumulative upkeep
- match: cumulative upkeep cost
- mode: old
- reminder: At the beginning of your upkeep, put an age counter on it, then sacrifice it unless you pay its upkeep cost for each age counter on it.
-keyword:
- keyword: Phasing
- match: phasing
- mode: old
- reminder: It phases in or out before you untap during each of your untap steps. While it’s phased out, it’s treated as though it doesn’t exist.
-keyword:
- keyword: Flanking
- match: flanking
- mode: expert
- reminder: Whenever a creature without flanking blocks the creature, the blocking creature gets -1/-1 until end of turn.
-keyword:
- keyword: Shadow
- match: shadow
- mode: expert
- reminder: It can block or be blocked by only creatures with shadow.
-keyword:
- keyword: Denimwalk
- match: denimwalk
- mode: old
- reminder: If defending player is wearing any clothing made of denim, the creature is unblockable.
-keyword:
- keyword: Buyback
- match: buyback cost
- mode: expert
- reminder: You may {for_mana_costs(add:"pay an additional ",param1)} as you cast it. If you do, put it into your hand as it resolves.
-keyword:
- keyword: Echo
- match: echo cost
- mode: expert
- reminder: At the beginning of your upkeep, if the permanent came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.
-keyword:
- keyword: Cycling
- match: cycling cost
- mode: expert
- reminder: {param1}, Discard it: Draw a card.
-keyword:
- keyword: Haste
- match: haste
- mode: core
- reminder: It can attack and T as soon as it comes under your control.
-keyword:
- keyword: Horsemanship
- match: horsemanship
- mode: old
- reminder: It can’t be blocked except by creatures with horsemanship.
-keyword:
- keyword: Fading
- match: fading number
- mode: expert
- reminder: It enters the battlefield with {english_number_a(param1)} fade counter(s) on it. At the beginning of your upkeep, remove a fade counter from it. If you can’t, sacrifice it.
-keyword:
- keyword: Kicker
- match: kicker cost
- mode: expert
- reminder: You may {for_mana_costs(add:"pay an additional ",param1)} as you cast the card.
-keyword:
- keyword: Flashback
- match: flashback cost
- mode: expert
- reminder: You may cast it from your graveyard for its flashback cost. Then exile it.
-keyword:
- keyword: Threshold
- match: Threshold
- mode: pseudo
- rules: Threshold — [effect] as long as seven or more cards are in your graveyard.
-keyword:
- keyword: Madness
- match: madness cost
- mode: expert
- reminder: If you discard it, you may cast it for its madness cost instead of putting it into your graveyard.
-keyword:
- keyword: Morph
- match: morph cost
- mode: expert
- reminder: You may cast it face down as a 2/2 creature for 3. Turn it face up any time for its morph cost.
-keyword:
- keyword: Fear
- match: fear
- mode: old
- reminder: It can’t be blocked except by artifact creatures and/or black creatures.
-keyword:
- keyword: Amplify
- match: amplify number
- mode: expert
- reminder: As it enters the battlefield, put {english_number_a(param1)} +1/+1 counter(s) on it for each creature that shares a type with it that you reveal in your hand.
-keyword:
- keyword: Double strike
- match: double strike
- mode: core
- reminder: It deals both first-strike and regular combat damage.
-keyword:
- keyword: Provoke
- match: provoke
- mode: expert
- reminder: When it attacks, you may have target creature defending player controls untap and block it if able.
-keyword:
- keyword: Typecycling
- match: prefixcycling cost
- mode: expert
- reminder: {param2}, Discard it: Search your library for a {param1} card, reveal it, and put it into your hand. Then shuffle your library.
-keyword:
- keyword: Storm
- match: storm
- mode: expert
- reminder: When you cast it, copy it for each spell cast before it this turn. You may choose new targets for the copies.
-keyword:
- keyword: Affinity for
- match: affinity for name
- mode: expert
- reminder: It costs 1 less to cast for each {english_singular(param1)} you control.
-keyword:
- keyword: Entwine
- match: entwine cost
- mode: expert
- reminder: Choose both if you pay the entwine cost.
-keyword:
- keyword: Equip
- match: equip cost
- mode: core
- reminder: {param1}: Attach to target creature you control. Equip only as a sorcery.
-keyword:
- keyword: Imprint
- match: Imprint
- mode: pseudo
- rules: Imprint — When it enters the battlefield, you may exile a [something] from [somewhere].
-keyword:
- keyword: Modular
- match: modular number
- mode: expert
- reminder: It enters the battlefield with {english_number_a(param1)} +1/+1 counter(s) on it. When it’s put into a graveyard, you may put its +1/+1 counters on target artifact creature.
-keyword:
- keyword: Scry
- match: Scry number
- mode: expert
- reminder:
- To scry {param1}, look at the top {
- if param1.value==1 then "card of your library, then you may put that card on the bottom of your library."
- else "{english_number(param1)} cards of your library. Put any number of them on the bottom of your library in any order and the rest on top in any order."
- }
-keyword:
- keyword: Sunburst
- match: sunburst
- mode: expert
- reminder: It enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it. If it isn’t a creature, use charge counters instead.
-keyword:
- keyword: Art rampage
- match: art rampage number
- mode: expert
- reminder: Whenever it blocked by a creature, it gets +{param1}/+{param1} for each creature in the blocker’s art beyond the first.
-keyword:
- keyword: Super haste
- match: Super haste
- mode: expert
- reminder: It may attack the turn before you cast it. (You may have it enter the battlefield from your hand, tapped and attacking, during your declare attackers step. If you do, you lose the game at the end of your next turn unless you pay its mana cost during that turn.)
-keyword:
- keyword: Gotcha
- match: Gotcha
- mode: pseudo
- rules: Gotcha — Whenever an opponent [does something], you may say “Gotcha!”. If you do, return [something] from your graveyard to your hand.
-keyword:
- keyword: Splice
- match: splice onto name cost
- mode: expert
- reminder: As you cast a {param1} spell, you may reveal the card from your hand and pay its splice cost. If you do, add its effects to that spell.
-keyword:
- keyword: Bushido
- match: bushido number
- mode: expert
- reminder: When it blocks or becomes blocked, it gets +{param1}/+{param1} until end of turn.
-keyword:
- keyword: Soulshift
- match: soulshift number
- mode: expert
- reminder: When it is put into a graveyard from the battlefield, you may return target Spirit card with converted mana cost {param1} or less from your graveyard to your hand.
-keyword:
- keyword: Enchant
- match: enchant name
- mode: core
- reminder: Target a {param1} as you cast the card. The card enters the battlefield attached to that {param1}.
-keyword:
- keyword: Vigilance
- match: vigilance
- mode: core
- reminder: Attacking doesn’t cause it to tap.
-keyword:
- keyword: Defender
- match: defender
- mode: core
- reminder: It can’t attack.
-keyword:
- keyword: Offering
- match: prefix offering
- mode: expert
- reminder: You may cast it any time you could cast an instant by sacrificing a {param1} and paying the difference in mana costs between it and the sacrificed {param1}. Mana cost includes color.
-keyword:
- keyword: Ninjutsu
- match: ninjutsu cost
- mode: expert
- reminder: {param1}, Return an unblocked attacker you control to hand: Put it onto the battlefield from your hand tapped and attacking.
-keyword:
- keyword: Epic
- match: epic
- mode: expert
- reminder: For the rest of the game, you can’t cast spells. At the beginning of each of your upkeeps, copy the card except for its epic ability. If it has any targets, you may choose new targets for the copy.
-keyword:
- keyword: Channel
- match: Channel
- mode: pseudo
- rules: Channel — [cost], Discard a card: [effect].
-keyword:
- keyword: Sweep
- match: Sweep
- mode: pseudo
- rules: Sweep — Return any number of [basic land type] you control to their owner’s hand. [effect based on number of lands returned].
-keyword:
- keyword: Convoke
- match: convoke
- mode: expert
- reminder: Each creature you tap while casting the card reduces its cost by 1 or by one mana of that creature’s color.
-keyword:
- keyword: Transmute
- match: transmute cost
- mode: expert
- reminder: {param1}, Discard it: Search your library for a card with the same converted mana cost as the discarded card, reveal it, and put it into your hand. Then shuffle your library. Transmute only as a sorcery.
-keyword:
- keyword: Dredge
- match: dredge number
- mode: expert
- reminder: If you would draw a card, instead you may put exactly {english_number(param1)} card(s) from the top of your library into your graveyard. If you do, return the card from your graveyard to your hand. Otherwise, draw a card.
-keyword:
- keyword: Radiance
- match: Radiance
- mode: pseudo
- rules: Radiance — [effect to target permanent or spell and all cards of same card type that share a color with it].
-keyword:
- keyword: Haunt
- match: haunt
- mode: expert
- reminder: When it is put into a graveyard from the battlefield, or when it resolves if it is not a permanent, exile it haunting target creature.
-keyword:
- keyword: Bloodthirst
- match: bloodthirst number
- mode: expert
- reminder: If an opponent was dealt damage this turn, the permanent enters the battlefield with {english_number_a(param1)} +1/+1 counter(s) on it.
-keyword:
- keyword: Replicate
- match: replicate cost
- mode: expert
- reminder: When you cast it, copy it for each time you paid its replicate cost. You may choose new targets for the copies.
-keyword:
- keyword: Graft
- match: graft number
- mode: expert
- reminder: It enters the battlefield with {english_number_a(param1)} +1/+1 counter(s) on it. Whenever a creature enters the battlefield, you may move a +1/+1 counter from the permanent onto it.
-keyword:
- keyword: Forecast
- match: forecast — action, Reveal name from your hand: action
- mode: expert
- reminder: Activate the ability only during your upkeep and only once each turn.
-keyword:
- keyword: Hellbent
- match: Hellbent
- mode: pseudo
- rules: Hellbent — [effect] if you have no cards in hand.
-keyword:
- keyword: Recover
- match: recover cost
- mode: expert
- reminder: When a creature is put into your graveyard from the battlefield, you may {for_mana_costs(add:"pay ",param1)}. If you do, return the card from your graveyard to your hand. Otherwise, exile this card.
-keyword:
- keyword: Ripple
- match: ripple number
- mode: expert
- reminder: When you cast it, you may reveal the top {english_number_multiple(param1)} card(s) of your library. You may cast any revealed cards with the same name as the card without paying their mana costs. Put the rest on the bottom of your library.
-keyword:
- keyword: Flash
- match: flash
- mode: core
- reminder: You may cast it any time you could cast an instant.
-keyword:
- keyword: Split second
- match: split second
- mode: expert
- reminder: As long as it is on the stack, players can’t cast spells or activate abilities that aren’t mana abilities.
-keyword:
- keyword: Suspend
- match: suspend number—cost
- mode: expert
- reminder: Rather than cast it from your hand, you may pay {param2} and exile it with {english_number_a(param1)} time counter(s) on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost. If it is a creature, it has haste.
-keyword:
- keyword: Vanishing
- match: vanishing number
- mode: expert
- reminder: It enters the battlefield with {english_number_a(param1)} time counter(s) on it. At the beginning of your upkeep, remove a time counter from it. When the last is removed, sacrifice it.
-keyword:
- keyword: Deathtouch
- match: deathtouch
- mode: expert
- reminder: Any amount of damage it deals to a creature is enough to destroy it.
-keyword:
- keyword: Reach
- match: reach
- mode: core
- reminder: It can block creatures with flying.
-keyword:
- keyword: Gravestorm
- match: gravestorm
- mode: expert
- reminder: When you cast it, copy it for each permanent put into a graveyard this turn. You may choose new targets for the copies.
-keyword:
- keyword: Lifelink
- match: lifelink
- mode: core
- reminder: Damage dealt by it also causes you to gain that much life.
-keyword:
- keyword: Absorb
- match: absorb number
- mode: expert
- reminder: If a source would deal damage to it, prevent {param1} of that damage.
-keyword:
- keyword: Fateseal
- match: fateseal number
- mode: expert
- reminder:
- Look at the top {
- if param1.value==1 then "card of an opponent’s library, then you may put it on the bottom of that player’s library."
- else "{english_number(param1)} cards of an opponent’s library, then put any number of them on the bottom of that player’s library and the rest on top in any order."
- }
-keyword:
- keyword: Transfigure
- match: transfigure cost
- mode: expert
- reminder: {param1}, Sacrifice it: Search your library for a creature card with the same converted mana cost as the sacrificed card and put that card onto the battlefield. Then shuffle your library. Transfigure only as a sorcery.
-keyword:
- keyword: Aura swap
- match: aura swap cost
- mode: expert
- reminder: {param1}: Exchange it with an Aura card in your hand.
-keyword:
- keyword: Frenzy
- match: frenzy number
- mode: expert
- reminder: Whenever it attacks and isn’t blocked, it gets +{param1}/+0 until end of turn.
-keyword:
- keyword: Delve
- match: delve
- mode: expert
- reminder: You may exile any number of cards in your graveyard as you cast it. It costs 1 less to cast for each card exiled this way.
-keyword:
- keyword: Poisonous
- match: poisonous number
- mode: expert
- reminder: Whenever it deals combat damage to a player, that player gets {english_number_a(param1)} poison counter(s). A player with ten or more poison counters loses the game.
-keyword:
- keyword: Shroud
- match: shroud
- mode: core
- reminder: It can’t be the target of spells or abilities.
-keyword:
- keyword: Fortify
- match: fortify cost
- mode: expert
- reminder: {param1}: Attach to target land you control. Fortify only as a sorcery. It enters the battlefield unattached and stays on the battlefield if the land leaves.
-keyword:
- keyword: Grandeur
- match: Grandeur
- mode: pseudo
- rules: Grandeur — Discard another card named [something]: [effect].
-keyword:
- keyword: Evoke
- match: evoke cost
- mode: expert
- reminder: You may cast it for its evoke cost. If you do, it’s sacrificed when it enters the battlefield.
-keyword:
- keyword: Champion
- match: champion a name
- mode: expert
- reminder: When it enters the battlefield, sacrifice it unless you exile another {param2} you control. When it leaves the battlefield, return that card to the battlefield.
-keyword:
- keyword: Clash
- match: clash
- mode: expert
- reminder: Each clashing player reveals the top card of his or her library, then puts that card on the top or bottom. A player wins if his or her card had a higher converted mana cost.
-keyword:
- keyword: Changeling
- match: changeling
- mode: expert
- reminder: It is every creature type at all times.
-keyword:
- keyword: Hideaway
- match: hideaway
- mode: expert
- reminder: The land enters the battlefield tapped. When it does, look at the top four cards of your library, exile one face down, then put the rest on the bottom of your library.
-keyword:
- keyword: Prowl
- match: prowl cost
- mode: expert
- reminder: You may cast it for its prowl cost if you dealt combat damage to a player this turn with a creature that shares a type with it.
-keyword:
- keyword: Reinforce
- match: reinforce number—cost
- mode: expert
- reminder: {param2}, Discard it: Put {english_number_a(param1)} +1/+1 counter(s) on target creature.
-keyword:
- keyword: Kinship
- match: Kinship
- mode: pseudo
- rules: Kinship — At the beginning of your upkeep, you may look at the top card of your library. If that card shares a creature type with it, you may reveal it. If you do, [effect].
-keyword:
- keyword: Persist
- match: persist
- mode: expert
- reminder: When it is put into a graveyard from the battlefield, if it had no -1/-1 counters on it, return it to the battlefield under its owner’s control with a -1/-1 counter on it.
-keyword:
- keyword: Wither
- match: wither
- mode: expert
- reminder: It deals damage to creatures in the form of -1/-1 counters.
-keyword:
- keyword: Conspire
- match: conspire
- mode: expert
- reminder: As you cast it, you may tap two untapped creatures you control that share a color with it. When you do, copy it and you may choose a new target for the copy.
-keyword:
- keyword: Retrace
- match: retrace
- mode: expert
- reminder: You may cast it from your graveyard by discarding a land card in addition to paying its other costs.
-keyword:
- keyword: Chroma
- match: Chroma
- mode: pseudo
- rules: Chroma — [effect] based on the number of [color] mana symbols [in graveyard, under your control, in cards you discard].
-keyword:
- keyword: Unearth
- match: unearth cost
- mode: expert
- reminder: {param1}: Return it from your graveyard to the battlefield. If it is a creature, it gains haste. Exile it at the beginning of the end step or if it would leave the battlefield. Unearth only as a sorcery.
-keyword:
- keyword: Devour
- match: devour number
- mode: expert
- reminder: As it enters the battlefield, you may sacrifice any number of creatures. It enters the battlefield with { if param1.value == 1 then "" else if param1.value == 2 then "twice " else english_number(param1) + " times " }that many +1/+1 counters on it.
-keyword:
- keyword: Exalted
- match: exalted
- mode: expert
- reminder: Whenever a creature you control attacks alone, that creature gets +1/+1 until end of turn.
-keyword:
- keyword: Domain
- match: Domain
- mode: pseudo
- rules: Domain — [effect] for each basic land type among lands you control.
-keyword:
- keyword: Cascade
- match: cascade
- mode: expert
- reminder: When you cast it, exile the top card of your library until you remove a nonland card that costs less. You may cast that card without paying its mana cost. Put the exiled cards on the bottom of your library at random.
-keyword:
- keyword: Intimidate
- match: intimidate
- mode: core
- reminder: It can’t be blocked except by artifact creatures and/or creatures that share a color with it.
-keyword:
- keyword: Landfall
- match: Landfall
- mode: pseudo
- rules: Landfall — Whenever a land enters the battlefield under your control, [effect].
-keyword:
- keyword: Multikicker
- match: multikicker cost
- mode: expert
- reminder: You may {for_mana_costs(add:"pay an additional ", param1)} any number of times as you cast it.
-keyword:
- keyword: Annihilator
- match: annihilator number
- mode: expert
- reminder: Whenever it attacks, defending player sacrifices {english_number_a(param1)} permanent(s).
-keyword:
- keyword: Rebound
- match: rebound
- mode: expert
- reminder: If you cast it from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast it from exile without paying its mana cost.
-keyword:
- keyword: Totem armor
- match: totem armor
- mode: expert
- reminder: If enchanted creature would be destroyed, instead remove all damage from the creature and destroy it.
-keyword:
- keyword: Level up
- match: level up cost
- mode: expert
- reminder: {param1}: Put a level counter on it. Level up only as a sorcery.
+mse version: 0.3.8
+short name: Archenemy
+full name: Magic Scheme Cards
+installer group: Magic Archenemy/game files
+icon: card-sample.png
+position hint: 02
+
+version: 2010-08-14
+
+# By Pichoro
+############################################################## Functions & filters
+# General functions
+init script:
+ ############################################################## Sorting mana symbols
+
+ # correctly sort a mana symbol (no guild mana)
+ mana_sort := sort_text@(order: "XYZI[0123456789]S(WUBRG)")
+
+ # correctly sort guild mana
+ mana_sort_guild := sort_text@(order: "[XYZI01234567890SWUBRG/|]") +
+ replace@(
+ match: "./.|././.|./././.|.[|]",
+ in_context: "(^|[^/])($|[^/])",
+ replace: {sort_text(order:"in_place((WUBRG)")}
+ )
+ mana_has_guild := match@(match: "[/|]") # Is there guild or half mana in the input?
+
+ # A mana cost can contain both normal and guild mana
+ mana_filter := to_upper + {
+ if mana_has_guild() then mana_sort_guild()
+ else mana_sort()
+ }
+
+ # Like mana filter, only also allow tap symbols:
+ tap_filter := sort_text@(order: "")
+
+ mana_filter_t := replace@( # Remove [] used for forcing mana symbols
+ match: "[\\[\\]]",
+ replace: ""
+ ) + { tap_filter() + mana_filter() }
+
+ ############################################################## Utilities for keywords
+
+ # replaces — correctly
+ add := "" # default is nothing
+ for_mana_costs := format_cost := {
+ if input.separator_before == "—" and contains(input.param, " ") then (
+ if contains(input.param, match:",") then (
+ if match(match: "^[SCTQXYZIWUBRG0-9/|]+,", input.param) then
+ "{add}{combined_cost(input.param)}"
+ else "{combined_cost(input.param)}"
+ ) else
+ "{alternative_cost(input.param)}"
+ ) else
+ "{add}{input.param}"
+ }
+ alternative_cost := replace@(match:"^[A-Z]", replace: { to_lower() })
+ combined_cost := replace@(match:", [A-Z]", replace: { to_lower() })+
+ replace@(match:",", replace:" and")+
+ replace@(match:"^[SCTQXYZIWUBRG0-9/|]", in_context: "(^|[[:space:]])", replace: "&")+
+ replace@(match:"^[A-Z]", replace: { to_lower() })
+ long_dash := replace@(match:"-", replace:"—")
+
+ # Converted mana cost
+ is_half_mana := match@(match: "1/2|[|][WUBRGS]")
+ is_colored_mana := match@(match: "[WUBRG]")
+ only_numbers := filter_text@(match: "^[0123456789]+")
+ cmc_split := break_text@(match: "(?ix) 1/2 | [|][WUBRG] | [0-9]+(?!/[WUBRGSCTQ2]) | [WUBRGS0-9](/[WUBRGS])\{0,4} ")
+ cmc := {to_number(
+ for each sym in cmc_split() do (
+ numbers := only_numbers(sym)
+ if is_half_mana(sym) then 0.5
+ else if numbers != "" then max(1, to_int(numbers))
+ else 1 # all other symbols are 1
+ ))
+ }
+
+ colored_mana := {to_number(
+ for each sym in cmc_split() do (
+ numbers := only_numbers(sym)
+ if is_colored_mana(sym) then
+ if is_half_mana(sym) then 0.5 else 1
+ else 0
+ ))
+ }
+
+ ############################################################## The text box
+
+ # Filters for the text box
+ # context in which mana symbols are found
+ mana_context :=
+ "(?ix) # case insensitive, ignore whitespace
+ (^|[[:space:]\"(]) # start of a word
+ ( : # G: something
+ | , # G, tap: something
+ | [ ]can[ ]be[ ]pay
+ | (pays?|additional|costs?|the # pay X. creatures cost 1 less. pay an additional G.
+ |adds?|pay(ed)?[ ](with|using)
+ )
+ ([ ]either)? # pay either X or Y
+ ([ ]]*>[CTQSXYZIWUBRG0-9/|]+]*>[ ](and|or))* # pay X or Y
+ [ ]
+ ([,.)]|$ # (end of word)
+ |[ ][^ .,]*$ # still typing...
+ |[ ]( or | and | in | less | more | to ) # or next word is ...
+ )
+ )
+ | # keyword argument that is declared as mana
+ | [ ]* # keyword argument that is declared as cost
+ | , # keyword argument that is declared as cost
+ ";
+ # the rule text filter
+ # - adds mana symbols
+ # - makes text in parentheses italic
+ text_filter :=
+ # step 1 : remove all automatic tags
+ remove_tag@(tag: "") +
+ remove_tag@(tag: "") +
+ remove_tag@(tag: "{keyword}"
+ else keyword + if expand then " ({reminder})" }
+ ) +
+ # step 2b : move inline keywords' reminder text to the end of the line
+ replace@(
+ match: "(.*]*>)([^\n(]+)",
+ replace: "\\2\\1"
+ ) +
+ replace@(
+ match: "(.*]*>)([^\n(]+)",
+ replace: "\\2\\1"
+ ) +
+ replace@(
+ match: "(.*]*>)([^\n(]+)",
+ replace: "\\2\\1"
+ ) +
+ # step 3 : expand shortcut words ~ and CARDNAME
+ replace@(
+ match: "CARDNAME",
+ in_context: "(^|[[:space:]]|\\()",
+ replace: ""
+ ) +
+ # step 4 : explict non mana symbols
+ replace@(
+ match: "\\][SCTQXYZIWUBRG0-9/|]+\\[",
+ replace: {"" + mana_filter_t() + ""} ) +
+ # step 5 : add mana & tap symbols
+ replace@(
+ match: "[SCTQXYZIWUBRG0-9/|]+",
+ in_context: mana_context,
+ replace: {"" + mana_filter_t() + ""} ) +
+ # step 5b : add explict mana symbols
+ replace@(
+ match: "\\[[SCTQXYZIWUBRG0-9/|]+\\]",
+ replace: {"" + mana_filter_t() + ""} ) +
+ # step 6 : curly quotes
+ curly_quotes +
+ # step 7 : italic reminder text
+ replace@(
+ match: "[(][^)\n]*[)]?",
+ in_context: "(^|[[:space:]])|>",
+ replace: "&") +
+ # step 8 : automatic capitalization, but not after "("
+ replace@(
+ match: "[a-z]",
+ in_context: "[ ]*: |—| — ",
+ replace: { to_upper() })
+
+ ############################################################## Other boxes
+ # the flavor text filter
+ # - makes all text italic
+ flavor_text_filter :=
+ # step 2 : remove italic tags
+ remove_tag@(tag: "") +
+ # step 3 : surround by tags
+ { "" + input + "" } +
+ # curly quotes
+ replace@(
+ match: "[[.quotation-mark.]]|”",
+ in_context: "[ ]+|^|",
+ replace: "“" )+
+ replace@(
+ match: "[[.quotation-mark.]]",
+ replace: "”" )
+
+ # Process the name for sorting rules
+ sort_name :=
+ # Remove "The", "A", and "And" at the beginning
+ replace@(match: "^(The|An?) ", replace: "") +
+ # Remove commas and apostrophes
+ replace@(match: "(,|'|’)", replace: "") +
+ # Remove bold and italic tags
+ replace@(match: "(|||)", replace: "") +
+ # Make lowercase
+ to_lower
+
+ #Necessary to make magic-mana-future play nicely
+ colorless_color := { "c" }
+
+ word_count := break_text@(match:"[^[:space:]]+") + length
+ line_count := split_text@(match:"\n+",include_empty:false) + length
+
+ # Move the cursor past the separator in the type box
+ type_over_type := replace@(match:" ?[-:]$", replace:"")
+
+ type_filter := {
+ input := remove_tag(tag: "{input}{tag}>"
+ }
+
+############################################################## Set fields
+set field:
+ type: info
+ name: Set Information
+set field:
+ type: text
+ name: title
+set field:
+ type: text
+ name: description
+ multi line: true
+set field:
+ type: text
+ name: artist
+set field:
+ type: text
+ name: copyright
+set field:
+ type: symbol
+ name: symbol
+ description: The symbol for this set, double click to edit
+set field:
+ type: info
+ name: Defaults and Automation
+set field:
+ type: color
+ name: border color
+ description: The default border color for cards
+ choice:
+ name: black
+ color: rgb(0,0,0)
+ choice:
+ name: white
+ color: rgb(255,255,255)
+ choice:
+ name: silver
+ color: rgb(128,128,128)
+ choice:
+ name: gold
+ color: rgb(200,180,0)
+set field:
+ type: multiple choice
+ name: automatic reminder text
+ choice: old
+ choice: core
+ choice: expert
+ choice: pseudo
+ choice: custom
+ initial: old, expert, pseudo, custom
+ # Convert from older mse versions
+ script:
+ if value = "yes" then "old, core, expert, custom"
+ else if value = "no" then ""
+ else value
+ description: For which kinds of keywords should reminder text be added by default? Note: you can enable/disable reminder text by right clicking the keyword.
+set field:
+ type: boolean
+ name: automatic card numbers
+ initial: yes
+ description: Should card numbers be shown on the cards?
+############################# Default style
+default set style:
+ title:
+ padding left: 2
+ font:
+ size: 16
+ symbol:
+ max aspect ratio: 2.5
+ variation:
+ name: common
+ border radius: 0.10
+ fill type: solid
+ fill color: rgb(0,0,0)
+ border color: rgb(255,255,255)
+ variation:
+ name: uncommon
+ border radius: 0.07
+ fill type: linear gradient
+ fill color 1: rgb(224,224,224)
+ fill color 2: rgb(84, 84, 84)
+ border color 1: rgb(0, 0, 0)
+ border color 2: rgb(0, 0, 0)
+ variation:
+ name: rare
+ border radius: 0.07
+ fill type: linear gradient
+ fill color 1: rgb(214,196,94)
+ fill color 2: rgb(95, 84, 40)
+ border color 1: rgb(0, 0, 0)
+ border color 2: rgb(0, 0, 0)
+ variation:
+ name: mythic rare
+ border radius: 0.07
+ fill type: linear gradient
+ fill color 1: rgb(245,148,31)
+ fill color 2: rgb(186,45,38)
+ border color 1: rgb(0, 0, 0)
+ border color 2: rgb(0, 0, 0)
+ variation:
+ name: special
+ border radius: 0.10
+ fill type: linear gradient
+ fill color 1: rgb(224,170,247)
+ fill color 2: rgb(58,7,80)
+ border color 1: rgb(255,255,255)
+ border color 2: rgb(255,255,255)
+ automatic reminder text:
+ render style: checklist
+ direction: vertical
+############################################################## Card fields
+############################# Background stuff
+card field:
+ type: color
+ name: border color
+ default: set.border_color
+ choice:
+ name: black
+ color: rgb(0,0,0)
+ choice:
+ name: white
+ color: rgb(255,255,255)
+ choice:
+ name: silver
+ color: rgb(128,128,128)
+ choice:
+ name: gold
+ color: rgb(200,180,0)
+ show statistics: false
+ description: The border of the card; can be any solid color
+############################# Name line
+card field:
+ type: text
+ name: name
+ identifying: true
+ show statistics: false
+ card list visible: true
+ card list column: 1
+ card list width: 150
+ description: The name of the card
+############################# Image
+card field:
+ type: image
+ name: image
+ show statistics: false
+ description: The image of the card
+############################# Card type
+card field:
+ type: text
+ name: type
+ icon: stats/type.png
+ card list visible: true
+ card list column: 2
+ card list width: 100
+ description: The type of the card
+ script: type_filter(value)
+card field:
+ type: choice
+ name: rarity
+ icon: stats/rarity.png
+ position hint: 100
+ choice: common
+ choice: uncommon
+ choice: rare
+ choice: mythic rare
+ choice: special
+ initial: common
+ card list visible: true
+ card list column: 4
+ card list width: 50
+ description: The rarity of the card, to edit the symbol switch to the 'set info' tab
+ choice colors:
+ common: rgb(33,33,33)
+ uncommon: rgb(224,224,224)
+ mythic rare: rgb(202, 49, 35)
+ rare: rgb(255,207,52)
+ special: rgb(190,0,255)
+############################# Text box
+card field:
+ type: text
+ name: rule text
+ script: text_filter(value)
+ show statistics: false
+ multi line: true
+ description: The rules text of the card
+card field:
+ type: text
+ name: flavor text
+ script: flavor_text_filter(value)
+ show statistics: false
+ multi line: true
+ description: The flavor text of the card
+card field:
+ type: text
+ name: text
+ multi line: true
+ save value: false
+ show statistics: false
+ script:
+ combined_editor(field1: card.rule_text, separator: "\n", field2: card.flavor_text)
+ description: The rules and flavor text for the card; use up and down arrows to switch
+############################# Card sorting / numbering
+card field:
+ type: text
+ name: card number
+ save value: false
+ script:
+ position(
+ of: card
+ in: set
+ order_by: { sort_name(card.name) }
+ ) + 1
+ + "/" +
+ number_of_items(in: set)
+ card list visible: true
+ card list column: 10
+ card list width: 50
+ card list name: #
+ editable: false
+ show statistics: false
+############################# Copyright stuff
+card field:
+ type: text
+ name: illustrator
+ default: set.artist
+ description: The illustrator of the image
+ icon: stats/illustrator.png
+ position hint: 100
+card field:
+ type: text
+ name: copyright
+ default: set.copyright
+ show statistics: false
+ editable: false
+card field:
+ type: text
+ name: copyright line
+ save value: false
+ show statistics: false
+ script:
+ if set.automatic_card_numbers then
+ combined_editor(field1: card.copyright, separator: " ", field2: card.card_number)
+ else
+ forward_editor(field: card.copyright)
+ description: The copyright and card number of the card
+############################################################### Extra Statistics
+statistics dimension:
+ name: keywords
+ position hint: 1000
+ script: keyword_usage(unique:true)
+ show empty: false
+ split list: true
+ icon: stats/keywords.png
+statistics dimension:
+ name: style
+ position hint: 1001
+ script: stylesheet.short_name
+ icon: stats/stylesheet.png
+statistics dimension:
+ name: text length (words)
+ position hint: 100
+ script: word_count(to_text(card.rule_text))
+ numeric: true
+ bin size: 5
+ icon: stats/text_length.png
+statistics dimension:
+ name: text length (lines)
+ position hint: 101
+ script: line_count(to_text(card.rule_text))
+ numeric: true
+ icon: stats/text_length.png
+############################################################## Auto replace
+# Do we need categories?
+#auto replace category: text box
+#auto replace category: copyright
+#auto replace category: everywhere
+auto replace:
+ match: (C)
+ replace: ©
+auto replace:
+ match: CR
+ replace: ©
+auto replace:
+ match: AE
+ replace: Æ
+ whole word: false
+auto replace:
+ match: TM
+ replace: ™
+ whole word: false
+auto replace:
+ match: --
+ replace: —
+auto replace:
+ # note the spaces
+ match:
+ -
+ replace:
+ —
+auto replace:
+ match: CIP
+ replace: enters the battlefield
+auto replace:
+ match: AAA
+ replace: as an additional cost to cast
+auto replace:
+ match: scheming
+ replace: When you set this scheme in motion,
+auto replace:
+ match: hot seat
+ replace: When you set this scheme in motion, target opponent chooses self or others. If that player chooses self,
+auto replace:
+ match: ~
+ replace: this scheme
+auto replace:
+ match: '
+ replace: ’
+############################################################## Card pack items
+pack type:
+ name: card
+ filter: card.name != ""
+############################################################## Card packs
+pack type:
+ name: booster pack
+ item:
+ name: card
+ amount: 1
+############################################################## Archenemy word lists
+word list:
+ name: type
+ word:
+ name: Ongoing
+ is prefix: true
+ line below: true
+ word: Scheme
+############################################################## Keywords
+############################# Keyword rules
+
+has keywords: true
+
+#keyword preview: {keyword} ({reminder})
+
+keyword mode:
+ name: old
+ description: Old keywords (Banding, Phasing, etc.)
+keyword mode:
+ name: core
+ description: Core set keywords (Flying, Regenerate, etc.)
+keyword mode:
+ name: expert
+ description: Expert level keywords (Scry, Vanishing, etc.)
+keyword mode:
+ name: pseudo
+ description: Pseudo keyword / named ability (Hellbent, Threshold, etc.)
+keyword mode:
+ is default: true
+ name: custom
+ description: Custom keywords
+
+keyword parameter type:
+ name: mana
+ match: [SCTQXYZI0-9WUBRG/|]+
+ refer script:
+ name: normal
+ description: No changes made
+ script: \{{input}\}
+ refer script:
+ name: converted mana cost
+ description: Converts mana to number
+ # "0" left in so users can easily see how to edit script.
+ script: \{cmc({input}) + 0\}
+ refer script:
+ name: colored mana cost
+ description: Converts mana to number of colored mana
+ # "0" left in so users can easily see how to edit script.
+ script: \{colored_mana({input}) + 0\}
+# By pichoro and bunnierein
+keyword parameter type:
+ name: cost
+ match: [ ][SCTQXYZI0-9WUBRG/|]*|[-—][^(\n]*
+ separator before is: [ —-]
+ separator after is: [.]
+ optional: false
+ # note: the separator is part of match
+ refer script:
+ name: normal
+ description: When using mana only costs, doesn't include anything extra in the reminder text
+ script: \{{input}\}
+ refer script:
+ name: add "pay an additional " for mana costs
+ description: When using mana only costs, words the reminder text as "pay an additional "
+ script: \{for_mana_costs(add:"pay an additional ",{input})\}
+ refer script:
+ name: add "pay " for mana costs
+ description: When using mana only costs, words the reminder text as "pay "
+ script: \{for_mana_costs(add:"pay ",{input})\}
+ separator script: long_dash()
+keyword parameter type:
+ name: number
+ match: [XYZ0-9]+
+ refer script:
+ name: normal
+ description: (1,2,3)
+ script: \{{input}\}
+ refer script:
+ name: as words
+ description: (one, two, three)
+ script: \{english_number({input})\}
+ refer script:
+ name: as words, use "a" for 1
+ description: (a, two, three)
+ script: \{english_number_a({input})\}
+ refer script:
+ name: as words, use "" for 1
+ description: (, two, three)
+ script: \{english_number_multiple({input})\}
+keyword parameter type:
+ name: action
+ match: [^(:\n]+
+ separator after is: [.]
+ reminder script: alternative_cost()
+keyword parameter type:
+ name: name
+ match: [^(.:;\n—]+
+ refer script:
+ name: normal
+ description: No changes made.
+ script: \{{input}\}
+ refer script:
+ name: singular
+ description: Removes plurality from words.
+ script: \{english_singular({input})\}
+keyword parameter type:
+ name: prefix
+ description: Prefix for things like "walk"
+ optional: false
+ match: [A-Z][A-Z,a-z’ ]*
+ example: Forest
+keyword parameter type:
+ name: a
+ match: [an?]*
+############################# All Magic keywords
+# By JrEye and Neko_Asakami, Updated by Pichoro and Buttock1234
+keyword:
+ keyword: Flying
+ match: flying
+ mode: core
+ reminder: It can’t be blocked except by creatures with flying or reach.
+keyword:
+ keyword: First strike
+ match: first strike
+ mode: core
+ reminder: It deals combat damage before creatures without first strike.
+keyword:
+ keyword: Trample
+ match: trample
+ mode: core
+ reminder: If it would deal enough combat damage to its blockers to destroy them, you may have it deal the rest of its damage to defending player or planeswalker.
+keyword:
+ keyword: Banding
+ match: banding
+ mode: old
+ reminder: Any creatures with banding, and up to one without, can attack in a band. Bands are blocked as a group. If any creatures with banding you control are blocking or being blocked by a creature, you divide that creature’s combat damage, not its controller, among any of the creatures it’s being blocked by or is blocking.
+keyword:
+ keyword: Landwalk
+ match: prefixwalk
+ mode: core
+ reminder: This creature is unblockable as long as defending player controls a {if match(param1.value, match: " land$") or contains(param1.value, match: "Snow") or contains(param1.value, match:"Basic") or contains(param1.value, match:"Legendary") then "{to_lower(param1)}" else "{param1}"}.
+keyword:
+ keyword: Protection from
+ match: protection from name
+ mode: core
+ reminder: It can’t be blocked, targeted, dealt damage, enchanted, or equipped by anything {english_singular(param1)}.
+keyword:
+ keyword: Regeneration
+ match: Regenerate
+ mode: core
+ reminder: The next time it would be destroyed this turn, it isn’t. If it is a creature, instead tap it, remove all damage from it, and remove it from combat.
+keyword:
+ keyword: Bands with other
+ match: bands with other name
+ mode: old
+ reminder: Any {param1} can attack in a band as long as at least one has “bands with other {param1}.” Bands are blocked as a group. If at least two {param1} you control, one of which has “bands with other {param1},” are blocking or being blocked by the same creature, you divide that creature’s combat damage, not its controller, among any of the creatures it’s being blocked by or is blocking.
+keyword:
+ keyword: Rampage
+ match: rampage number
+ mode: old
+ reminder: Whenever it becomes blocked, it gets +{param1}/+{param1} until end of turn for each creature blocking it beyond the first.
+keyword:
+ keyword: Cumulative upkeep
+ match: cumulative upkeep cost
+ mode: old
+ reminder: At the beginning of your upkeep, put an age counter on it, then sacrifice it unless you pay its upkeep cost for each age counter on it.
+keyword:
+ keyword: Phasing
+ match: phasing
+ mode: old
+ reminder: It phases in or out before you untap during each of your untap steps. While it’s phased out, it’s treated as though it doesn’t exist.
+keyword:
+ keyword: Flanking
+ match: flanking
+ mode: expert
+ reminder: Whenever a creature without flanking blocks the creature, the blocking creature gets -1/-1 until end of turn.
+keyword:
+ keyword: Shadow
+ match: shadow
+ mode: expert
+ reminder: It can block or be blocked by only creatures with shadow.
+keyword:
+ keyword: Denimwalk
+ match: denimwalk
+ mode: old
+ reminder: If defending player is wearing any clothing made of denim, the creature is unblockable.
+keyword:
+ keyword: Buyback
+ match: buyback cost
+ mode: expert
+ reminder: You may {for_mana_costs(add:"pay an additional ",param1)} as you cast it. If you do, put it into your hand as it resolves.
+keyword:
+ keyword: Echo
+ match: echo cost
+ mode: expert
+ reminder: At the beginning of your upkeep, if the permanent came under your control since the beginning of your last upkeep, sacrifice it unless you pay its echo cost.
+keyword:
+ keyword: Cycling
+ match: cycling cost
+ mode: expert
+ reminder: {param1}, Discard it: Draw a card.
+keyword:
+ keyword: Haste
+ match: haste
+ mode: core
+ reminder: It can attack and T as soon as it comes under your control.
+keyword:
+ keyword: Horsemanship
+ match: horsemanship
+ mode: old
+ reminder: It can’t be blocked except by creatures with horsemanship.
+keyword:
+ keyword: Fading
+ match: fading number
+ mode: expert
+ reminder: It enters the battlefield with {english_number_a(param1)} fade counter(s) on it. At the beginning of your upkeep, remove a fade counter from it. If you can’t, sacrifice it.
+keyword:
+ keyword: Kicker
+ match: kicker cost
+ mode: expert
+ reminder: You may {for_mana_costs(add:"pay an additional ",param1)} as you cast the card.
+keyword:
+ keyword: Flashback
+ match: flashback cost
+ mode: expert
+ reminder: You may cast it from your graveyard for its flashback cost. Then exile it.
+keyword:
+ keyword: Threshold
+ match: Threshold
+ mode: pseudo
+ rules: Threshold — [effect] as long as seven or more cards are in your graveyard.
+keyword:
+ keyword: Madness
+ match: madness cost
+ mode: expert
+ reminder: If you discard it, you may cast it for its madness cost instead of putting it into your graveyard.
+keyword:
+ keyword: Morph
+ match: morph cost
+ mode: expert
+ reminder: You may cast it face down as a 2/2 creature for 3. Turn it face up any time for its morph cost.
+keyword:
+ keyword: Fear
+ match: fear
+ mode: old
+ reminder: It can’t be blocked except by artifact creatures and/or black creatures.
+keyword:
+ keyword: Amplify
+ match: amplify number
+ mode: expert
+ reminder: As it enters the battlefield, put {english_number_a(param1)} +1/+1 counter(s) on it for each creature that shares a type with it that you reveal in your hand.
+keyword:
+ keyword: Double strike
+ match: double strike
+ mode: core
+ reminder: It deals both first-strike and regular combat damage.
+keyword:
+ keyword: Provoke
+ match: provoke
+ mode: expert
+ reminder: When it attacks, you may have target creature defending player controls untap and block it if able.
+keyword:
+ keyword: Typecycling
+ match: prefixcycling cost
+ mode: expert
+ reminder: {param2}, Discard it: Search your library for a {param1} card, reveal it, and put it into your hand. Then shuffle your library.
+keyword:
+ keyword: Storm
+ match: storm
+ mode: expert
+ reminder: When you cast it, copy it for each spell cast before it this turn. You may choose new targets for the copies.
+keyword:
+ keyword: Affinity for
+ match: affinity for name
+ mode: expert
+ reminder: It costs 1 less to cast for each {english_singular(param1)} you control.
+keyword:
+ keyword: Entwine
+ match: entwine cost
+ mode: expert
+ reminder: Choose both if you pay the entwine cost.
+keyword:
+ keyword: Equip
+ match: equip cost
+ mode: core
+ reminder: {param1}: Attach to target creature you control. Equip only as a sorcery.
+keyword:
+ keyword: Imprint
+ match: Imprint
+ mode: pseudo
+ rules: Imprint — When it enters the battlefield, you may exile a [something] from [somewhere].
+keyword:
+ keyword: Modular
+ match: modular number
+ mode: expert
+ reminder: It enters the battlefield with {english_number_a(param1)} +1/+1 counter(s) on it. When it’s put into a graveyard, you may put its +1/+1 counters on target artifact creature.
+keyword:
+ keyword: Scry
+ match: Scry number
+ mode: expert
+ reminder:
+ To scry {param1}, look at the top {
+ if param1.value==1 then "card of your library, then you may put that card on the bottom of your library."
+ else "{english_number(param1)} cards of your library. Put any number of them on the bottom of your library in any order and the rest on top in any order."
+ }
+keyword:
+ keyword: Sunburst
+ match: sunburst
+ mode: expert
+ reminder: It enters the battlefield with a +1/+1 counter on it for each color of mana spent to cast it. If it isn’t a creature, use charge counters instead.
+keyword:
+ keyword: Art rampage
+ match: art rampage number
+ mode: expert
+ reminder: Whenever it blocked by a creature, it gets +{param1}/+{param1} for each creature in the blocker’s art beyond the first.
+keyword:
+ keyword: Super haste
+ match: Super haste
+ mode: expert
+ reminder: It may attack the turn before you cast it. (You may have it enter the battlefield from your hand, tapped and attacking, during your declare attackers step. If you do, you lose the game at the end of your next turn unless you pay its mana cost during that turn.)
+keyword:
+ keyword: Gotcha
+ match: Gotcha
+ mode: pseudo
+ rules: Gotcha — Whenever an opponent [does something], you may say “Gotcha!”. If you do, return [something] from your graveyard to your hand.
+keyword:
+ keyword: Splice
+ match: splice onto name cost
+ mode: expert
+ reminder: As you cast a {param1} spell, you may reveal the card from your hand and pay its splice cost. If you do, add its effects to that spell.
+keyword:
+ keyword: Bushido
+ match: bushido number
+ mode: expert
+ reminder: When it blocks or becomes blocked, it gets +{param1}/+{param1} until end of turn.
+keyword:
+ keyword: Soulshift
+ match: soulshift number
+ mode: expert
+ reminder: When it is put into a graveyard from the battlefield, you may return target Spirit card with converted mana cost {param1} or less from your graveyard to your hand.
+keyword:
+ keyword: Enchant
+ match: enchant name
+ mode: core
+ reminder: Target a {param1} as you cast the card. The card enters the battlefield attached to that {param1}.
+keyword:
+ keyword: Vigilance
+ match: vigilance
+ mode: core
+ reminder: Attacking doesn’t cause it to tap.
+keyword:
+ keyword: Defender
+ match: defender
+ mode: core
+ reminder: It can’t attack.
+keyword:
+ keyword: Offering
+ match: prefix offering
+ mode: expert
+ reminder: You may cast it any time you could cast an instant by sacrificing a {param1} and paying the difference in mana costs between it and the sacrificed {param1}. Mana cost includes color.
+keyword:
+ keyword: Ninjutsu
+ match: ninjutsu cost
+ mode: expert
+ reminder: {param1}, Return an unblocked attacker you control to hand: Put it onto the battlefield from your hand tapped and attacking.
+keyword:
+ keyword: Epic
+ match: epic
+ mode: expert
+ reminder: For the rest of the game, you can’t cast spells. At the beginning of each of your upkeeps, copy the card except for its epic ability. If it has any targets, you may choose new targets for the copy.
+keyword:
+ keyword: Channel
+ match: Channel
+ mode: pseudo
+ rules: Channel — [cost], Discard a card: [effect].
+keyword:
+ keyword: Sweep
+ match: Sweep
+ mode: pseudo
+ rules: Sweep — Return any number of [basic land type] you control to their owner’s hand. [effect based on number of lands returned].
+keyword:
+ keyword: Convoke
+ match: convoke
+ mode: expert
+ reminder: Each creature you tap while casting the card reduces its cost by 1 or by one mana of that creature’s color.
+keyword:
+ keyword: Transmute
+ match: transmute cost
+ mode: expert
+ reminder: {param1}, Discard it: Search your library for a card with the same converted mana cost as the discarded card, reveal it, and put it into your hand. Then shuffle your library. Transmute only as a sorcery.
+keyword:
+ keyword: Dredge
+ match: dredge number
+ mode: expert
+ reminder: If you would draw a card, instead you may put exactly {english_number(param1)} card(s) from the top of your library into your graveyard. If you do, return the card from your graveyard to your hand. Otherwise, draw a card.
+keyword:
+ keyword: Radiance
+ match: Radiance
+ mode: pseudo
+ rules: Radiance — [effect to target permanent or spell and all cards of same card type that share a color with it].
+keyword:
+ keyword: Haunt
+ match: haunt
+ mode: expert
+ reminder: When it is put into a graveyard from the battlefield, or when it resolves if it is not a permanent, exile it haunting target creature.
+keyword:
+ keyword: Bloodthirst
+ match: bloodthirst number
+ mode: expert
+ reminder: If an opponent was dealt damage this turn, the permanent enters the battlefield with {english_number_a(param1)} +1/+1 counter(s) on it.
+keyword:
+ keyword: Replicate
+ match: replicate cost
+ mode: expert
+ reminder: When you cast it, copy it for each time you paid its replicate cost. You may choose new targets for the copies.
+keyword:
+ keyword: Graft
+ match: graft number
+ mode: expert
+ reminder: It enters the battlefield with {english_number_a(param1)} +1/+1 counter(s) on it. Whenever a creature enters the battlefield, you may move a +1/+1 counter from the permanent onto it.
+keyword:
+ keyword: Forecast
+ match: forecast — action, Reveal name from your hand: action
+ mode: expert
+ reminder: Activate the ability only during your upkeep and only once each turn.
+keyword:
+ keyword: Hellbent
+ match: Hellbent
+ mode: pseudo
+ rules: Hellbent — [effect] if you have no cards in hand.
+keyword:
+ keyword: Recover
+ match: recover cost
+ mode: expert
+ reminder: When a creature is put into your graveyard from the battlefield, you may {for_mana_costs(add:"pay ",param1)}. If you do, return the card from your graveyard to your hand. Otherwise, exile this card.
+keyword:
+ keyword: Ripple
+ match: ripple number
+ mode: expert
+ reminder: When you cast it, you may reveal the top {english_number_multiple(param1)} card(s) of your library. You may cast any revealed cards with the same name as the card without paying their mana costs. Put the rest on the bottom of your library.
+keyword:
+ keyword: Flash
+ match: flash
+ mode: core
+ reminder: You may cast it any time you could cast an instant.
+keyword:
+ keyword: Split second
+ match: split second
+ mode: expert
+ reminder: As long as it is on the stack, players can’t cast spells or activate abilities that aren’t mana abilities.
+keyword:
+ keyword: Suspend
+ match: suspend number—cost
+ mode: expert
+ reminder: Rather than cast it from your hand, you may pay {param2} and exile it with {english_number_a(param1)} time counter(s) on it. At the beginning of your upkeep, remove a time counter. When the last is removed, cast it without paying its mana cost. If it is a creature, it has haste.
+keyword:
+ keyword: Vanishing
+ match: vanishing number
+ mode: expert
+ reminder: It enters the battlefield with {english_number_a(param1)} time counter(s) on it. At the beginning of your upkeep, remove a time counter from it. When the last is removed, sacrifice it.
+keyword:
+ keyword: Deathtouch
+ match: deathtouch
+ mode: expert
+ reminder: Any amount of damage it deals to a creature is enough to destroy it.
+keyword:
+ keyword: Reach
+ match: reach
+ mode: core
+ reminder: It can block creatures with flying.
+keyword:
+ keyword: Gravestorm
+ match: gravestorm
+ mode: expert
+ reminder: When you cast it, copy it for each permanent put into a graveyard this turn. You may choose new targets for the copies.
+keyword:
+ keyword: Lifelink
+ match: lifelink
+ mode: core
+ reminder: Damage dealt by it also causes you to gain that much life.
+keyword:
+ keyword: Absorb
+ match: absorb number
+ mode: expert
+ reminder: If a source would deal damage to it, prevent {param1} of that damage.
+keyword:
+ keyword: Fateseal
+ match: fateseal number
+ mode: expert
+ reminder:
+ Look at the top {
+ if param1.value==1 then "card of an opponent’s library, then you may put it on the bottom of that player’s library."
+ else "{english_number(param1)} cards of an opponent’s library, then put any number of them on the bottom of that player’s library and the rest on top in any order."
+ }
+keyword:
+ keyword: Transfigure
+ match: transfigure cost
+ mode: expert
+ reminder: {param1}, Sacrifice it: Search your library for a creature card with the same converted mana cost as the sacrificed card and put that card onto the battlefield. Then shuffle your library. Transfigure only as a sorcery.
+keyword:
+ keyword: Aura swap
+ match: aura swap cost
+ mode: expert
+ reminder: {param1}: Exchange it with an Aura card in your hand.
+keyword:
+ keyword: Frenzy
+ match: frenzy number
+ mode: expert
+ reminder: Whenever it attacks and isn’t blocked, it gets +{param1}/+0 until end of turn.
+keyword:
+ keyword: Delve
+ match: delve
+ mode: expert
+ reminder: You may exile any number of cards in your graveyard as you cast it. It costs 1 less to cast for each card exiled this way.
+keyword:
+ keyword: Poisonous
+ match: poisonous number
+ mode: expert
+ reminder: Whenever it deals combat damage to a player, that player gets {english_number_a(param1)} poison counter(s). A player with ten or more poison counters loses the game.
+keyword:
+ keyword: Shroud
+ match: shroud
+ mode: core
+ reminder: It can’t be the target of spells or abilities.
+keyword:
+ keyword: Fortify
+ match: fortify cost
+ mode: expert
+ reminder: {param1}: Attach to target land you control. Fortify only as a sorcery. It enters the battlefield unattached and stays on the battlefield if the land leaves.
+keyword:
+ keyword: Grandeur
+ match: Grandeur
+ mode: pseudo
+ rules: Grandeur — Discard another card named [something]: [effect].
+keyword:
+ keyword: Evoke
+ match: evoke cost
+ mode: expert
+ reminder: You may cast it for its evoke cost. If you do, it’s sacrificed when it enters the battlefield.
+keyword:
+ keyword: Champion
+ match: champion a name
+ mode: expert
+ reminder: When it enters the battlefield, sacrifice it unless you exile another {param2} you control. When it leaves the battlefield, return that card to the battlefield.
+keyword:
+ keyword: Clash
+ match: clash
+ mode: expert
+ reminder: Each clashing player reveals the top card of his or her library, then puts that card on the top or bottom. A player wins if his or her card had a higher converted mana cost.
+keyword:
+ keyword: Changeling
+ match: changeling
+ mode: expert
+ reminder: It is every creature type at all times.
+keyword:
+ keyword: Hideaway
+ match: hideaway
+ mode: expert
+ reminder: The land enters the battlefield tapped. When it does, look at the top four cards of your library, exile one face down, then put the rest on the bottom of your library.
+keyword:
+ keyword: Prowl
+ match: prowl cost
+ mode: expert
+ reminder: You may cast it for its prowl cost if you dealt combat damage to a player this turn with a creature that shares a type with it.
+keyword:
+ keyword: Reinforce
+ match: reinforce number—cost
+ mode: expert
+ reminder: {param2}, Discard it: Put {english_number_a(param1)} +1/+1 counter(s) on target creature.
+keyword:
+ keyword: Kinship
+ match: Kinship
+ mode: pseudo
+ rules: Kinship — At the beginning of your upkeep, you may look at the top card of your library. If that card shares a creature type with it, you may reveal it. If you do, [effect].
+keyword:
+ keyword: Persist
+ match: persist
+ mode: expert
+ reminder: When it is put into a graveyard from the battlefield, if it had no -1/-1 counters on it, return it to the battlefield under its owner’s control with a -1/-1 counter on it.
+keyword:
+ keyword: Wither
+ match: wither
+ mode: expert
+ reminder: It deals damage to creatures in the form of -1/-1 counters.
+keyword:
+ keyword: Conspire
+ match: conspire
+ mode: expert
+ reminder: As you cast it, you may tap two untapped creatures you control that share a color with it. When you do, copy it and you may choose a new target for the copy.
+keyword:
+ keyword: Retrace
+ match: retrace
+ mode: expert
+ reminder: You may cast it from your graveyard by discarding a land card in addition to paying its other costs.
+keyword:
+ keyword: Chroma
+ match: Chroma
+ mode: pseudo
+ rules: Chroma — [effect] based on the number of [color] mana symbols [in graveyard, under your control, in cards you discard].
+keyword:
+ keyword: Unearth
+ match: unearth cost
+ mode: expert
+ reminder: {param1}: Return it from your graveyard to the battlefield. If it is a creature, it gains haste. Exile it at the beginning of the end step or if it would leave the battlefield. Unearth only as a sorcery.
+keyword:
+ keyword: Devour
+ match: devour number
+ mode: expert
+ reminder: As it enters the battlefield, you may sacrifice any number of creatures. It enters the battlefield with { if param1.value == 1 then "" else if param1.value == 2 then "twice " else english_number(param1) + " times " }that many +1/+1 counters on it.
+keyword:
+ keyword: Exalted
+ match: exalted
+ mode: expert
+ reminder: Whenever a creature you control attacks alone, that creature gets +1/+1 until end of turn.
+keyword:
+ keyword: Domain
+ match: Domain
+ mode: pseudo
+ rules: Domain — [effect] for each basic land type among lands you control.
+keyword:
+ keyword: Cascade
+ match: cascade
+ mode: expert
+ reminder: When you cast it, exile the top card of your library until you remove a nonland card that costs less. You may cast that card without paying its mana cost. Put the exiled cards on the bottom of your library at random.
+keyword:
+ keyword: Intimidate
+ match: intimidate
+ mode: core
+ reminder: It can’t be blocked except by artifact creatures and/or creatures that share a color with it.
+keyword:
+ keyword: Landfall
+ match: Landfall
+ mode: pseudo
+ rules: Landfall — Whenever a land enters the battlefield under your control, [effect].
+keyword:
+ keyword: Multikicker
+ match: multikicker cost
+ mode: expert
+ reminder: You may {for_mana_costs(add:"pay an additional ", param1)} any number of times as you cast it.
+keyword:
+ keyword: Annihilator
+ match: annihilator number
+ mode: expert
+ reminder: Whenever it attacks, defending player sacrifices {english_number_a(param1)} permanent(s).
+keyword:
+ keyword: Rebound
+ match: rebound
+ mode: expert
+ reminder: If you cast it from your hand, exile it as it resolves. At the beginning of your next upkeep, you may cast it from exile without paying its mana cost.
+keyword:
+ keyword: Totem armor
+ match: totem armor
+ mode: expert
+ reminder: If enchanted creature would be destroyed, instead remove all damage from the creature and destroy it.
+keyword:
+ keyword: Level up
+ match: level up cost
+ mode: expert
+ reminder: {param1}: Put a level counter on it. Level up only as a sorcery.
diff --git a/data/de.mse-locale/locale b/data/de.mse-locale/locale
index 7535e4ac..b9afe572 100644
--- a/data/de.mse-locale/locale
+++ b/data/de.mse-locale/locale
@@ -1,925 +1,925 @@
-mse version: 0.3.8
-installer group: translations/Deutsch
-full name: Deutsch
-version: 2009-01-15
-icon: de.png
-
-############################################################## Menu items
-menu:
- file: &Datei
- new set: &Neu... Ctrl+N
- open set: &Öffnen... Ctrl+O
- save set: &Speichern Ctrl+S
- save set as: Speichern unter... F12
- export: &Exportieren
- export html: &HTML exportieren...
- export image: Bild exportieren...
- export images: Alle Bilder exportieren...
- export apprentice: &Karte exportieren...
- export mws: Magic &Workstation...
- check updates: Nach Updates schauen...
- print preview: Druckvorschau...
- print: &Drucken... Ctrl+P
- reload data: Daten neu laden Ctrl+F5
- exit: Beenden Alt+F4
-
- edit: &Bearbeiten
- undo: Rückgängig:%s Ctrl+Z
- redo: Wiederholen:%s Ctrl+Y
- cut: Ausschneiden Ctrl+X
- copy: Kopieren Ctrl+C
- paste: Einfügen Ctrl+V
- find: Suchen Ctrl+F
- find next: Nächstes Ergebnis F3
- replace: Ersetzen Ctrl+H
- auto replace: Automatisch Ersetzen
- preferences: Einstellungen...
-
- cards: &Karten
- previous card: Vorherige Karte PgUp
- next card: Nächste Karte PgDn
- add card: Karte Hinzufügen Ctrl+Enter
- add cards: Mehrere hinzufügen...
- remove card: Markierte Entfernen Del
- orientation: Ansicht
- rotate 0: &Normal
- rotate 270: 90°, im Uhrzeigersinn
- rotate 90: 90°, gegen den Uhrzeigersinn
- rotate 180: 180°, auf den Kopf gestellt
- card list columns: Kartenliste-Spalten...
-
- keywords: &Fähigkeiten
- previous keyword: Vorherige PgUp
- next keyword: Nächste PgDn
- add keyword: Hinzufügen Ctrl+Enter
- remove keyword: Markierte Enfernen Del
-
- format: F&ormat
- bold: &Fett Ctrl+B
- italic: &Kursiv Ctrl+I
- symbols: &Symbole Ctrl+M
- reminder text: &Reminder Text Ctrl+R
- insert symbol: Sy&mbol einfügen
-#_ADD # spelling
-#_ADD no spelling suggestions: (no suggestions)
-
- graph: &Diagramm
- pie: &Kreis 1
- bar: &Säulen 2
- stack: &Gestapelte Säulen 3
- scatter: &Blase 4
- scatter pie: G&estreute Kreise 5
-
- window: &Ansicht
- new window: &Neues Fenster
- cards tab: &Karten F5
- set info tab: &Editionsinformationen F6
- style tab: Aussehen F7
- keywords tab: Fähigkeiten F8
- stats tab: S&tatistik F9
- random pack tab: &Zufällige Packs
-
- help: &Hilfe
- index: &Index... F1
- website: &Website...
- about: &Über Magic Set Editor...
-
- # symbol editor
-
- new symbol: &Neu... Ctrl+N
- open symbol: &Öffnen... Ctrl+O
- save symbol: &Speichern Ctrl+S
- save symbol as: Speichern unter... F12
- store symbol: Übernehmen Ctrl+Enter
- close symbol editor:&Beenden Alt+F4
-
- duplicate: Verdoppeln Ctrl+D
- group: &Gruppieren Ctrl+G
- ungroup: &Gruppierung lösen Ctrl+U
-
- tool: &Tools
- select: &Auswählen F5
- rotate: &Drehen F6
- points: &Punkte F7
- basic shapes: &Objekte F8
- symmetry: Symmetrie F9
- paint: &Zeichnen F10
-
-############################################################## Menu help texts
-help:
- welcome: Willkommen im Magic Set Editor
-
- file:
- new set: Neue Edition erstellen
- open set: Bestehende Edition öffnen
- last opened set: Zuletzt geöffnetes '%s'
- save set: Edition speichern
- save set as: Edition speichern als...
- export: Edition exporieren...
- export html: Exportieren der Edition in html
- export image: Exportieren des gewählten Bildes
- export images: Exportieren aller Bilder
- export apprentice: Exportieren der Edition für Apprentice
- export mws: Exportieren der Edition für Magic Workstation
- check updates: Zeigt das Update-Fenster an, indem man neue Packages herunterladen kann.
- print preview: Zeigt an, wie die Bilder gedruckt werden
- print: Druckt die Bilder der Edition
- reload data: Läd alle Daten neu.
- exit: Beendet Magic Set Editor
-
- edit:
- undo: Macht die letzte Aktion rückgängig
- redo: Wiederholt die letzte Aktion
- cut: Verschiebt die Daten in die Zwischenablage
- cut card: Verschiebt die gewählte Karte in die Zwischenablage
- cut keyword: Verschiebt die gewählte Fähigkeit in die Zwischenablage
- copy: Kopiert die Daten in die Zwischenablage
- copy card: Kopiert die gewählte Karte in die Zwischenablage
- copy keyword: Kopiert die gewählte Fähigkeit in die Zwischenablage
- paste: Fügt den Text der Zwischenablage ein
- paste card: Fügt den Karte der Zwischenablage ein
- paste keyword: Fügt die Fähigkeit der Zwischenablage ein
- find: Sucht den Text in einer Karte
- find next: Zeigt das nächste Ergebnis an
- replace: Ersetzt den karten Text
- auto replace: Ersetzt den text ohne Bestätigung
- preferences: Ändert die Einstellungen
-
- cards:
- previous card: Wählt die vorherige Karte der Liste
- next card: Wählt die nächste Karte der Liste
- add card: Fügt eine neue Karte zur Edition hinzu
- add cards: Fügt mehrere Karten zur Edition hinzu
- remove card: Entfernt die gewählte Karte aus der Edition
- orientation: Ansicht der gewählten Karte
- rotate card: Dreht die Karte um 90° im Uhrzeigersinn
- rotate 0: Zeigt die Karte normal an
- rotate 270: Dreht die Karte um 90° im Uhrzeigersinn
- rotate 90: Dreht die Karte um 90° gegen den Uhrzeigersinn
- rotate 180: Dreht die Karte um 180°
- card list columns: Wähle die Spalten, die angezeigt werden sollen.
-
- keywords:
- previous keyword: Wählt die vorherige Fähigkeit
- next keyword: Wählt die nächste Fähigkeit
- add keyword: Fügt eine neue Fähigkeit hinzu
- remove keyword: Löscht die markierte Fähigkeit
-
- format:
- bold: Formatiert den Text Fett
- italic: Formatiert den Text Kursiv
- symbols: Formatiert den Text als Symbol
- reminder text: Zeige den Reminder-Text für die gewählte Fähigkeit an
-#_ADD # spelling
-#_ADD no spelling suggestions: There are no suggestions for correcting this error
-
- graph:
- pie: Ein Kreisdiagramm, die Größe der Kreise zeigt die Anzahl der Karten an
- bar: Ein Balkendiagramm, die Größe der Balken zeigt die Anzahl der Karten an
- stack: Ein Balkendiagramm mit gestapelten Säulen
- scatter: Ein Blasendiagramm, die Größe der Blase zeigt die Anzahl der Karten an
- scatter pie: Gestreute Kreise, wobei jeder Kreis ein Kreisdiagramm ist
-
- window:
- new window: Erstellt ein neues Fenster mit der gleichen Edition
- cards tab: Bearbeite die Karten der Edition
- set info tab: Bearbeite die Informationen der Edition
- style tab: Ändere den Style der Karten
- keywords tab: Füge Fähigkeiten für diese Edition hinzu
- stats tab: Zeigt eine Statistik über diese Edition an
- random pack tab: Testet wie das Set funktionieren würde, indem es ufällige Booster Packs erstellt.
-
- help:
- index:
- website:
- about:
-
- # Cards panel
- collapse notes: Versteckt die Karten-Notiz-Box
- expand notes: Teigt die Karten-Notiz-Box
- # Random pack panel
- random seed: Erstellt jedes mal andere Packs.
- fixed seed: Indem man dieselbe Nummer verwendet, bekommt man dieselben "zufälligen" Packs.
- seed: Nummer für den Zufallsgenerator. Indem man dieselbe Nummer verwendet, bekommt man dieselben "zufälligen" Packs.
-#_ADD edit pack type: Double click to edit pack type
-#_ADD number of packs: The number of %ss to generate
-
- # Preferences
- app language:
- Bitte starten Sie MSE neu, damit die Änderungen wirksam werden.
- zoom export:
- (Wenn ausgeschaltet, werden die
- Karten normal exportiert)
-
- # apprentice export
- set code: Der zweiteilige Code wird vom Rohling genutzt, um auf eine Edition zu verweisen.
-
- # Symbol editor
- new symbol: Erstelle ein neues Symbol
- open symbol: Symbol Symbol öffnen
- save symbol: Symbol Symbol speichern
- save symbol as: Symbol Symbol speichern unter...
- store symbol: Symbol Symbol übernehmen
- close symbol editor:Symbol-Editor beenden
-
- duplicate: Clont das gewählte Objekt
- group: Gruppiert die gewählten Elemente
- ungroup: Löst die Gruppierung auf
-
- grid: Gitternetz anzeigen
- snap: Punkte und Objekte am Gitternetz ausrichten
-
- tool:
- select: Wählt Objekte aus und bewegt es
- rotate: Dreht Objekte
- points: Bearbeitet die Punkte des Objektes
- basic shapes: Zeichnet ein Objekt
- symmetry: Symmetrisches Symbol hinzufügen
- paint: Zeichnet ein Objekt mit dem Pinsel
-
- select editor:
- merge: Vermischt das Objekt mit den Darunterliegenden
- subtract: Entfernt gemeinsame Flächen
- intersect: Zeigt nur die gemeinsame Fläche an
- difference: Zeigt nur die Fläche an, in den sich die Objekte unterscheiden
- overlap: Zeigt das Objekt und seinen Rand über allem an
- border: Stellt das Objekt als Rand dar
-
- drag to shear: Ziehen, um %s zu schneiden
- drag to rotate: Ziehen, um %s zu drehen, +Ctrl: um 15° drehen
- drag to resize: Ziehen, um die Größe von %s zu ändern, +Ctrl: proportional ändern
- click to select shape: Klick zum Auswählen, Ziehen zum Bewegen, Doppelklick zum Ändern
-
- ellipse: Zeichnet Kreise und Ellipsen
- rectangle: Zeichnet Quadrate und Rechtecke
- polygon: Zeichnet Dreiecke, Fünfecke und andere regelmäßige n-Ecke
- star: Zeichnet Sterne
- sides: Anzahl der Seiten eines Sterns oder n-Ecks
- drag to draw shape: Ziehen zum Zeichnen, +Ctrl: proportional zeichnen, +Shift: zentral ausrichten
- draw ellipse: Klicken und Ziehen zum Zeichnen einer Ellipse, +Ctrl: für einen Kreis
- draw rectangle: Klicken und Ziehen zum Zeichnen eines Rechtecks, +Ctrl: für ein Quadrat
- draw polygon: Klicken und Ziehen zum Zeichnen eines n-Ecks
- draw star: Klicken und Ziehen zum Zeichnen eines Sterns
-
- line segment: Geradlinig amchen
- curve segment: Kurvig machen
- free point: Frei bewegen
- smooth point: Glätten
- symmetric point: Symmetrisch ausrichten
- drag to move curve: Ziehen um die Kurve zu Bewegen
- drag to move line: Alt + Ziehen, um die Kruve zu bewegen; Doppelklick zum Hinzufügen eines Punktes
- drag to move point: Gedrückt halten und Ziehen um den Punkt zu bewegen; Doppelklick zum Entfernen des Punktes
-
- rotation: Symmetrieachse drehen
- reflection: Symmetrieachse spiegeln
- add symmetry: Symmetrieachse hinzufügen
- remove symmetry: Symmetrieachse entfernen
- copies: Anzahl der Spiegelungen (Original mit eingerechnet)
-
- # Card select
- filename format: (Benutzen Sie {card.name} für den Namen der Karte ; Der Dateityp basiert auf der Endung.)
-
-############################################################## Toolbar
-tool:
- undo: Rückgängig
- redo: Wiederholen
-
- cards tab: Karten
- set info tab: Editionsinformationen
- style tab: Style
- keywords tab: Fähigkeiten
- stats tab: Statistik
- random pack tab: Zufällige Packs
-
- # symbol editor
- store symbol: Übernehmen
-
- grid: Gitternetz
- snap: Magnet
-
- select: Auswählen
- rotate: Drehen
- points: Punkte
- basic shapes: Objekte
- symmetry: Symmetrisch
- paint: Zeichnen
-
- merge: Vermischen
- subtract: Subtrahieren
- intersect: Kombinieren
- difference: Unterscheiden
- overlap: Überlappen
- border: Rand
-
- ellipse: Ellipse
- rectangle: Rechteck
- polygon: n-Eck
- star: Stern
-
- rotation: Rotieren
- reflection: Spiegeln
- add symmetry: Hinzufügen
- remove symmetry: Entfernen
-
- line segment: Linie
- curve segment: Kurve
- free point: Frei
- smooth point: Glätten
- symmetric point: Symmetrisch
-
-############################################################## Toolbar help text
-tooltip:
- cards tab: Karten
- set info tab: Editionsinformation
- style tab: Styles
- keywords tab: Fähigkeiten
- stats tab: Statistiken
- random pack tab: Zufällige Packs
-
- new set: Neue Edition
- open set: Edition öffnen
- save set: Edition speichern
- export: Edition exportieren
-
- cut: Ausschneiden
- copy: Kopieren
- paste: Einfügen
- undo: Rückgängig:%s
- redo: Wiederholen:%s
-
- add card: Karte hinzufügen
- remove card: Gewählte Karte entfernen
- rotate card: Karte drehen
-
- add keyword: Fähigkeit hinzufügen
- remove keyword: Gewählte Fähigkeit entfernen
-
- bold: Fett
- italic: Krusiv
- symbols: Symbole
- reminder text: Text merken
-
- pie: Kreisdiagramm
- bar: Balkendiagramm
- stack: Gestapelte Säulen
- scatter: Blasendiagramm
- scatter pie: Gestreute Kreise
-
- cards tab: Karten
- set info tab: Editionsinformationen
- style tab: Kartenstyle
- keywords tab: Fähigkeiten
- stats tab: Statistiken
-
- # symbol editor
- store symbol: Symbol für diese Edition übernehmen
-
- grid: Gitternetz anzeigen
- snap: Am Gitternetz andocken
-
- select: Auswählen (F5)
- rotate: Drehen (F6)
- points: Punkte (F7)
- basic shapes: Objekte (F8)
- symmetry: Symmetrie (F9)
- paint: Paint on Shape (F10)
-
- merge: Vermischt das Objekt mit den Darunterliegenden
- subtract: Entfernt gemeinsame Flächen
- intersect: Zeigt nur die gemeinsame Fläche an
- difference: Zeigt nur die Fläche an, in den sich die Objekte unterscheiden
- overlap: Zeigt das Objekt und seinen Rand über allem an
- border: Stellt das Objekt als Rand dar
-
- ellipse: Ellipse / Kreis
- rectangle: Rechteck / Quadrat
- polygon: Mehr-Eck
- star: Stern
-
- rotation: Drehbare Symmetrieachse
- reflection: Spieglungssymmetrieachse
- add symmetry: Symmetrieachse hinzufügen
- remove symmetry: Symmetrieachse entfernen
-
- line segment: Geradlinig
- curve segment: Kurvig
- free point: Punkt freigeben
- smooth point: Punkt glätten
- symmetric point: Punkt symmetrisch ausrichten
-
-############################################################## Labels in the GUI
-label:
- # Cards tab
- card notes: Kartenanmerkung:
- # Keywords tab
- keyword: Schlagwort
- match: Fähigkeit
- mode: Modus
- uses: Genutzt
- reminder: Reminder Text
- rules: Zusätzliche Regeln
- standard keyword:
- Das ist ein Standart %s Schlagwort, Sie können es nicht veränden.
- Wenn Sie es kopieren, wird Ihr Schlagwort präzedent.
-
- # Style tab
- styling options: Einstellungen zum Aussehen
-
- # Random pack panel
- pack selection: Pack wählen
- pack totals: Packs gesamt
-#_ADD pack name: Pack name
- seed: Nummer
- total cards: Gesamtkarten
-
- # Open dialogs
- all files Alle Dateien
-
- # Other set window dialogs
- save changes:
- Die Edition '%s' wurde geändert.
-
- Möchtest du die Änderungen speichern?
-
- # New set window
- game type: &Spieltyp:
- style type: &Style:
-
- stylesheet not found:
- Die ausgewählte Edition benutzt das Stylesheet "%s" .
- Leider konnte es nicht gefunden werden. Bitte probieren Sie ein anderes.
-
- # Preferences
- language: Sprache
-#_ADD windows: Open sets
- app language: Sprache der Benutzeroberfläche:
- card display: Kartenaussehen
- zoom: &Zoom:
- percent of normal: % der Normalgröße
- external programs: Externe Programme
- apprentice: &Rohling:
- apprentice exe: Rohling-Exe
- check at startup: Beim Start auf neue Version überprüfen
- checking requires internet:
- Das Überprüfen benötigt eine offene Internetverbindung.
- Wurde keine gefunden, wird nicht auf Updates überprüft.
-
- Es werden keine Informationen gesendet.
-
- # Column select
- select columns: Wähle die anzuzeigenden Spalten aus
- columns: Spalten:
-
- # Card select / images export
- select cards: Wähle Karten zum exportieren
- selected card count: %s Karten werden exportiert.
- select cards print: Wähle die zu druckenden Karten aus
- filename format: &Format:
- filename conflicts: &Doppelte Dateinamen:
- export filenames: Dateinamen exportieren
- filename is ignored: (Dateiname wird ignoriert)
-
- # apprentice export
- set code: Editionscode:
- apprentice export cancelled: Der Export zum Rohling wurde abgebrochen.
-
- # Html export
- html template: html-Template:
- html export options:html-Exportoptionen
-
- # Image slicer
- original: Original:
- result: Ergebnis:
- size: Größe
- original size: &Originalgröße
- size to fit: Markierung anpassen
- force to fit: Bild anpassen
- custom size: &Definierte Größe
- selection: Auswahl
- selection left: &Links
- selection top: &Oben
- selection width: &Breite
- selection height: &Höhe
- zoom: Zoom
- fix aspect ratio: Fix aspect ratio (width/height)
- zoom amount: Zoom
- zoom amount x: Zoom &X
- zoom amount y: Zoom &Y
- zoom %: %
- filter: Filter
- sharpen filter: &Schärfe-Filter
-
- # Auto replace
- auto match: Auswählen
- auto replace: Ersetzen
-
- # Symbol editor
- sides: sides
-
- # Packages window
- package name: Package
- package status: Status
- package action: Aktion
-
- package conflicts: Widersprüchliche Modifikationen
- package modified: Aktuelle Modifikationen
- package updates: Updates verfügbar
- package installed: Installiert
- package installable: Nicht installiert
- install package: Installieren
-#_ADD reinstall package: reinstall
- upgrade package: Upgraden
- remove package: Entfernen
-
-#_ADD installed version: Installed version:
-#_ADD installable version: Latest version:
-#_ADD installer size: Size:
-#_ADD installer status: Status:
-#_ADD no version: -
-#_ADD
-############################################################## Buttons/checkboxes/choices in the GUI
-button:
- # Editor
- edit symbol: Bearbeiten
- symbol gallery: Gallerie
-
- # Style panel
- use for all cards: Für &alle Karten übernehmen
- use custom styling options: Optionen nur für die&se Karte
-
- # Keywords panel
- insert parameter: Fähigkeit einfügen...
- refer parameter: Fähigkeit verwenden...
-
- # Random pack panel
- generate pack: &Pack generieren
- random seed: &Zufällige Nummer
- fixed seed: &Eingestellte Nummer
-#_ADD add custom pack: Add &Custom Pack...
-
- # Welcome
- new set: Neue Edition
- open set: Edition öffnen
- check updates: Überprüfe auf Updates
- last opened set: Zuletzt geöffnet:
-
- # Preferences
-#_ADD open sets in new window: Open all sets in a new &window
- select: &OK...
- browse: &Durchsuchen...
- high quality: &High-quality-Rendern
- show lines: Hilfslinien anzeigen
- show editing hints: Zeigt Hilfen beim B&earbeiten an
- zoom export: Zoom- und Dreheinstellungen beim Export verwenden
- check now: &Jetzt überprüfen
- always: Immer (empfohlen)
- if internet connection exists: Wenn Internetverbindung besteht
- never: Niemals
-
- # Column select
- move up: A&ufwärts
- move down: A&bwärts
- show: &Anzeigen
- hide: &Verstecken
-
- # Card select
- export entire set: Ganze Edition Exportieren
- export generated packs: Generierte Packs exportieren
- export custom cards selection: Benutzerdefinierter Karten-Export
- select cards: &Wähle Karten
- select all: &Alle auswählen
- select none: &Nichts auswählen
- overwrite: Überschreibe alte Dateinamen
- keep old: Behalte alte Dateien
- number: Dateiname mit Nummer
- number overwrite: Dateiname mit Nummer, alte Dateien überschreiben
-
- # Auto replace
- use auto replace: Automatisches Ersetzen verwenden
- add item: &Hinzufügen
- remove item: &Entfernen
- defaults: Auf Werkseinstellungen zurücksetzen
- enabled: Aktiviert
- whole word: Nur ganze Wörter akzeptieren
-
- # Old style update checker (NOTE: this will be removed in a feature version)
- close: &Beenden
-
- # Packages window
- keep package: &Nicht verändern
- don't install package: &Nicht installieren
- install package: &Installieren
- upgrade package: &Upgraden
-#_ADD reinstall package: Re&install
- remove package: &Entfernen
- install group: &Installiere alle
- upgrade group: &Upgrade alle
- remove group: &Entferne alle
-
-############################################################## Titles in the GUI
-title:
- magic set editor: Magic Set Editor
- %s - magic set editor: %s - Magic Set Editor
- untitled: UnbenannteEdition
- about: Über Magic Set Editor
- symbol editor: Symbol Editor
- # dialogs
- new set: Neue Edition
- open set: Edition öffnen
- save set: Edition speichern als
- save image: Bild speichern
- updates available: Updates verfügbar
- save changes: Änderungen speichern?
- select stylesheet: Wähle Aussehen
- #preferences
- preferences: Einstellungen
- global: Global
- display: Aussehen
- directories: Verzeichnisse
- updates: Updates
- update check: Auf Updates überprüfen
- locate apprentice: Apprentice lokalisieren
- # select
- select columns: Wähle Spalten
- select cards: Wähle Karten
- select cards export:Wählen die Export-Karten
- # slice
- slice image: Bildeinstellungen
-#_ADD # pack
-#_ADD custom pack: Custom Pack Type
- # print
- print preview: Druckvorschau
- # export
- export images: Bild exportieren
- export cancelled: Export abgebrochen
- export html: Exportieren als HTML
- save html: Exportieren als HTML
- # auto replace
- auto replaces: Automatisches Ersetzen
-
- # Package Update Window
- packages window: Package Manager
- installing updates: Installiere Updates
-
- cannot create file: Datei kann nicht erstellt werden!
-
-############################################################## Action (undo/redo) names
-action:
- # List boxes
- add item: %s hinzufügen
- remove item: %s entfernen
-
- # Text editor
- typing: Eintippen...
- enter: Enter
- soft line break: Zeilenumbruch
- insert symbol: Symbol einfügen
- backspace: Rückschritttaste
- delete: Entfernen
- cut: Ausschneiden
- paste: Einfügen
- auto replace: Automatisches Ersetzen
-#_ADD correct: Spelling Correction
- # Choice/color editors
- change: Ändere %s
-
- # Symbol Actions
- move: Bewege %s
- rotate: Drehe %s
- shear: Schneide %s
- scale: Größe ändern von %s
- duplicate: %s duplizieren
- reorder parts: Reorder
- change combine mode: Kombinierung ändern
- change shape name: Namen ändern
- group parts: Gruppieren
- ungroup parts: Gruppierung entfernen
-
- # Symbol Part Actions
- convert to line: In Linie verändern
- convert to curve: In Kurve verändern
- lock point: Punkt sperren
- move handle: Auswahl verschieben
- move curve: Kurve bewegen
- add control point: Punkt hinzufügen
- delete point: Punkt löschen
- delete points: Punkte löschen
-
- # Symmetry
- add symmetry: Symmetrieachse hinzufügen
- #remove symmetry: Symmetrieachse entfernen
- move symmetry center: Symmetrieachsenmitte bewegen
- move symmetry handle: Symmetrieachse ändern
- change symmetry type: Symmetrieachsentyp ändern
- change symmetry copies: Anzahl der Kopien
-
-############################################################## Error messages
-error:
- # File related
- file not found: Datei nicht gefunden: '%s' im Package '%s'
- file not found package like:
- Datei nicht gefunden: '%s' im Package '%s'
- Wenn Sie versuchen sollten, die Datei von einem anderen Package zu laden, verwenden Sie "/package/filename"
- file parse error:
- Fehler beim Parsen von Datei: '%s'
- %s
- package not found: Package nicht gefunden: '%s'
- package out of date: Package '%s' (Version %s) ist nicht kompatibel, Version %s wird benötigt.
- package too new: Package '%s' (Version %s) ist nicht kompatibel mit Version %s, Version %s wird benötigt.
- unable to open output file: Fehler beim Speichern, kann Datei nicht öffnen
- unable to store file: Fehler beim Speichern, kann Datei nicht speichern
- dependency not given:
- Das Package '%s' verwendet Dateien vom Package '%s', aber es besitzt kein Abhängigkeitsverhältnis.
- Bitte fügen Sie folgendes ein:
- depends on: %s %s
-
- # Script stuff
- has no member: %s hat kein Element '%s'
- can't convert: Kann %s nicht in %s umwandeln.
- has no member value: String "%s" hat kein Element '%s'
- can't convert value: Kann "%s" nicht von %s in %s umwandeln.
- unsupported format: Ungültiges Stringformat: '%s'
- in function:
- %s
- in Funktion %s
- in parameter:
- Parameter %s: %s
- in keyword reminder:
- %s
- im Reminder Text der Fähigkeit '%s'
-
- # Image stuff
- coordinates for blending overlap: Koordinaten zum Blenden überlappen sich
- images used for blending must have the same size: Bilder müssen zum Mischen die selbe Größe haben.
-
- # Error from files
- no game specified: Kein Spiel für %s gewählt
- no stylesheet specified for the set: Kein Stylesheet für diese Edition gewählt
- stylesheet and set refer to different game:
- Stylesheet und Edition passen nicht zum gleichen Spiel. Fehler im Stylesheet.
- unsupported field type: Nicht unterstützter Feldtyp: '%s'
- unsupported fill type: Nicht unterstützer Typ: '%s'
- unrecognized value: Unbekannter Wert: '%s'
- expected key: Taste '%s' erwartet
- aborting parsing: Fataler Error.
- newer version:
- %s
- Diese Datei wurde mit einer neueren Version von MSE erstellt. (%s)
- Das Öffnen würde zum Verlust von Informationen führen.
- Bitte laden Sie sich die neuste Version unter
- http:://magicseteditor.sourceforge.net/ herunter.
- word list type not found: %s ist nicht bei gelistet
- pack item not found: Der Pack-Gegenstand "%s" wurde nicht gefunden
-#_ADD pack type not found: The pack type "%s" was not found (from a pack type)
-
- # Update checking
- checking updates failed: Update schlug fehl.
- no updates: Keine Updates verfügbar.
-
- # Stats panel
- dimension not found: Keine Statistikdimension '%s'
-
-#_ADD # Random packs
-#_ADD pack type duplicate name:
- There is already a pack type named '%s'.
- Please choose a different name.
-#_ADD
- # Package update window
-# checking updates: Suche nach Updates.
- can't download installer:
- Konnte nicht Installer für Package %s von %s herunterladen.
- Es wurde nichts installiert.
-
- downloading updates: Updates werden heruntergeladen (%d of %d)
- installing updates: Packages werden aktuallisiert (%d of %d)
-
- remove packages:
- Möchten Sie %s Packages wirklich löschen?
- remove packages modified:
- Hiermit werden %s Packages gelöscht, %s dieser wurden nach der Installation modifiziert.
- Das Löschen kann nicht wieder rückgängig gemacht werden.
-
- Do you want to continue?
- install packages successful: %s Package(s) wurden erfolgreich installiert.
- remove packages successful: %s Package(s) wurden erfolgreich entfernt.
- change packages successful: %s Package(s) wurden erfolgreich geändert.
-
- cannot create file: Datei '%s' kann nicht erstellt werden, trotzdem fortfahren?
-
-############################################################## Types used in scripts / shape names
-type:
- function: function
- collection: collection
- collection of: collection of %ss
- object: object
- double: real number
- integer: integer number
- string: string
- boolean: boolean
- color: color
- image: image
-#_ADD date: date
- nil: nothing
-
- # Object types
- package: package
- locale: translation
- game: game
- set: set
- stylesheet: stylesheet
- export template:export template
- symbol: symbol
- card: card
- cards: cards
- field: field
- style: style
- value: value
- keyword: keyword
- keywords: keywords
-#_ADD pack: pack type
-
- # Symbol editor shapes
- shape: shape
- shapes: shapes
- circle: circle
- ellipse: ellipse
- square: square
- rectangle: rectangle
- triangle: triangle
- rhombus: rhombus
- pentagon: pentagon
- hexagon: hexagon
- polygon: polygon
- star: star
-
- rotation: rotation
- reflection: reflection
- group: group
-
- point: point
- points: points
-
-############################################################## Magic
-package:
- magic.mse-game:
- # Card fields
- name: Name
- cc: Manakosten
- type: Typ
- p/t: S/W
- rarity: Seltenheit
- card name: Kartenname
-
- # Set info
-
- # descriptions/help text
-
- magic-mana-*.mse-symbol-font:
- # note: reminder/shortcut must start with a space, otherwise it is used as a shortcut
- # so typing T *anywhere* would insert a symbol (which would be bad)
- menu item T: &Tap Symbol T
- menu item Q: &Untap Symbol Q
- menu item W: &Weißes Mana W
- menu item U: Bl&aues Mana U
- menu item B: &Schwarzes Mana B
- menu item R: &Rotes Mana R
- menu item G: &Grünes Mana G
- menu item S: &Schnee Mana S
- menu item X: Variables Mana &X X
- menu item Y: Variables Mana &Y Y
- menu item Z: Variables Mana &Z Z
- menu item I: &Unendliches Mana I
- menu item colorless: &Farbloses Mana...
- title colorless: Farbloses Mana
- message colorless: Gib die Mana-Anzahl ein:
- menu item half: &Halbes Mana
- menu item |W: &Weiß |W
- menu item |U: Bla&u |U
- menu item |B: &Schwarz |B
- menu item |R: &Rot |R
- menu item |G: &Grün |G
- menu item |S: &Schnee |S
- menu item 1/2: &Farblos 1/2
- menu item hybrid: H&ybrid Mana (zweifarbig)
- menu item W/U: Weiß/Blau W/U
- menu item U/B: Blau/Schwarz U/B
- menu item B/R: Schwarz/Rot B/R
- menu item R/G: Rot/Grün R/G
- menu item G/W: Grün/Weiß G/W
- menu item W/B: Weiß/Schwarz W/B
- menu item U/R: Blau/Rot U/R
- menu item B/G: Schwarz/Grün B/G
- menu item R/W: Rot/Weiß R/W
- menu item G/U: Grün/Blau G/U
- menu item hybrid 3: H&ybrid Mana (dreifarbig)
- menu item W/U/B: Weiß/Blau/Schwarz W/U/B
- menu item U/B/R: Blau/Schwarz/Rot U/B/R
- menu item B/R/G: Schwarz/Rot/Grün B/R/G
- menu item R/G/W: Rot/Grün/Weiß R/G/W
- menu item G/W/U: Grün/Weiß/Blau G/W/U
- menu item W/B/R: Weiß/Schwarz/Rot W/B/R
- menu item U/R/G: Blau/Rot/Grün U/R/G
- menu item B/G/W: Schwarz/Grün/Weiß B/G/W
- menu item R/W/U: Rot/Weiß/Blau R/W/U
- menu item G/U/B: Grün/Blau/Schwarz G/U/B
-
+mse version: 0.3.8
+installer group: translations/Deutsch
+full name: Deutsch
+version: 2009-01-15
+icon: de.png
+
+############################################################## Menu items
+menu:
+ file: &Datei
+ new set: &Neu... Ctrl+N
+ open set: &Öffnen... Ctrl+O
+ save set: &Speichern Ctrl+S
+ save set as: Speichern unter... F12
+ export: &Exportieren
+ export html: &HTML exportieren...
+ export image: Bild exportieren...
+ export images: Alle Bilder exportieren...
+ export apprentice: &Karte exportieren...
+ export mws: Magic &Workstation...
+ check updates: Nach Updates schauen...
+ print preview: Druckvorschau...
+ print: &Drucken... Ctrl+P
+ reload data: Daten neu laden Ctrl+F5
+ exit: Beenden Alt+F4
+
+ edit: &Bearbeiten
+ undo: Rückgängig:%s Ctrl+Z
+ redo: Wiederholen:%s Ctrl+Y
+ cut: Ausschneiden Ctrl+X
+ copy: Kopieren Ctrl+C
+ paste: Einfügen Ctrl+V
+ find: Suchen Ctrl+F
+ find next: Nächstes Ergebnis F3
+ replace: Ersetzen Ctrl+H
+ auto replace: Automatisch Ersetzen
+ preferences: Einstellungen...
+
+ cards: &Karten
+ previous card: Vorherige Karte PgUp
+ next card: Nächste Karte PgDn
+ add card: Karte Hinzufügen Ctrl+Enter
+ add cards: Mehrere hinzufügen...
+ remove card: Markierte Entfernen Del
+ orientation: Ansicht
+ rotate 0: &Normal
+ rotate 270: 90°, im Uhrzeigersinn
+ rotate 90: 90°, gegen den Uhrzeigersinn
+ rotate 180: 180°, auf den Kopf gestellt
+ card list columns: Kartenliste-Spalten...
+
+ keywords: &Fähigkeiten
+ previous keyword: Vorherige PgUp
+ next keyword: Nächste PgDn
+ add keyword: Hinzufügen Ctrl+Enter
+ remove keyword: Markierte Enfernen Del
+
+ format: F&ormat
+ bold: &Fett Ctrl+B
+ italic: &Kursiv Ctrl+I
+ symbols: &Symbole Ctrl+M
+ reminder text: &Reminder Text Ctrl+R
+ insert symbol: Sy&mbol einfügen
+#_ADD # spelling
+#_ADD no spelling suggestions: (no suggestions)
+
+ graph: &Diagramm
+ pie: &Kreis 1
+ bar: &Säulen 2
+ stack: &Gestapelte Säulen 3
+ scatter: &Blase 4
+ scatter pie: G&estreute Kreise 5
+
+ window: &Ansicht
+ new window: &Neues Fenster
+ cards tab: &Karten F5
+ set info tab: &Editionsinformationen F6
+ style tab: Aussehen F7
+ keywords tab: Fähigkeiten F8
+ stats tab: S&tatistik F9
+ random pack tab: &Zufällige Packs
+
+ help: &Hilfe
+ index: &Index... F1
+ website: &Website...
+ about: &Über Magic Set Editor...
+
+ # symbol editor
+
+ new symbol: &Neu... Ctrl+N
+ open symbol: &Öffnen... Ctrl+O
+ save symbol: &Speichern Ctrl+S
+ save symbol as: Speichern unter... F12
+ store symbol: Übernehmen Ctrl+Enter
+ close symbol editor:&Beenden Alt+F4
+
+ duplicate: Verdoppeln Ctrl+D
+ group: &Gruppieren Ctrl+G
+ ungroup: &Gruppierung lösen Ctrl+U
+
+ tool: &Tools
+ select: &Auswählen F5
+ rotate: &Drehen F6
+ points: &Punkte F7
+ basic shapes: &Objekte F8
+ symmetry: Symmetrie F9
+ paint: &Zeichnen F10
+
+############################################################## Menu help texts
+help:
+ welcome: Willkommen im Magic Set Editor
+
+ file:
+ new set: Neue Edition erstellen
+ open set: Bestehende Edition öffnen
+ last opened set: Zuletzt geöffnetes '%s'
+ save set: Edition speichern
+ save set as: Edition speichern als...
+ export: Edition exporieren...
+ export html: Exportieren der Edition in html
+ export image: Exportieren des gewählten Bildes
+ export images: Exportieren aller Bilder
+ export apprentice: Exportieren der Edition für Apprentice
+ export mws: Exportieren der Edition für Magic Workstation
+ check updates: Zeigt das Update-Fenster an, indem man neue Packages herunterladen kann.
+ print preview: Zeigt an, wie die Bilder gedruckt werden
+ print: Druckt die Bilder der Edition
+ reload data: Läd alle Daten neu.
+ exit: Beendet Magic Set Editor
+
+ edit:
+ undo: Macht die letzte Aktion rückgängig
+ redo: Wiederholt die letzte Aktion
+ cut: Verschiebt die Daten in die Zwischenablage
+ cut card: Verschiebt die gewählte Karte in die Zwischenablage
+ cut keyword: Verschiebt die gewählte Fähigkeit in die Zwischenablage
+ copy: Kopiert die Daten in die Zwischenablage
+ copy card: Kopiert die gewählte Karte in die Zwischenablage
+ copy keyword: Kopiert die gewählte Fähigkeit in die Zwischenablage
+ paste: Fügt den Text der Zwischenablage ein
+ paste card: Fügt den Karte der Zwischenablage ein
+ paste keyword: Fügt die Fähigkeit der Zwischenablage ein
+ find: Sucht den Text in einer Karte
+ find next: Zeigt das nächste Ergebnis an
+ replace: Ersetzt den karten Text
+ auto replace: Ersetzt den text ohne Bestätigung
+ preferences: Ändert die Einstellungen
+
+ cards:
+ previous card: Wählt die vorherige Karte der Liste
+ next card: Wählt die nächste Karte der Liste
+ add card: Fügt eine neue Karte zur Edition hinzu
+ add cards: Fügt mehrere Karten zur Edition hinzu
+ remove card: Entfernt die gewählte Karte aus der Edition
+ orientation: Ansicht der gewählten Karte
+ rotate card: Dreht die Karte um 90° im Uhrzeigersinn
+ rotate 0: Zeigt die Karte normal an
+ rotate 270: Dreht die Karte um 90° im Uhrzeigersinn
+ rotate 90: Dreht die Karte um 90° gegen den Uhrzeigersinn
+ rotate 180: Dreht die Karte um 180°
+ card list columns: Wähle die Spalten, die angezeigt werden sollen.
+
+ keywords:
+ previous keyword: Wählt die vorherige Fähigkeit
+ next keyword: Wählt die nächste Fähigkeit
+ add keyword: Fügt eine neue Fähigkeit hinzu
+ remove keyword: Löscht die markierte Fähigkeit
+
+ format:
+ bold: Formatiert den Text Fett
+ italic: Formatiert den Text Kursiv
+ symbols: Formatiert den Text als Symbol
+ reminder text: Zeige den Reminder-Text für die gewählte Fähigkeit an
+#_ADD # spelling
+#_ADD no spelling suggestions: There are no suggestions for correcting this error
+
+ graph:
+ pie: Ein Kreisdiagramm, die Größe der Kreise zeigt die Anzahl der Karten an
+ bar: Ein Balkendiagramm, die Größe der Balken zeigt die Anzahl der Karten an
+ stack: Ein Balkendiagramm mit gestapelten Säulen
+ scatter: Ein Blasendiagramm, die Größe der Blase zeigt die Anzahl der Karten an
+ scatter pie: Gestreute Kreise, wobei jeder Kreis ein Kreisdiagramm ist
+
+ window:
+ new window: Erstellt ein neues Fenster mit der gleichen Edition
+ cards tab: Bearbeite die Karten der Edition
+ set info tab: Bearbeite die Informationen der Edition
+ style tab: Ändere den Style der Karten
+ keywords tab: Füge Fähigkeiten für diese Edition hinzu
+ stats tab: Zeigt eine Statistik über diese Edition an
+ random pack tab: Testet wie das Set funktionieren würde, indem es ufällige Booster Packs erstellt.
+
+ help:
+ index:
+ website:
+ about:
+
+ # Cards panel
+ collapse notes: Versteckt die Karten-Notiz-Box
+ expand notes: Teigt die Karten-Notiz-Box
+ # Random pack panel
+ random seed: Erstellt jedes mal andere Packs.
+ fixed seed: Indem man dieselbe Nummer verwendet, bekommt man dieselben "zufälligen" Packs.
+ seed: Nummer für den Zufallsgenerator. Indem man dieselbe Nummer verwendet, bekommt man dieselben "zufälligen" Packs.
+#_ADD edit pack type: Double click to edit pack type
+#_ADD number of packs: The number of %ss to generate
+
+ # Preferences
+ app language:
+ Bitte starten Sie MSE neu, damit die Änderungen wirksam werden.
+ zoom export:
+ (Wenn ausgeschaltet, werden die
+ Karten normal exportiert)
+
+ # apprentice export
+ set code: Der zweiteilige Code wird vom Rohling genutzt, um auf eine Edition zu verweisen.
+
+ # Symbol editor
+ new symbol: Erstelle ein neues Symbol
+ open symbol: Symbol Symbol öffnen
+ save symbol: Symbol Symbol speichern
+ save symbol as: Symbol Symbol speichern unter...
+ store symbol: Symbol Symbol übernehmen
+ close symbol editor:Symbol-Editor beenden
+
+ duplicate: Clont das gewählte Objekt
+ group: Gruppiert die gewählten Elemente
+ ungroup: Löst die Gruppierung auf
+
+ grid: Gitternetz anzeigen
+ snap: Punkte und Objekte am Gitternetz ausrichten
+
+ tool:
+ select: Wählt Objekte aus und bewegt es
+ rotate: Dreht Objekte
+ points: Bearbeitet die Punkte des Objektes
+ basic shapes: Zeichnet ein Objekt
+ symmetry: Symmetrisches Symbol hinzufügen
+ paint: Zeichnet ein Objekt mit dem Pinsel
+
+ select editor:
+ merge: Vermischt das Objekt mit den Darunterliegenden
+ subtract: Entfernt gemeinsame Flächen
+ intersect: Zeigt nur die gemeinsame Fläche an
+ difference: Zeigt nur die Fläche an, in den sich die Objekte unterscheiden
+ overlap: Zeigt das Objekt und seinen Rand über allem an
+ border: Stellt das Objekt als Rand dar
+
+ drag to shear: Ziehen, um %s zu schneiden
+ drag to rotate: Ziehen, um %s zu drehen, +Ctrl: um 15° drehen
+ drag to resize: Ziehen, um die Größe von %s zu ändern, +Ctrl: proportional ändern
+ click to select shape: Klick zum Auswählen, Ziehen zum Bewegen, Doppelklick zum Ändern
+
+ ellipse: Zeichnet Kreise und Ellipsen
+ rectangle: Zeichnet Quadrate und Rechtecke
+ polygon: Zeichnet Dreiecke, Fünfecke und andere regelmäßige n-Ecke
+ star: Zeichnet Sterne
+ sides: Anzahl der Seiten eines Sterns oder n-Ecks
+ drag to draw shape: Ziehen zum Zeichnen, +Ctrl: proportional zeichnen, +Shift: zentral ausrichten
+ draw ellipse: Klicken und Ziehen zum Zeichnen einer Ellipse, +Ctrl: für einen Kreis
+ draw rectangle: Klicken und Ziehen zum Zeichnen eines Rechtecks, +Ctrl: für ein Quadrat
+ draw polygon: Klicken und Ziehen zum Zeichnen eines n-Ecks
+ draw star: Klicken und Ziehen zum Zeichnen eines Sterns
+
+ line segment: Geradlinig amchen
+ curve segment: Kurvig machen
+ free point: Frei bewegen
+ smooth point: Glätten
+ symmetric point: Symmetrisch ausrichten
+ drag to move curve: Ziehen um die Kurve zu Bewegen
+ drag to move line: Alt + Ziehen, um die Kruve zu bewegen; Doppelklick zum Hinzufügen eines Punktes
+ drag to move point: Gedrückt halten und Ziehen um den Punkt zu bewegen; Doppelklick zum Entfernen des Punktes
+
+ rotation: Symmetrieachse drehen
+ reflection: Symmetrieachse spiegeln
+ add symmetry: Symmetrieachse hinzufügen
+ remove symmetry: Symmetrieachse entfernen
+ copies: Anzahl der Spiegelungen (Original mit eingerechnet)
+
+ # Card select
+ filename format: (Benutzen Sie {card.name} für den Namen der Karte ; Der Dateityp basiert auf der Endung.)
+
+############################################################## Toolbar
+tool:
+ undo: Rückgängig
+ redo: Wiederholen
+
+ cards tab: Karten
+ set info tab: Editionsinformationen
+ style tab: Style
+ keywords tab: Fähigkeiten
+ stats tab: Statistik
+ random pack tab: Zufällige Packs
+
+ # symbol editor
+ store symbol: Übernehmen
+
+ grid: Gitternetz
+ snap: Magnet
+
+ select: Auswählen
+ rotate: Drehen
+ points: Punkte
+ basic shapes: Objekte
+ symmetry: Symmetrisch
+ paint: Zeichnen
+
+ merge: Vermischen
+ subtract: Subtrahieren
+ intersect: Kombinieren
+ difference: Unterscheiden
+ overlap: Überlappen
+ border: Rand
+
+ ellipse: Ellipse
+ rectangle: Rechteck
+ polygon: n-Eck
+ star: Stern
+
+ rotation: Rotieren
+ reflection: Spiegeln
+ add symmetry: Hinzufügen
+ remove symmetry: Entfernen
+
+ line segment: Linie
+ curve segment: Kurve
+ free point: Frei
+ smooth point: Glätten
+ symmetric point: Symmetrisch
+
+############################################################## Toolbar help text
+tooltip:
+ cards tab: Karten
+ set info tab: Editionsinformation
+ style tab: Styles
+ keywords tab: Fähigkeiten
+ stats tab: Statistiken
+ random pack tab: Zufällige Packs
+
+ new set: Neue Edition
+ open set: Edition öffnen
+ save set: Edition speichern
+ export: Edition exportieren
+
+ cut: Ausschneiden
+ copy: Kopieren
+ paste: Einfügen
+ undo: Rückgängig:%s
+ redo: Wiederholen:%s
+
+ add card: Karte hinzufügen
+ remove card: Gewählte Karte entfernen
+ rotate card: Karte drehen
+
+ add keyword: Fähigkeit hinzufügen
+ remove keyword: Gewählte Fähigkeit entfernen
+
+ bold: Fett
+ italic: Krusiv
+ symbols: Symbole
+ reminder text: Text merken
+
+ pie: Kreisdiagramm
+ bar: Balkendiagramm
+ stack: Gestapelte Säulen
+ scatter: Blasendiagramm
+ scatter pie: Gestreute Kreise
+
+ cards tab: Karten
+ set info tab: Editionsinformationen
+ style tab: Kartenstyle
+ keywords tab: Fähigkeiten
+ stats tab: Statistiken
+
+ # symbol editor
+ store symbol: Symbol für diese Edition übernehmen
+
+ grid: Gitternetz anzeigen
+ snap: Am Gitternetz andocken
+
+ select: Auswählen (F5)
+ rotate: Drehen (F6)
+ points: Punkte (F7)
+ basic shapes: Objekte (F8)
+ symmetry: Symmetrie (F9)
+ paint: Paint on Shape (F10)
+
+ merge: Vermischt das Objekt mit den Darunterliegenden
+ subtract: Entfernt gemeinsame Flächen
+ intersect: Zeigt nur die gemeinsame Fläche an
+ difference: Zeigt nur die Fläche an, in den sich die Objekte unterscheiden
+ overlap: Zeigt das Objekt und seinen Rand über allem an
+ border: Stellt das Objekt als Rand dar
+
+ ellipse: Ellipse / Kreis
+ rectangle: Rechteck / Quadrat
+ polygon: Mehr-Eck
+ star: Stern
+
+ rotation: Drehbare Symmetrieachse
+ reflection: Spieglungssymmetrieachse
+ add symmetry: Symmetrieachse hinzufügen
+ remove symmetry: Symmetrieachse entfernen
+
+ line segment: Geradlinig
+ curve segment: Kurvig
+ free point: Punkt freigeben
+ smooth point: Punkt glätten
+ symmetric point: Punkt symmetrisch ausrichten
+
+############################################################## Labels in the GUI
+label:
+ # Cards tab
+ card notes: Kartenanmerkung:
+ # Keywords tab
+ keyword: Schlagwort
+ match: Fähigkeit
+ mode: Modus
+ uses: Genutzt
+ reminder: Reminder Text
+ rules: Zusätzliche Regeln
+ standard keyword:
+ Das ist ein Standart %s Schlagwort, Sie können es nicht veränden.
+ Wenn Sie es kopieren, wird Ihr Schlagwort präzedent.
+
+ # Style tab
+ styling options: Einstellungen zum Aussehen
+
+ # Random pack panel
+ pack selection: Pack wählen
+ pack totals: Packs gesamt
+#_ADD pack name: Pack name
+ seed: Nummer
+ total cards: Gesamtkarten
+
+ # Open dialogs
+ all files Alle Dateien
+
+ # Other set window dialogs
+ save changes:
+ Die Edition '%s' wurde geändert.
+
+ Möchtest du die Änderungen speichern?
+
+ # New set window
+ game type: &Spieltyp:
+ style type: &Style:
+
+ stylesheet not found:
+ Die ausgewählte Edition benutzt das Stylesheet "%s" .
+ Leider konnte es nicht gefunden werden. Bitte probieren Sie ein anderes.
+
+ # Preferences
+ language: Sprache
+#_ADD windows: Open sets
+ app language: Sprache der Benutzeroberfläche:
+ card display: Kartenaussehen
+ zoom: &Zoom:
+ percent of normal: % der Normalgröße
+ external programs: Externe Programme
+ apprentice: &Rohling:
+ apprentice exe: Rohling-Exe
+ check at startup: Beim Start auf neue Version überprüfen
+ checking requires internet:
+ Das Überprüfen benötigt eine offene Internetverbindung.
+ Wurde keine gefunden, wird nicht auf Updates überprüft.
+
+ Es werden keine Informationen gesendet.
+
+ # Column select
+ select columns: Wähle die anzuzeigenden Spalten aus
+ columns: Spalten:
+
+ # Card select / images export
+ select cards: Wähle Karten zum exportieren
+ selected card count: %s Karten werden exportiert.
+ select cards print: Wähle die zu druckenden Karten aus
+ filename format: &Format:
+ filename conflicts: &Doppelte Dateinamen:
+ export filenames: Dateinamen exportieren
+ filename is ignored: (Dateiname wird ignoriert)
+
+ # apprentice export
+ set code: Editionscode:
+ apprentice export cancelled: Der Export zum Rohling wurde abgebrochen.
+
+ # Html export
+ html template: html-Template:
+ html export options:html-Exportoptionen
+
+ # Image slicer
+ original: Original:
+ result: Ergebnis:
+ size: Größe
+ original size: &Originalgröße
+ size to fit: Markierung anpassen
+ force to fit: Bild anpassen
+ custom size: &Definierte Größe
+ selection: Auswahl
+ selection left: &Links
+ selection top: &Oben
+ selection width: &Breite
+ selection height: &Höhe
+ zoom: Zoom
+ fix aspect ratio: Fix aspect ratio (width/height)
+ zoom amount: Zoom
+ zoom amount x: Zoom &X
+ zoom amount y: Zoom &Y
+ zoom %: %
+ filter: Filter
+ sharpen filter: &Schärfe-Filter
+
+ # Auto replace
+ auto match: Auswählen
+ auto replace: Ersetzen
+
+ # Symbol editor
+ sides: sides
+
+ # Packages window
+ package name: Package
+ package status: Status
+ package action: Aktion
+
+ package conflicts: Widersprüchliche Modifikationen
+ package modified: Aktuelle Modifikationen
+ package updates: Updates verfügbar
+ package installed: Installiert
+ package installable: Nicht installiert
+ install package: Installieren
+#_ADD reinstall package: reinstall
+ upgrade package: Upgraden
+ remove package: Entfernen
+
+#_ADD installed version: Installed version:
+#_ADD installable version: Latest version:
+#_ADD installer size: Size:
+#_ADD installer status: Status:
+#_ADD no version: -
+#_ADD
+############################################################## Buttons/checkboxes/choices in the GUI
+button:
+ # Editor
+ edit symbol: Bearbeiten
+ symbol gallery: Gallerie
+
+ # Style panel
+ use for all cards: Für &alle Karten übernehmen
+ use custom styling options: Optionen nur für die&se Karte
+
+ # Keywords panel
+ insert parameter: Fähigkeit einfügen...
+ refer parameter: Fähigkeit verwenden...
+
+ # Random pack panel
+ generate pack: &Pack generieren
+ random seed: &Zufällige Nummer
+ fixed seed: &Eingestellte Nummer
+#_ADD add custom pack: Add &Custom Pack...
+
+ # Welcome
+ new set: Neue Edition
+ open set: Edition öffnen
+ check updates: Überprüfe auf Updates
+ last opened set: Zuletzt geöffnet:
+
+ # Preferences
+#_ADD open sets in new window: Open all sets in a new &window
+ select: &OK...
+ browse: &Durchsuchen...
+ high quality: &High-quality-Rendern
+ show lines: Hilfslinien anzeigen
+ show editing hints: Zeigt Hilfen beim B&earbeiten an
+ zoom export: Zoom- und Dreheinstellungen beim Export verwenden
+ check now: &Jetzt überprüfen
+ always: Immer (empfohlen)
+ if internet connection exists: Wenn Internetverbindung besteht
+ never: Niemals
+
+ # Column select
+ move up: A&ufwärts
+ move down: A&bwärts
+ show: &Anzeigen
+ hide: &Verstecken
+
+ # Card select
+ export entire set: Ganze Edition Exportieren
+ export generated packs: Generierte Packs exportieren
+ export custom cards selection: Benutzerdefinierter Karten-Export
+ select cards: &Wähle Karten
+ select all: &Alle auswählen
+ select none: &Nichts auswählen
+ overwrite: Überschreibe alte Dateinamen
+ keep old: Behalte alte Dateien
+ number: Dateiname mit Nummer
+ number overwrite: Dateiname mit Nummer, alte Dateien überschreiben
+
+ # Auto replace
+ use auto replace: Automatisches Ersetzen verwenden
+ add item: &Hinzufügen
+ remove item: &Entfernen
+ defaults: Auf Werkseinstellungen zurücksetzen
+ enabled: Aktiviert
+ whole word: Nur ganze Wörter akzeptieren
+
+ # Old style update checker (NOTE: this will be removed in a feature version)
+ close: &Beenden
+
+ # Packages window
+ keep package: &Nicht verändern
+ don't install package: &Nicht installieren
+ install package: &Installieren
+ upgrade package: &Upgraden
+#_ADD reinstall package: Re&install
+ remove package: &Entfernen
+ install group: &Installiere alle
+ upgrade group: &Upgrade alle
+ remove group: &Entferne alle
+
+############################################################## Titles in the GUI
+title:
+ magic set editor: Magic Set Editor
+ %s - magic set editor: %s - Magic Set Editor
+ untitled: UnbenannteEdition
+ about: Über Magic Set Editor
+ symbol editor: Symbol Editor
+ # dialogs
+ new set: Neue Edition
+ open set: Edition öffnen
+ save set: Edition speichern als
+ save image: Bild speichern
+ updates available: Updates verfügbar
+ save changes: Änderungen speichern?
+ select stylesheet: Wähle Aussehen
+ #preferences
+ preferences: Einstellungen
+ global: Global
+ display: Aussehen
+ directories: Verzeichnisse
+ updates: Updates
+ update check: Auf Updates überprüfen
+ locate apprentice: Apprentice lokalisieren
+ # select
+ select columns: Wähle Spalten
+ select cards: Wähle Karten
+ select cards export:Wählen die Export-Karten
+ # slice
+ slice image: Bildeinstellungen
+#_ADD # pack
+#_ADD custom pack: Custom Pack Type
+ # print
+ print preview: Druckvorschau
+ # export
+ export images: Bild exportieren
+ export cancelled: Export abgebrochen
+ export html: Exportieren als HTML
+ save html: Exportieren als HTML
+ # auto replace
+ auto replaces: Automatisches Ersetzen
+
+ # Package Update Window
+ packages window: Package Manager
+ installing updates: Installiere Updates
+
+ cannot create file: Datei kann nicht erstellt werden!
+
+############################################################## Action (undo/redo) names
+action:
+ # List boxes
+ add item: %s hinzufügen
+ remove item: %s entfernen
+
+ # Text editor
+ typing: Eintippen...
+ enter: Enter
+ soft line break: Zeilenumbruch
+ insert symbol: Symbol einfügen
+ backspace: Rückschritttaste
+ delete: Entfernen
+ cut: Ausschneiden
+ paste: Einfügen
+ auto replace: Automatisches Ersetzen
+#_ADD correct: Spelling Correction
+ # Choice/color editors
+ change: Ändere %s
+
+ # Symbol Actions
+ move: Bewege %s
+ rotate: Drehe %s
+ shear: Schneide %s
+ scale: Größe ändern von %s
+ duplicate: %s duplizieren
+ reorder parts: Reorder
+ change combine mode: Kombinierung ändern
+ change shape name: Namen ändern
+ group parts: Gruppieren
+ ungroup parts: Gruppierung entfernen
+
+ # Symbol Part Actions
+ convert to line: In Linie verändern
+ convert to curve: In Kurve verändern
+ lock point: Punkt sperren
+ move handle: Auswahl verschieben
+ move curve: Kurve bewegen
+ add control point: Punkt hinzufügen
+ delete point: Punkt löschen
+ delete points: Punkte löschen
+
+ # Symmetry
+ add symmetry: Symmetrieachse hinzufügen
+ #remove symmetry: Symmetrieachse entfernen
+ move symmetry center: Symmetrieachsenmitte bewegen
+ move symmetry handle: Symmetrieachse ändern
+ change symmetry type: Symmetrieachsentyp ändern
+ change symmetry copies: Anzahl der Kopien
+
+############################################################## Error messages
+error:
+ # File related
+ file not found: Datei nicht gefunden: '%s' im Package '%s'
+ file not found package like:
+ Datei nicht gefunden: '%s' im Package '%s'
+ Wenn Sie versuchen sollten, die Datei von einem anderen Package zu laden, verwenden Sie "/package/filename"
+ file parse error:
+ Fehler beim Parsen von Datei: '%s'
+ %s
+ package not found: Package nicht gefunden: '%s'
+ package out of date: Package '%s' (Version %s) ist nicht kompatibel, Version %s wird benötigt.
+ package too new: Package '%s' (Version %s) ist nicht kompatibel mit Version %s, Version %s wird benötigt.
+ unable to open output file: Fehler beim Speichern, kann Datei nicht öffnen
+ unable to store file: Fehler beim Speichern, kann Datei nicht speichern
+ dependency not given:
+ Das Package '%s' verwendet Dateien vom Package '%s', aber es besitzt kein Abhängigkeitsverhältnis.
+ Bitte fügen Sie folgendes ein:
+ depends on: %s %s
+
+ # Script stuff
+ has no member: %s hat kein Element '%s'
+ can't convert: Kann %s nicht in %s umwandeln.
+ has no member value: String "%s" hat kein Element '%s'
+ can't convert value: Kann "%s" nicht von %s in %s umwandeln.
+ unsupported format: Ungültiges Stringformat: '%s'
+ in function:
+ %s
+ in Funktion %s
+ in parameter:
+ Parameter %s: %s
+ in keyword reminder:
+ %s
+ im Reminder Text der Fähigkeit '%s'
+
+ # Image stuff
+ coordinates for blending overlap: Koordinaten zum Blenden überlappen sich
+ images used for blending must have the same size: Bilder müssen zum Mischen die selbe Größe haben.
+
+ # Error from files
+ no game specified: Kein Spiel für %s gewählt
+ no stylesheet specified for the set: Kein Stylesheet für diese Edition gewählt
+ stylesheet and set refer to different game:
+ Stylesheet und Edition passen nicht zum gleichen Spiel. Fehler im Stylesheet.
+ unsupported field type: Nicht unterstützter Feldtyp: '%s'
+ unsupported fill type: Nicht unterstützer Typ: '%s'
+ unrecognized value: Unbekannter Wert: '%s'
+ expected key: Taste '%s' erwartet
+ aborting parsing: Fataler Error.
+ newer version:
+ %s
+ Diese Datei wurde mit einer neueren Version von MSE erstellt. (%s)
+ Das Öffnen würde zum Verlust von Informationen führen.
+ Bitte laden Sie sich die neuste Version unter
+ http:://magicseteditor.sourceforge.net/ herunter.
+ word list type not found: %s ist nicht bei gelistet
+ pack item not found: Der Pack-Gegenstand "%s" wurde nicht gefunden
+#_ADD pack type not found: The pack type "%s" was not found (from a pack type)
+
+ # Update checking
+ checking updates failed: Update schlug fehl.
+ no updates: Keine Updates verfügbar.
+
+ # Stats panel
+ dimension not found: Keine Statistikdimension '%s'
+
+#_ADD # Random packs
+#_ADD pack type duplicate name:
+ There is already a pack type named '%s'.
+ Please choose a different name.
+#_ADD
+ # Package update window
+# checking updates: Suche nach Updates.
+ can't download installer:
+ Konnte nicht Installer für Package %s von %s herunterladen.
+ Es wurde nichts installiert.
+
+ downloading updates: Updates werden heruntergeladen (%d of %d)
+ installing updates: Packages werden aktuallisiert (%d of %d)
+
+ remove packages:
+ Möchten Sie %s Packages wirklich löschen?
+ remove packages modified:
+ Hiermit werden %s Packages gelöscht, %s dieser wurden nach der Installation modifiziert.
+ Das Löschen kann nicht wieder rückgängig gemacht werden.
+
+ Do you want to continue?
+ install packages successful: %s Package(s) wurden erfolgreich installiert.
+ remove packages successful: %s Package(s) wurden erfolgreich entfernt.
+ change packages successful: %s Package(s) wurden erfolgreich geändert.
+
+ cannot create file: Datei '%s' kann nicht erstellt werden, trotzdem fortfahren?
+
+############################################################## Types used in scripts / shape names
+type:
+ function: function
+ collection: collection
+ collection of: collection of %ss
+ object: object
+ double: real number
+ integer: integer number
+ string: string
+ boolean: boolean
+ color: color
+ image: image
+#_ADD date: date
+ nil: nothing
+
+ # Object types
+ package: package
+ locale: translation
+ game: game
+ set: set
+ stylesheet: stylesheet
+ export template:export template
+ symbol: symbol
+ card: card
+ cards: cards
+ field: field
+ style: style
+ value: value
+ keyword: keyword
+ keywords: keywords
+#_ADD pack: pack type
+
+ # Symbol editor shapes
+ shape: shape
+ shapes: shapes
+ circle: circle
+ ellipse: ellipse
+ square: square
+ rectangle: rectangle
+ triangle: triangle
+ rhombus: rhombus
+ pentagon: pentagon
+ hexagon: hexagon
+ polygon: polygon
+ star: star
+
+ rotation: rotation
+ reflection: reflection
+ group: group
+
+ point: point
+ points: points
+
+############################################################## Magic
+package:
+ magic.mse-game:
+ # Card fields
+ name: Name
+ cc: Manakosten
+ type: Typ
+ p/t: S/W
+ rarity: Seltenheit
+ card name: Kartenname
+
+ # Set info
+
+ # descriptions/help text
+
+ magic-mana-*.mse-symbol-font:
+ # note: reminder/shortcut must start with a space, otherwise it is used as a shortcut
+ # so typing T *anywhere* would insert a symbol (which would be bad)
+ menu item T: &Tap Symbol T
+ menu item Q: &Untap Symbol Q
+ menu item W: &Weißes Mana W
+ menu item U: Bl&aues Mana U
+ menu item B: &Schwarzes Mana B
+ menu item R: &Rotes Mana R
+ menu item G: &Grünes Mana G
+ menu item S: &Schnee Mana S
+ menu item X: Variables Mana &X X
+ menu item Y: Variables Mana &Y Y
+ menu item Z: Variables Mana &Z Z
+ menu item I: &Unendliches Mana I
+ menu item colorless: &Farbloses Mana...
+ title colorless: Farbloses Mana
+ message colorless: Gib die Mana-Anzahl ein:
+ menu item half: &Halbes Mana
+ menu item |W: &Weiß |W
+ menu item |U: Bla&u |U
+ menu item |B: &Schwarz |B
+ menu item |R: &Rot |R
+ menu item |G: &Grün |G
+ menu item |S: &Schnee |S
+ menu item 1/2: &Farblos 1/2
+ menu item hybrid: H&ybrid Mana (zweifarbig)
+ menu item W/U: Weiß/Blau W/U
+ menu item U/B: Blau/Schwarz U/B
+ menu item B/R: Schwarz/Rot B/R
+ menu item R/G: Rot/Grün R/G
+ menu item G/W: Grün/Weiß G/W
+ menu item W/B: Weiß/Schwarz W/B
+ menu item U/R: Blau/Rot U/R
+ menu item B/G: Schwarz/Grün B/G
+ menu item R/W: Rot/Weiß R/W
+ menu item G/U: Grün/Blau G/U
+ menu item hybrid 3: H&ybrid Mana (dreifarbig)
+ menu item W/U/B: Weiß/Blau/Schwarz W/U/B
+ menu item U/B/R: Blau/Schwarz/Rot U/B/R
+ menu item B/R/G: Schwarz/Rot/Grün B/R/G
+ menu item R/G/W: Rot/Grün/Weiß R/G/W
+ menu item G/W/U: Grün/Weiß/Blau G/W/U
+ menu item W/B/R: Weiß/Schwarz/Rot W/B/R
+ menu item U/R/G: Blau/Rot/Grün U/R/G
+ menu item B/G/W: Schwarz/Grün/Weiß B/G/W
+ menu item R/W/U: Rot/Weiß/Blau R/W/U
+ menu item G/U/B: Grün/Blau/Schwarz G/U/B
+
diff --git a/data/en.mse-locale/locale b/data/en.mse-locale/locale
index 14e3bf40..d96ed862 100644
--- a/data/en.mse-locale/locale
+++ b/data/en.mse-locale/locale
@@ -1,926 +1,926 @@
-mse version: 0.3.8
-installer group: translations/English
-full name: English
-version: 2008-08-08
-icon: usgb.png
-
-############################################################## Menu items
-menu:
- file: &File
- new set: &New... Ctrl+N
- open set: &Open... Ctrl+O
- save set: &Save Ctrl+S
- save set as: Save &As... F12
- export: &Export
- export html: &HTML...
- export image: Card &Image...
- export images: All Card I&mages...
- export apprentice: &Apprentice...
- export mws: Magic &Workstation...
- check updates: Check &Updates...
- print preview: Print Pre&view...
- print: &Print... Ctrl+P
- reload data: Reload Data Ctrl+F5
- exit: E&xit Alt+F4
-
- edit: &Edit
- undo: &Undo%s Ctrl+Z
- redo: &Redo%s Ctrl+Y
- cut: Cu&t Ctrl+X
- copy: &Copy Ctrl+C
- paste: &Paste Ctrl+V
- find: &Find Ctrl+F
- find next: Find &Next F3
- replace: R&eplace Ctrl+H
- auto replace: Auto Rep&lace...
- preferences: &Preferences...
-
- cards: &Cards
- previous card: Select &Previous Card PgUp
- next card: Select &Next Card PgDn
- add card: &Add Card Ctrl+Enter
- add cards: Add &Multiple Cards...
- remove card: &Delete Selected Card
- orientation: &Orientation
- rotate 0: &Normal
- rotate 270: Rotated 90° &Clockwise
- rotate 90: Rotated 90° C&ounter Clockwise
- rotate 180: Rotated 180°, &Up Side Down
- card list columns: C&ard List Columns...
-
- keywords: &Keywords
- previous keyword: Select &Previous Keyword PgUp
- next keyword: Select &Next Keyword PgDn
- add keyword: &Add Keyword Ctrl+Enter
- remove keyword: &Remove Select Keyword Del
-
- format: F&ormat
- bold: &Bold Ctrl+B
- italic: &Italic Ctrl+I
- symbols: &Symbols Ctrl+M
- reminder text: &Reminder Text Ctrl+R
- insert symbol: I&nsert Symbol
- # spelling
- no spelling suggestions: (no suggestions)
-
- graph: &Graph
- pie: &Pie 1
- bar: &Bar 2
- stack: &Stacked Bars 3
- scatter: S&catter Plot 4
- scatter pie: Sc&atter-Pie 5
-
- window: &Window
- new window: &New Window
- cards tab: &Cards F5
- set info tab: &Set Information F6
- style tab: St&yle F7
- keywords tab: &Keywords F8
- stats tab: S&tatistics F9
- random pack tab: &Random Packs
-
- help: &Help
- index: &Index... F1
- website: &Website...
- about: &About Magic Set Editor...
-
- # symbol editor
-
- new symbol: &New... Ctrl+N
- open symbol: &Open... Ctrl+O
- save symbol: &Save Ctrl+S
- save symbol as: Save &As... F12
- store symbol: S&tore Ctrl+Enter
- close symbol editor:Close Alt+F4
-
- duplicate: &Duplicate Ctrl+D
- group: &Group Ctrl+G
- ungroup: &Ungroup Ctrl+U
-
- tool: &Tool
- select: &Select F5
- rotate: &Rotate F6
- points: &Points F7
- basic shapes: &Basic Shapes F8
- symmetry: S&ymmetry F9
- paint: P&aint F10
-
-############################################################## Menu help texts
-help:
- welcome: Welcome to Magic Set Editor
-
- file:
- new set: Create a new set
- open set: Open an existing set
- last opened set: Open '%s'
- save set: Save the set
- save set as: Save the set with a new name
- export: Export the set...
- export html: Export the set to a web page
- export image: Export the selected card to an image file
- export images: Export images for all cards
- export apprentice: Export the set so it can be played with in Apprentice
- export mws: Export the set so it can be played with in Magic Workstation
- check updates: Install/update packages.
- print preview: Shows cards as they will be printed
- print: Print cards from this set
- reload data: Reload all template files (game and style) as well as the set.
- exit: Quits Magic Set Editor; prompts to save the set
-
- edit:
- undo: Undoes the last action
- redo: Redoes the last action
- cut: Move the selected text to the clipboard
- cut card: Move the selected card to the clipboard
- cut keyword: Move the selected keyword to the clipboard
- copy: Place the selected text on the clipboard
- copy card: Place the selected card on the clipboard
- copy keyword: Place the selected keyword on the clipboard
- paste: Inserts the text from the clipboard
- paste card: Inserts the card from the clipboard
- paste keyword: Inserts the keyword from the clipboard
- find: Search the card texts
- find next: Find the next match
- replace: Replace in the card texts
- auto replace: What text should automatically be replaced?
- preferences: Change the configuration of Magic Set Editor
-
- cards:
- previous card: Selects the previous card in the list
- next card: Selects the next card in the list
- add card: Add a new, blank, card to this set
- add cards: Add multiple cards to the set
- remove card: Delete the selected card from this set
- orientation: Orientation of the displayed card
- rotate card: Rotate the card display 90° clockwise
- rotate 0: Display the card with the right side up
- rotate 270: Display the card rotated clockwise
- rotate 90: Display the card rotated counter-clockwise (anti-clockwise for the British)
- rotate 180: Display the card up side down
- card list columns: Select what columns should be shown and in what order.
-
- keywords:
- previous keyword: Selects the previous keyword in the list
- next keyword: Selects the next keyword in the list
- add keyword: Add a new keyword to this set
- remove keyword: Delete the selected keyword from this set
-
- format:
- bold: Makes the selected text bold
- italic: Makes the selected text italic
- symbols: Draws the selected text with symbols
- reminder text: Show reminder text for the selected keyword
- # spelling
- no spelling suggestions: There are no suggestions for correcting this error
-
- graph:
- pie: A pie graph, the size of the slice indicates the number of cards
- bar: A bar graph, the height of the bar indicates the number of cards
- stack: A bar graph with stacked bars
- scatter: A scatter plot, the size indicates the number of cards
- scatter pie: A scatter plot where each item is a small pie graph
-
- window:
- new window: Creates another window to edit the same set
- cards tab: Edit the cards in the set
- set info tab: Edit information about the set, its creator, etc.
- style tab: Change the style of cards
- keywords tab: Define extra keywords for this set
- stats tab: Show statistics about the cards in the set
- random pack tab: Try how the set works out in practice by generating random booster packs.
-
- help:
- index:
- website:
- about:
-
- # Cards panel
- collapse notes: Hide the card notes box
- expand notes: Show the card notes box
- # Random pack panel
- random seed: Different packs will be generated each time.
- fixed seed: Using the same seed number gives the same 'random' packs.
- seed: Seed number for the random generator. Using the same seed number gives the same 'random' packs.
- edit pack type: Double click to edit pack type
- number of packs: The number of %ss to generate
-
- # Preferences
- app language:
- Note: You must restart MSE for the changes to take effect.
- zoom export:
- (When off, the cards are exported
- and copied at 100% size and normal rotation)
-
- # apprentice export
- set code: A set code is a two character code that is used by Apprentice to refer to a set.
-
- # Symbol editor
- new symbol: Create a new symbol
- open symbol: Open a symbol
- save symbol: Save the symbol
- save symbol as: Save the symbol under a diferent filename
- store symbol: Stores the symbol in the set
- close symbol editor:Closes the symbol editor
-
- duplicate: Duplicates the selected shapes
- group: Group the selected shapes together
- ungroup: Break up the selected group
-
- grid: Show gridlines
- snap: Snap shapes and points to gridlines
-
- tool:
- select: Select and move shapes
- rotate: Rotate and shear shapes
- points: Edit control points for a shape in the symbol
- basic shapes: Draw basic shapes, such as rectangles and circles
- symmetry: Add symmetries to the symbol
- paint: Paint on the shape using a paintbrush
-
- select editor:
- merge: Merges this shape with those below it
- subtract: Subtracts this shape from shapes below it, leaves only the area in that shape that is not in this shape
- intersect: Intersects this shape with shapes below it, leaves only the area in both shapes
- difference: Differs this shape from the shapes below it, leaves only the area not in any other shape
- overlap: Place this shape, and its border above shapes below it
- border: Draws this shape as a border
-
- drag to shear: Drag to shear selected %s
- drag to rotate: Drag to rotate selected %s, Ctrl constrains angle to multiples of 15 degrees
- drag to resize: Drag to resize selected %s, Ctrl constrains size
- click to select shape: Click to select shape, drag to move shape, double click to edit shape
-
- ellipse: Draw circles and ellipses
- rectangle: Draw squares and rectangles
- polygon: Draw triangles, pentagons and other regular polygons
- star: Draw stars
- sides: The number of sides of the polygon or points of the star
- drag to draw shape: Drag to resize shape, Ctrl constrains shape, Shift centers shape
- draw ellipse: Click and drag to draw a ellipse, hold Ctrl for a circle
- draw rectangle: Click and drag to draw a rectangle, hold Ctrl for a square
- draw polygon: Click and drag to draw a polygon
- draw star: Click and drag to draw a star
-
- line segment: Makes the selected line segment straight
- curve segment: Makes the selected line segment curved
- free point: Allows the two control points of the point to be moved freely
- smooth point: Makes the selected point smooth by placing the two control points opposite each other
- symmetric point: Makes the selected point symetric
- drag to move curve: Drag to move curve
- drag to move line: Alt + drag to move curve; double click to add a point on this line
- drag to move point: Click and drag to move control point; double click to remove the point
-
- rotation: Rotational symmetry (wheel)
- reflection: Reflectional symmetry (mirror)
- add symmetry: Add symmetries to the symbol
- remove symmetry: Remove this symmetry
- copies: Number of reflections (including the original)
-
- # Card select
- filename format: (Use {card.name} for the name of the card ; The filetype is determined based on the extension)
-
-############################################################## Toolbar
-tool:
- undo: Undo
- redo: Redo
-
- cards tab: Cards
- set info tab: Set info
- style tab: Style
- keywords tab: Keywords
- stats tab: Statistics
- random pack tab: Random
-
- # symbol editor
- store symbol: Store
-
- grid: Grid
- snap: Snap
-
- select: Select
- rotate: Rotate
- points: Points
- basic shapes: Basic Shapes
- symmetry: Symmetry
- paint: Paint
-
- merge: Merge
- subtract: Subtract
- intersect: Intersect
- difference: Difference
- overlap: Overlap
- border: Border
-
- ellipse: Ellipse
- rectangle: Rectangle
- polygon: Polygon
- star: Star
-
- rotation: Rotation
- reflection: Reflection
- add symmetry: Add
- remove symmetry: Remove
-
- line segment: Line
- curve segment: Curve
- free point: Free
- smooth point: Smooth
- symmetric point: Symmetric
-
-############################################################## Toolbar help text
-tooltip:
- cards tab:
- set info tab: Set information
- style tab:
- keywords tab:
- stats tab:
- random pack tab: Random packs
-
- new set: New set
- open set: Open set
- save set: Save set
- export: Export set
-
- cut: Cut
- copy: Copy
- paste: Paste
- undo: Undo%s
- redo: Redo%s
-
- add card: Add card
- remove card: Remove selected card
- rotate card: Rotate card
-
- add keyword: Add keyword
- remove keyword: Remove selected keyword
-
- bold: Bold
- italic: Italic
- symbols: Symbols
- reminder text: Reminder Text
-
- pie: Pie Graph
- bar: Bar Graph
- stack: Stacked Bar Graph
- scatter: Scatter Plot
- scatter pie: Scatter-Pie plot
-
- cards tab:
- set info tab: Set Information
- style tab: Card Style
- keywords tab:
- stats tab:
-
- # symbol editor
- store symbol: Store symbol in set
-
- grid: Show grid
- snap: Snap to grid
-
- select: Select (F5)
- rotate: Rotate (F6)
- points: Points (F7)
- basic shapes: Basic Shapes (F8)
- symmetry: Symmetry (F9)
- paint: Paint on Shape (F10)
-
- merge: Merge with shapes below
- subtract: Subtract from shapes below
- intersect: Intersect with shapes below
- difference: Differ from shapes below
- overlap: Place above other shapes
- border: Draw as a border
-
- ellipse: Circle / Ellipse
- rectangle: Square / Rectangle
- polygon: Polygon
- star: Star
-
- rotation: Rotational symmetry (wheel)
- reflection: Reflectional symmetry (mirror)
- add symmetry: Add symmetry to selected parts
- remove symmetry: Remove this symmetry
-
- line segment: To straigt line
- curve segment: To curve
- free point: Unlock point
- smooth point: Make point smooth
- symmetric point: Make point symmetric
-
-############################################################## Labels in the GUI
-label:
- # Cards tab
- card notes: Card notes:
- # Keywords tab
- keyword: Keyword
- match: Matches
- mode: Mode
- uses: Uses
- reminder: Reminder text
- rules: Additional rules
- standard keyword:
- This is a standard %s keyword, you can not edit it.
- If you make a copy of the keyword your copy will take precedent.
-
- # Style tab
- styling options: Styling options
-
- # Random pack panel
- pack selection: Pack selection
- pack totals: Totals
- pack name: Pack name
- seed: Seed
- total cards: Total
-
- # Open dialogs
- all files All files
-
- # Other set window dialogs
- save changes:
- The set '%s' has changed.
-
- Do you want to save the changes?
-
- # New set window
- game type: &Game type:
- style type: &Card style:
-
- stylesheet not found:
- The set you are trying to open uses the stylesheet "%s".
- This stylesheet is not found on your system, please select an alternative.
-
- # Preferences
- language: Language
- windows: Open sets
- app language: Language of the user interface:
- card display: Card Display
- zoom: &Zoom:
- percent of normal: % of normal size
- external programs: External programs
- apprentice: &Apprentice:
- apprentice exe: Apprentice Executable
- check at startup: Check for new versions at startup
- checking requires internet:
- Checking for updates requires an internet connection.
- When no internet connection is found upates are not checked.
-
- No information is collected when checking for updates.
-
- # Column select
- select columns: Select the columns you want to display
- columns: Columns:
-
- # Card select / images export
- select cards: Cards to export
- selected card count: %s cards will be exported.
- select cards print: Select the cards you want to print
- filename format: &Format:
- filename conflicts: &Handle duplicating filenames:
- export filenames: Filenames
- filename is ignored: (filename is ignored)
-
- # apprentice export
- set code: Set &Code:
- apprentice export cancelled: Export to Apprentice is cancelled
-
- # Html export
- html template: Template:
- html export options:Export options
-
- # Image slicer
- original: Original:
- result: Result:
- size: Size
- original size: &Original Size
- size to fit: Size to &Fit
- force to fit: F&orce to Fit
- custom size: &Custom Size
- selection: Selection
- selection left: &Left
- selection top: &Top
- selection width: &Width
- selection height: &Height
- zoom: Zoom
- fix aspect ratio: Fix aspect ratio (width/height)
- zoom amount: Zoom
- zoom amount x: Zoom &X
- zoom amount y: Zoom &Y
- zoom %: %
- filter: Filter
- sharpen filter: &Sharpen filter
-
- # Auto replace
- auto match: Match
- auto replace: Replace
-
- # Symbol editor
- sides: sides
-
- # Packages window
- package name: Package
- package status: Status
- package action: Action
-
- package conflicts: conflicting modifications
- package modified: local modifications
- package updates: updates available
- package installed: installed
- package installable: not installed
- install package: install
- reinstall package: reinstall
- upgrade package: update
- remove package: remove
-
- installed version: Installed version:
- installable version: Latest version:
- installer size: Size:
- installer status: Status:
- no version: -
-
-############################################################## Buttons/checkboxes/choices in the GUI
-button:
- # Editor
- edit symbol: Edit
- symbol gallery: Gallery
-
- # Style panel
- use for all cards: Use for &all cards
- use custom styling options: Options &specific to this card
-
- # Keywords panel
- insert parameter: Insert Parameter...
- refer parameter: Use Parameter...
-
- # Random pack panel
- generate pack: &Generate Pack
- random seed: &Random Seed
- fixed seed: &Fixed Seed
- add custom pack: Add &Custom Pack...
-
- # Welcome
- new set: New set
- open set: Open set
- check updates: Check updates
- last opened set: Last opened set
-
- # Preferences
- open sets in new window: Open all sets in a new &window
- select: &Select...
- browse: &Browse...
- high quality: &High quality rendering
- show lines: Show &lines around fields
- show editing hints: Show boxes and hints for &editing
- zoom export: Use zoom and rotation settings when e&xporting
- spellcheck enabled: Show &spelling errors on cards
- check now: Check &Now
- always: Always
- if internet connection exists: If internet connection exists
- never: Never
-
- # Column select
- move up: Move &Up
- move down: Move &Down
- show: &Show
- hide: &Hide
-
- # Card select
- export entire set: Entire set
- export generated packs: Generated packs
- export custom cards selection: Custom selection
- select cards: &Select Cards...
- select all: Select &All
- select none: Select &None
- overwrite: Overwrite old files
- keep old: Keep old files
- number: Add a number to the filename
- number overwrite: Add a number to the filename, overwrite previous exports
-
- # Auto replace
- use auto replace: Use auto replace
- add item: &Add
- remove item: &Remove
- defaults: Reset to &Defaults
- enabled: Enabled
- whole word: Match whole word only
-
- # Old style update checker (NOTE: this will be removed in a feature version)
- close: &Close
-
- # Packages window
- keep package: &Don't change
- don't install package: &Don't install
- install package: &Install
- upgrade package: &Update
- reinstall package: Re&install
- remove package: &Remove
- install group: &Install All
- upgrade group: &Upgrade All
- remove group: &Remove All
-
-############################################################## Titles in the GUI
-title:
- magic set editor: Magic Set Editor
- %s - magic set editor: %s - Magic Set Editor
- untitled: Untitled
- about: About Magic Set Editor
- symbol editor: Symbol Editor
- # dialogs
- new set: New Set
- open set: Open Set
- save set: Save Set As
- save image: Save Image
- updates available: Updates Available
- save changes: Save Changes?
- select stylesheet: Select Stylesheet
- #preferences
- preferences: Preferences
- global: Global
- display: Display
- directories: Directories
- updates: Updates
- update check: Update Check
- locate apprentice: Locate Apprentice
- # select
- select columns: Select Columns
- select cards: Select Cards
- select cards export:Select Cards to Export
- # slice
- slice image: Slice Image
- # pack
- custom pack: Custom Pack Type
- # print
- print preview: Print Preview
- # export
- export images: Export Images
- export cancelled: Export Cancelled
- export html: Export to HTML
- save html: Export to HTML
- # auto replace
- auto replaces: Auto Replace
-
- # Package Update Window
- packages window: Package Manager
- installing updates: Installing updates
-
- cannot create file: Cannot create file
-
-############################################################## Action (undo/redo) names
-action:
- # List boxes
- add item: Add %s
- remove item: Remove %s
-
- # Text editor
- typing: Typing
- enter: Enter
- soft line break: Soft line break
- insert symbol: Insert symbol
- backspace: Backspace
- delete: Delete
- cut: Cut
- paste: Paste
- auto replace: Auto Replace
- correct: Spelling Correction
- # Choice/color editors
- change: Change %s
-
- # Symbol Actions
- move: Move %s
- rotate: Rotate %s
- shear: Shear %s
- scale: Resize %s
- duplicate: Duplicate %s
- reorder parts: Reorder
- change combine mode:Change combine mode
- change shape name: Change shape name
- group parts: Group
- ungroup parts: Ungroup
-
- # Symbol Part Actions
- convert to line: Convert to line
- convert to curve: Convert to curve
- lock point: Lock point
- move handle: Move handle
- move curve: Move curve
- add control point: Add control point
- delete point: Delete point
- delete points: Delete points
-
- # Symmetry
- add symmetry: Add symmetry
- #remove symmetry: Remove symmetry
- move symmetry center: Move symmetry center
- move symmetry handle: Change symmetry orientation
- change symmetry type: Change symmetry type
- change symmetry copies: Number of reflections
-
-############################################################## Error messages
-error:
- # File related
- file not found: File not found: '%s' in package '%s'
- file not found package like:
- File not found: '%s' in package '%s'
- If you are trying to open a file from another package, use "/package/filename"
- file parse error:
- Error while parsing file: '%s'
- %s
- package not found: Package not found: '%s'
- package out of date: The package '%s' (version %s) is out of date, version %s is required.
- package too new: The package '%s' (version %s) is not compatible with version %s, required by '%s'
- unable to open output file: Error while saving, unable to open output file
- unable to store file: Error while saving, unable to store file
- dependency not given:
- The package '%s' uses files from the package '%s', but it does not list a dependency.
- To resolve this, add:
- depends on: %s %s
-
- # Script stuff
- has no member: %s has no member '%s'
- can't convert: Can't convert from %s to %s
- has no member value: String "%s" has no member '%s'
- can't convert value: Can't convert "%s" from %s to %s
- unsupported format: Invalid string format: '%s'
- in function:
- %s
- in function %s
- in parameter:
- Parameter %s: %s
- in keyword reminder:
- %s
- in reminder text of keyword '%s'
-
- # Image stuff
- coordinates for blending overlap: Coordinates for blending overlap
- images used for blending must have the same size: Images used for blending must have the same size
-
- # Error from files
- no game specified: No game specified for the %s
- no stylesheet specified for the set: No stylesheet specified for the set
- stylesheet and set refer to different game:
- stylesheet and set don't refer to the same game, this is an error in the stylesheet file
- unsupported field type: Unsupported field type: '%s'
- unsupported fill type: Unsupported fill type: '%s'
- unrecognized value: Unrecognized value: '%s', defaulting to %s
- expected key: Expected key: '%s'
- aborting parsing: Fatal errors encountered, aborting reading.
- newer version:
- %s
- This file is made with a newer version of Magic Set Editor (%s)
- When you open it, some aspects of the file may be lost.
- It is recommended that you upgrade to the latest version.
- Visit http:://magicseteditor.sourceforge.net/
- word list type not found: The word list type "%s" was not found (from a tag)
- pack item not found: The pack item "%s" was not found (from a pack type)
- pack type not found: The pack type "%s" was not found (from a pack type)
-
- # Update checking
- checking updates failed: Checking updates failed.
- no updates: There are no available updates.
-
- # Stats panel
- dimension not found: There is no statistics dimension '%s'
-
- # Random packs
- pack type duplicate name:
- There is already a pack type named '%s'.
- Please choose a different name.
-
- # Package update window
-# checking updates: Checking for updates.
- can't download installer:
- Unable to download installer for package %s from %s.
- Nothing has been installed.
-
- downloading updates: Downloading updates (%d of %d)
- installing updates: Updating packages (%d of %d)
-
- remove packages:
- This will remove %s packages, do you want to continue?
- remove packages modified:
- This will remove %s packages, %s of those have been modified after installing.
- Removing them can not be undone.
-
- Do you want to continue?
- install packages successful: %s package(s) were successfully installed.
- remove packages successful: %s package(s) were successfully removed.
- change packages successful: %s package(s) were successfully changed.
-
- cannot create file: Can not create file '%s', continue installation?
-
-############################################################## Types used in scripts / shape names
-type:
- function: function
- collection: collection
- collection of: collection of %ss
- object: object
- double: real number
- integer: integer number
- string: string
- boolean: boolean
- color: color
- image: image
- date: date
- nil: nothing
-
- # Object types
- package: package
- locale: translation
- game: game
- set: set
- stylesheet: stylesheet
- export template:export template
- symbol: symbol
- card: card
- cards: cards
- field: field
- style: style
- value: value
- keyword: keyword
- keywords: keywords
- pack: pack type
-
- # Symbol editor shapes
- shape: shape
- shapes: shapes
- circle: circle
- ellipse: ellipse
- square: square
- rectangle: rectangle
- triangle: triangle
- rhombus: rhombus
- pentagon: pentagon
- hexagon: hexagon
- polygon: polygon
- star: star
-
- rotation: rotation
- reflection: reflection
- group: group
-
- point: point
- points: points
-
-############################################################## Magic
-package:
- magic.mse-game:
- # Card fields
- name: Name
- cc: CC
- type: Type
- p/t: P/T
- rarity: Rarity
- card name: Card Name
-
- # Set info
-
- # descriptions/help text
-
- magic-mana-*.mse-symbol-font:
- # note: reminder/shortcut must start with a space, otherwise it is used as a shortcut
- # so typing T *anywhere* would insert a symbol (which would be bad)
- menu item T: &Tap symbol T
- menu item Q: &Untap symbol Q
- menu item W: &White mana W
- menu item U: Bl&ue mana U
- menu item B: &Black mana B
- menu item R: &Red mana R
- menu item G: &Green mana G
- menu item S: &Snow mana S
- menu item X: Variable mana &X X
- menu item Y: Variable mana &Y Y
- menu item Z: Variable mana &Z Z
- menu item I: &Infinite mana I
- menu item colorless: &Colorless mana...
- title colorless: Colorless mana
- message colorless: Enter amount of colorless mana:
- menu item half: &Half mana
- menu item |W: &White |W
- menu item |U: Bl&ue |U
- menu item |B: &Black |B
- menu item |R: &Red |R
- menu item |G: &Green |G
- menu item |S: &Snow |S
- menu item 1/2: &Colorless 1/2
- menu item hybrid: H&ybrid mana (two color)
- menu item W/U: White/Blue mana W/U
- menu item U/B: Blue/Black mana U/B
- menu item B/R: Black/Red mana B/R
- menu item R/G: Red/Green mana R/G
- menu item G/W: Green/White mana G/W
- menu item W/B: White/Black mana W/B
- menu item U/R: Blue/Red mana U/R
- menu item B/G: Black/Green mana B/G
- menu item R/W: Red/White mana R/W
- menu item G/U: Green/Blue mana G/U
- menu item hybrid 3: H&ybrid mana (three color)
- menu item W/U/B: White/Blue/Black mana W/U/B
- menu item U/B/R: Blue/Black/Red mana U/B/R
- menu item B/R/G: Black/Red/Green mana B/R/G
- menu item R/G/W: Red/Green/White mana R/G/W
- menu item G/W/U: Green/White/Blue mana G/W/U
- menu item W/B/R: White/Black/Red mana W/B/R
- menu item U/R/G: Blue/Red/Green mana U/R/G
- menu item B/G/W: Black/Green/White mana B/G/W
- menu item R/W/U: Red/White/Blue mana R/W/U
- menu item G/U/B: Green/Blue/Black mana G/U/B
-
+mse version: 0.3.8
+installer group: translations/English
+full name: English
+version: 2008-08-08
+icon: usgb.png
+
+############################################################## Menu items
+menu:
+ file: &File
+ new set: &New... Ctrl+N
+ open set: &Open... Ctrl+O
+ save set: &Save Ctrl+S
+ save set as: Save &As... F12
+ export: &Export
+ export html: &HTML...
+ export image: Card &Image...
+ export images: All Card I&mages...
+ export apprentice: &Apprentice...
+ export mws: Magic &Workstation...
+ check updates: Check &Updates...
+ print preview: Print Pre&view...
+ print: &Print... Ctrl+P
+ reload data: Reload Data Ctrl+F5
+ exit: E&xit Alt+F4
+
+ edit: &Edit
+ undo: &Undo%s Ctrl+Z
+ redo: &Redo%s Ctrl+Y
+ cut: Cu&t Ctrl+X
+ copy: &Copy Ctrl+C
+ paste: &Paste Ctrl+V
+ find: &Find Ctrl+F
+ find next: Find &Next F3
+ replace: R&eplace Ctrl+H
+ auto replace: Auto Rep&lace...
+ preferences: &Preferences...
+
+ cards: &Cards
+ previous card: Select &Previous Card PgUp
+ next card: Select &Next Card PgDn
+ add card: &Add Card Ctrl+Enter
+ add cards: Add &Multiple Cards...
+ remove card: &Delete Selected Card
+ orientation: &Orientation
+ rotate 0: &Normal
+ rotate 270: Rotated 90° &Clockwise
+ rotate 90: Rotated 90° C&ounter Clockwise
+ rotate 180: Rotated 180°, &Up Side Down
+ card list columns: C&ard List Columns...
+
+ keywords: &Keywords
+ previous keyword: Select &Previous Keyword PgUp
+ next keyword: Select &Next Keyword PgDn
+ add keyword: &Add Keyword Ctrl+Enter
+ remove keyword: &Remove Select Keyword Del
+
+ format: F&ormat
+ bold: &Bold Ctrl+B
+ italic: &Italic Ctrl+I
+ symbols: &Symbols Ctrl+M
+ reminder text: &Reminder Text Ctrl+R
+ insert symbol: I&nsert Symbol
+ # spelling
+ no spelling suggestions: (no suggestions)
+
+ graph: &Graph
+ pie: &Pie 1
+ bar: &Bar 2
+ stack: &Stacked Bars 3
+ scatter: S&catter Plot 4
+ scatter pie: Sc&atter-Pie 5
+
+ window: &Window
+ new window: &New Window
+ cards tab: &Cards F5
+ set info tab: &Set Information F6
+ style tab: St&yle F7
+ keywords tab: &Keywords F8
+ stats tab: S&tatistics F9
+ random pack tab: &Random Packs
+
+ help: &Help
+ index: &Index... F1
+ website: &Website...
+ about: &About Magic Set Editor...
+
+ # symbol editor
+
+ new symbol: &New... Ctrl+N
+ open symbol: &Open... Ctrl+O
+ save symbol: &Save Ctrl+S
+ save symbol as: Save &As... F12
+ store symbol: S&tore Ctrl+Enter
+ close symbol editor:Close Alt+F4
+
+ duplicate: &Duplicate Ctrl+D
+ group: &Group Ctrl+G
+ ungroup: &Ungroup Ctrl+U
+
+ tool: &Tool
+ select: &Select F5
+ rotate: &Rotate F6
+ points: &Points F7
+ basic shapes: &Basic Shapes F8
+ symmetry: S&ymmetry F9
+ paint: P&aint F10
+
+############################################################## Menu help texts
+help:
+ welcome: Welcome to Magic Set Editor
+
+ file:
+ new set: Create a new set
+ open set: Open an existing set
+ last opened set: Open '%s'
+ save set: Save the set
+ save set as: Save the set with a new name
+ export: Export the set...
+ export html: Export the set to a web page
+ export image: Export the selected card to an image file
+ export images: Export images for all cards
+ export apprentice: Export the set so it can be played with in Apprentice
+ export mws: Export the set so it can be played with in Magic Workstation
+ check updates: Install/update packages.
+ print preview: Shows cards as they will be printed
+ print: Print cards from this set
+ reload data: Reload all template files (game and style) as well as the set.
+ exit: Quits Magic Set Editor; prompts to save the set
+
+ edit:
+ undo: Undoes the last action
+ redo: Redoes the last action
+ cut: Move the selected text to the clipboard
+ cut card: Move the selected card to the clipboard
+ cut keyword: Move the selected keyword to the clipboard
+ copy: Place the selected text on the clipboard
+ copy card: Place the selected card on the clipboard
+ copy keyword: Place the selected keyword on the clipboard
+ paste: Inserts the text from the clipboard
+ paste card: Inserts the card from the clipboard
+ paste keyword: Inserts the keyword from the clipboard
+ find: Search the card texts
+ find next: Find the next match
+ replace: Replace in the card texts
+ auto replace: What text should automatically be replaced?
+ preferences: Change the configuration of Magic Set Editor
+
+ cards:
+ previous card: Selects the previous card in the list
+ next card: Selects the next card in the list
+ add card: Add a new, blank, card to this set
+ add cards: Add multiple cards to the set
+ remove card: Delete the selected card from this set
+ orientation: Orientation of the displayed card
+ rotate card: Rotate the card display 90° clockwise
+ rotate 0: Display the card with the right side up
+ rotate 270: Display the card rotated clockwise
+ rotate 90: Display the card rotated counter-clockwise (anti-clockwise for the British)
+ rotate 180: Display the card up side down
+ card list columns: Select what columns should be shown and in what order.
+
+ keywords:
+ previous keyword: Selects the previous keyword in the list
+ next keyword: Selects the next keyword in the list
+ add keyword: Add a new keyword to this set
+ remove keyword: Delete the selected keyword from this set
+
+ format:
+ bold: Makes the selected text bold
+ italic: Makes the selected text italic
+ symbols: Draws the selected text with symbols
+ reminder text: Show reminder text for the selected keyword
+ # spelling
+ no spelling suggestions: There are no suggestions for correcting this error
+
+ graph:
+ pie: A pie graph, the size of the slice indicates the number of cards
+ bar: A bar graph, the height of the bar indicates the number of cards
+ stack: A bar graph with stacked bars
+ scatter: A scatter plot, the size indicates the number of cards
+ scatter pie: A scatter plot where each item is a small pie graph
+
+ window:
+ new window: Creates another window to edit the same set
+ cards tab: Edit the cards in the set
+ set info tab: Edit information about the set, its creator, etc.
+ style tab: Change the style of cards
+ keywords tab: Define extra keywords for this set
+ stats tab: Show statistics about the cards in the set
+ random pack tab: Try how the set works out in practice by generating random booster packs.
+
+ help:
+ index:
+ website:
+ about:
+
+ # Cards panel
+ collapse notes: Hide the card notes box
+ expand notes: Show the card notes box
+ # Random pack panel
+ random seed: Different packs will be generated each time.
+ fixed seed: Using the same seed number gives the same 'random' packs.
+ seed: Seed number for the random generator. Using the same seed number gives the same 'random' packs.
+ edit pack type: Double click to edit pack type
+ number of packs: The number of %ss to generate
+
+ # Preferences
+ app language:
+ Note: You must restart MSE for the changes to take effect.
+ zoom export:
+ (When off, the cards are exported
+ and copied at 100% size and normal rotation)
+
+ # apprentice export
+ set code: A set code is a two character code that is used by Apprentice to refer to a set.
+
+ # Symbol editor
+ new symbol: Create a new symbol
+ open symbol: Open a symbol
+ save symbol: Save the symbol
+ save symbol as: Save the symbol under a diferent filename
+ store symbol: Stores the symbol in the set
+ close symbol editor:Closes the symbol editor
+
+ duplicate: Duplicates the selected shapes
+ group: Group the selected shapes together
+ ungroup: Break up the selected group
+
+ grid: Show gridlines
+ snap: Snap shapes and points to gridlines
+
+ tool:
+ select: Select and move shapes
+ rotate: Rotate and shear shapes
+ points: Edit control points for a shape in the symbol
+ basic shapes: Draw basic shapes, such as rectangles and circles
+ symmetry: Add symmetries to the symbol
+ paint: Paint on the shape using a paintbrush
+
+ select editor:
+ merge: Merges this shape with those below it
+ subtract: Subtracts this shape from shapes below it, leaves only the area in that shape that is not in this shape
+ intersect: Intersects this shape with shapes below it, leaves only the area in both shapes
+ difference: Differs this shape from the shapes below it, leaves only the area not in any other shape
+ overlap: Place this shape, and its border above shapes below it
+ border: Draws this shape as a border
+
+ drag to shear: Drag to shear selected %s
+ drag to rotate: Drag to rotate selected %s, Ctrl constrains angle to multiples of 15 degrees
+ drag to resize: Drag to resize selected %s, Ctrl constrains size
+ click to select shape: Click to select shape, drag to move shape, double click to edit shape
+
+ ellipse: Draw circles and ellipses
+ rectangle: Draw squares and rectangles
+ polygon: Draw triangles, pentagons and other regular polygons
+ star: Draw stars
+ sides: The number of sides of the polygon or points of the star
+ drag to draw shape: Drag to resize shape, Ctrl constrains shape, Shift centers shape
+ draw ellipse: Click and drag to draw a ellipse, hold Ctrl for a circle
+ draw rectangle: Click and drag to draw a rectangle, hold Ctrl for a square
+ draw polygon: Click and drag to draw a polygon
+ draw star: Click and drag to draw a star
+
+ line segment: Makes the selected line segment straight
+ curve segment: Makes the selected line segment curved
+ free point: Allows the two control points of the point to be moved freely
+ smooth point: Makes the selected point smooth by placing the two control points opposite each other
+ symmetric point: Makes the selected point symetric
+ drag to move curve: Drag to move curve
+ drag to move line: Alt + drag to move curve; double click to add a point on this line
+ drag to move point: Click and drag to move control point; double click to remove the point
+
+ rotation: Rotational symmetry (wheel)
+ reflection: Reflectional symmetry (mirror)
+ add symmetry: Add symmetries to the symbol
+ remove symmetry: Remove this symmetry
+ copies: Number of reflections (including the original)
+
+ # Card select
+ filename format: (Use {card.name} for the name of the card ; The filetype is determined based on the extension)
+
+############################################################## Toolbar
+tool:
+ undo: Undo
+ redo: Redo
+
+ cards tab: Cards
+ set info tab: Set info
+ style tab: Style
+ keywords tab: Keywords
+ stats tab: Statistics
+ random pack tab: Random
+
+ # symbol editor
+ store symbol: Store
+
+ grid: Grid
+ snap: Snap
+
+ select: Select
+ rotate: Rotate
+ points: Points
+ basic shapes: Basic Shapes
+ symmetry: Symmetry
+ paint: Paint
+
+ merge: Merge
+ subtract: Subtract
+ intersect: Intersect
+ difference: Difference
+ overlap: Overlap
+ border: Border
+
+ ellipse: Ellipse
+ rectangle: Rectangle
+ polygon: Polygon
+ star: Star
+
+ rotation: Rotation
+ reflection: Reflection
+ add symmetry: Add
+ remove symmetry: Remove
+
+ line segment: Line
+ curve segment: Curve
+ free point: Free
+ smooth point: Smooth
+ symmetric point: Symmetric
+
+############################################################## Toolbar help text
+tooltip:
+ cards tab:
+ set info tab: Set information
+ style tab:
+ keywords tab:
+ stats tab:
+ random pack tab: Random packs
+
+ new set: New set
+ open set: Open set
+ save set: Save set
+ export: Export set
+
+ cut: Cut
+ copy: Copy
+ paste: Paste
+ undo: Undo%s
+ redo: Redo%s
+
+ add card: Add card
+ remove card: Remove selected card
+ rotate card: Rotate card
+
+ add keyword: Add keyword
+ remove keyword: Remove selected keyword
+
+ bold: Bold
+ italic: Italic
+ symbols: Symbols
+ reminder text: Reminder Text
+
+ pie: Pie Graph
+ bar: Bar Graph
+ stack: Stacked Bar Graph
+ scatter: Scatter Plot
+ scatter pie: Scatter-Pie plot
+
+ cards tab:
+ set info tab: Set Information
+ style tab: Card Style
+ keywords tab:
+ stats tab:
+
+ # symbol editor
+ store symbol: Store symbol in set
+
+ grid: Show grid
+ snap: Snap to grid
+
+ select: Select (F5)
+ rotate: Rotate (F6)
+ points: Points (F7)
+ basic shapes: Basic Shapes (F8)
+ symmetry: Symmetry (F9)
+ paint: Paint on Shape (F10)
+
+ merge: Merge with shapes below
+ subtract: Subtract from shapes below
+ intersect: Intersect with shapes below
+ difference: Differ from shapes below
+ overlap: Place above other shapes
+ border: Draw as a border
+
+ ellipse: Circle / Ellipse
+ rectangle: Square / Rectangle
+ polygon: Polygon
+ star: Star
+
+ rotation: Rotational symmetry (wheel)
+ reflection: Reflectional symmetry (mirror)
+ add symmetry: Add symmetry to selected parts
+ remove symmetry: Remove this symmetry
+
+ line segment: To straigt line
+ curve segment: To curve
+ free point: Unlock point
+ smooth point: Make point smooth
+ symmetric point: Make point symmetric
+
+############################################################## Labels in the GUI
+label:
+ # Cards tab
+ card notes: Card notes:
+ # Keywords tab
+ keyword: Keyword
+ match: Matches
+ mode: Mode
+ uses: Uses
+ reminder: Reminder text
+ rules: Additional rules
+ standard keyword:
+ This is a standard %s keyword, you can not edit it.
+ If you make a copy of the keyword your copy will take precedent.
+
+ # Style tab
+ styling options: Styling options
+
+ # Random pack panel
+ pack selection: Pack selection
+ pack totals: Totals
+ pack name: Pack name
+ seed: Seed
+ total cards: Total
+
+ # Open dialogs
+ all files All files
+
+ # Other set window dialogs
+ save changes:
+ The set '%s' has changed.
+
+ Do you want to save the changes?
+
+ # New set window
+ game type: &Game type:
+ style type: &Card style:
+
+ stylesheet not found:
+ The set you are trying to open uses the stylesheet "%s".
+ This stylesheet is not found on your system, please select an alternative.
+
+ # Preferences
+ language: Language
+ windows: Open sets
+ app language: Language of the user interface:
+ card display: Card Display
+ zoom: &Zoom:
+ percent of normal: % of normal size
+ external programs: External programs
+ apprentice: &Apprentice:
+ apprentice exe: Apprentice Executable
+ check at startup: Check for new versions at startup
+ checking requires internet:
+ Checking for updates requires an internet connection.
+ When no internet connection is found upates are not checked.
+
+ No information is collected when checking for updates.
+
+ # Column select
+ select columns: Select the columns you want to display
+ columns: Columns:
+
+ # Card select / images export
+ select cards: Cards to export
+ selected card count: %s cards will be exported.
+ select cards print: Select the cards you want to print
+ filename format: &Format:
+ filename conflicts: &Handle duplicating filenames:
+ export filenames: Filenames
+ filename is ignored: (filename is ignored)
+
+ # apprentice export
+ set code: Set &Code:
+ apprentice export cancelled: Export to Apprentice is cancelled
+
+ # Html export
+ html template: Template:
+ html export options:Export options
+
+ # Image slicer
+ original: Original:
+ result: Result:
+ size: Size
+ original size: &Original Size
+ size to fit: Size to &Fit
+ force to fit: F&orce to Fit
+ custom size: &Custom Size
+ selection: Selection
+ selection left: &Left
+ selection top: &Top
+ selection width: &Width
+ selection height: &Height
+ zoom: Zoom
+ fix aspect ratio: Fix aspect ratio (width/height)
+ zoom amount: Zoom
+ zoom amount x: Zoom &X
+ zoom amount y: Zoom &Y
+ zoom %: %
+ filter: Filter
+ sharpen filter: &Sharpen filter
+
+ # Auto replace
+ auto match: Match
+ auto replace: Replace
+
+ # Symbol editor
+ sides: sides
+
+ # Packages window
+ package name: Package
+ package status: Status
+ package action: Action
+
+ package conflicts: conflicting modifications
+ package modified: local modifications
+ package updates: updates available
+ package installed: installed
+ package installable: not installed
+ install package: install
+ reinstall package: reinstall
+ upgrade package: update
+ remove package: remove
+
+ installed version: Installed version:
+ installable version: Latest version:
+ installer size: Size:
+ installer status: Status:
+ no version: -
+
+############################################################## Buttons/checkboxes/choices in the GUI
+button:
+ # Editor
+ edit symbol: Edit
+ symbol gallery: Gallery
+
+ # Style panel
+ use for all cards: Use for &all cards
+ use custom styling options: Options &specific to this card
+
+ # Keywords panel
+ insert parameter: Insert Parameter...
+ refer parameter: Use Parameter...
+
+ # Random pack panel
+ generate pack: &Generate Pack
+ random seed: &Random Seed
+ fixed seed: &Fixed Seed
+ add custom pack: Add &Custom Pack...
+
+ # Welcome
+ new set: New set
+ open set: Open set
+ check updates: Check updates
+ last opened set: Last opened set
+
+ # Preferences
+ open sets in new window: Open all sets in a new &window
+ select: &Select...
+ browse: &Browse...
+ high quality: &High quality rendering
+ show lines: Show &lines around fields
+ show editing hints: Show boxes and hints for &editing
+ zoom export: Use zoom and rotation settings when e&xporting
+ spellcheck enabled: Show &spelling errors on cards
+ check now: Check &Now
+ always: Always
+ if internet connection exists: If internet connection exists
+ never: Never
+
+ # Column select
+ move up: Move &Up
+ move down: Move &Down
+ show: &Show
+ hide: &Hide
+
+ # Card select
+ export entire set: Entire set
+ export generated packs: Generated packs
+ export custom cards selection: Custom selection
+ select cards: &Select Cards...
+ select all: Select &All
+ select none: Select &None
+ overwrite: Overwrite old files
+ keep old: Keep old files
+ number: Add a number to the filename
+ number overwrite: Add a number to the filename, overwrite previous exports
+
+ # Auto replace
+ use auto replace: Use auto replace
+ add item: &Add
+ remove item: &Remove
+ defaults: Reset to &Defaults
+ enabled: Enabled
+ whole word: Match whole word only
+
+ # Old style update checker (NOTE: this will be removed in a feature version)
+ close: &Close
+
+ # Packages window
+ keep package: &Don't change
+ don't install package: &Don't install
+ install package: &Install
+ upgrade package: &Update
+ reinstall package: Re&install
+ remove package: &Remove
+ install group: &Install All
+ upgrade group: &Upgrade All
+ remove group: &Remove All
+
+############################################################## Titles in the GUI
+title:
+ magic set editor: Magic Set Editor
+ %s - magic set editor: %s - Magic Set Editor
+ untitled: Untitled
+ about: About Magic Set Editor
+ symbol editor: Symbol Editor
+ # dialogs
+ new set: New Set
+ open set: Open Set
+ save set: Save Set As
+ save image: Save Image
+ updates available: Updates Available
+ save changes: Save Changes?
+ select stylesheet: Select Stylesheet
+ #preferences
+ preferences: Preferences
+ global: Global
+ display: Display
+ directories: Directories
+ updates: Updates
+ update check: Update Check
+ locate apprentice: Locate Apprentice
+ # select
+ select columns: Select Columns
+ select cards: Select Cards
+ select cards export:Select Cards to Export
+ # slice
+ slice image: Slice Image
+ # pack
+ custom pack: Custom Pack Type
+ # print
+ print preview: Print Preview
+ # export
+ export images: Export Images
+ export cancelled: Export Cancelled
+ export html: Export to HTML
+ save html: Export to HTML
+ # auto replace
+ auto replaces: Auto Replace
+
+ # Package Update Window
+ packages window: Package Manager
+ installing updates: Installing updates
+
+ cannot create file: Cannot create file
+
+############################################################## Action (undo/redo) names
+action:
+ # List boxes
+ add item: Add %s
+ remove item: Remove %s
+
+ # Text editor
+ typing: Typing
+ enter: Enter
+ soft line break: Soft line break
+ insert symbol: Insert symbol
+ backspace: Backspace
+ delete: Delete
+ cut: Cut
+ paste: Paste
+ auto replace: Auto Replace
+ correct: Spelling Correction
+ # Choice/color editors
+ change: Change %s
+
+ # Symbol Actions
+ move: Move %s
+ rotate: Rotate %s
+ shear: Shear %s
+ scale: Resize %s
+ duplicate: Duplicate %s
+ reorder parts: Reorder
+ change combine mode:Change combine mode
+ change shape name: Change shape name
+ group parts: Group
+ ungroup parts: Ungroup
+
+ # Symbol Part Actions
+ convert to line: Convert to line
+ convert to curve: Convert to curve
+ lock point: Lock point
+ move handle: Move handle
+ move curve: Move curve
+ add control point: Add control point
+ delete point: Delete point
+ delete points: Delete points
+
+ # Symmetry
+ add symmetry: Add symmetry
+ #remove symmetry: Remove symmetry
+ move symmetry center: Move symmetry center
+ move symmetry handle: Change symmetry orientation
+ change symmetry type: Change symmetry type
+ change symmetry copies: Number of reflections
+
+############################################################## Error messages
+error:
+ # File related
+ file not found: File not found: '%s' in package '%s'
+ file not found package like:
+ File not found: '%s' in package '%s'
+ If you are trying to open a file from another package, use "/package/filename"
+ file parse error:
+ Error while parsing file: '%s'
+ %s
+ package not found: Package not found: '%s'
+ package out of date: The package '%s' (version %s) is out of date, version %s is required.
+ package too new: The package '%s' (version %s) is not compatible with version %s, required by '%s'
+ unable to open output file: Error while saving, unable to open output file
+ unable to store file: Error while saving, unable to store file
+ dependency not given:
+ The package '%s' uses files from the package '%s', but it does not list a dependency.
+ To resolve this, add:
+ depends on: %s %s
+
+ # Script stuff
+ has no member: %s has no member '%s'
+ can't convert: Can't convert from %s to %s
+ has no member value: String "%s" has no member '%s'
+ can't convert value: Can't convert "%s" from %s to %s
+ unsupported format: Invalid string format: '%s'
+ in function:
+ %s
+ in function %s
+ in parameter:
+ Parameter %s: %s
+ in keyword reminder:
+ %s
+ in reminder text of keyword '%s'
+
+ # Image stuff
+ coordinates for blending overlap: Coordinates for blending overlap
+ images used for blending must have the same size: Images used for blending must have the same size
+
+ # Error from files
+ no game specified: No game specified for the %s
+ no stylesheet specified for the set: No stylesheet specified for the set
+ stylesheet and set refer to different game:
+ stylesheet and set don't refer to the same game, this is an error in the stylesheet file
+ unsupported field type: Unsupported field type: '%s'
+ unsupported fill type: Unsupported fill type: '%s'
+ unrecognized value: Unrecognized value: '%s', defaulting to %s
+ expected key: Expected key: '%s'
+ aborting parsing: Fatal errors encountered, aborting reading.
+ newer version:
+ %s
+ This file is made with a newer version of Magic Set Editor (%s)
+ When you open it, some aspects of the file may be lost.
+ It is recommended that you upgrade to the latest version.
+ Visit http:://magicseteditor.sourceforge.net/
+ word list type not found: The word list type "%s" was not found (from a tag)
+ pack item not found: The pack item "%s" was not found (from a pack type)
+ pack type not found: The pack type "%s" was not found (from a pack type)
+
+ # Update checking
+ checking updates failed: Checking updates failed.
+ no updates: There are no available updates.
+
+ # Stats panel
+ dimension not found: There is no statistics dimension '%s'
+
+ # Random packs
+ pack type duplicate name:
+ There is already a pack type named '%s'.
+ Please choose a different name.
+
+ # Package update window
+# checking updates: Checking for updates.
+ can't download installer:
+ Unable to download installer for package %s from %s.
+ Nothing has been installed.
+
+ downloading updates: Downloading updates (%d of %d)
+ installing updates: Updating packages (%d of %d)
+
+ remove packages:
+ This will remove %s packages, do you want to continue?
+ remove packages modified:
+ This will remove %s packages, %s of those have been modified after installing.
+ Removing them can not be undone.
+
+ Do you want to continue?
+ install packages successful: %s package(s) were successfully installed.
+ remove packages successful: %s package(s) were successfully removed.
+ change packages successful: %s package(s) were successfully changed.
+
+ cannot create file: Can not create file '%s', continue installation?
+
+############################################################## Types used in scripts / shape names
+type:
+ function: function
+ collection: collection
+ collection of: collection of %ss
+ object: object
+ double: real number
+ integer: integer number
+ string: string
+ boolean: boolean
+ color: color
+ image: image
+ date: date
+ nil: nothing
+
+ # Object types
+ package: package
+ locale: translation
+ game: game
+ set: set
+ stylesheet: stylesheet
+ export template:export template
+ symbol: symbol
+ card: card
+ cards: cards
+ field: field
+ style: style
+ value: value
+ keyword: keyword
+ keywords: keywords
+ pack: pack type
+
+ # Symbol editor shapes
+ shape: shape
+ shapes: shapes
+ circle: circle
+ ellipse: ellipse
+ square: square
+ rectangle: rectangle
+ triangle: triangle
+ rhombus: rhombus
+ pentagon: pentagon
+ hexagon: hexagon
+ polygon: polygon
+ star: star
+
+ rotation: rotation
+ reflection: reflection
+ group: group
+
+ point: point
+ points: points
+
+############################################################## Magic
+package:
+ magic.mse-game:
+ # Card fields
+ name: Name
+ cc: CC
+ type: Type
+ p/t: P/T
+ rarity: Rarity
+ card name: Card Name
+
+ # Set info
+
+ # descriptions/help text
+
+ magic-mana-*.mse-symbol-font:
+ # note: reminder/shortcut must start with a space, otherwise it is used as a shortcut
+ # so typing T *anywhere* would insert a symbol (which would be bad)
+ menu item T: &Tap symbol T
+ menu item Q: &Untap symbol Q
+ menu item W: &White mana W
+ menu item U: Bl&ue mana U
+ menu item B: &Black mana B
+ menu item R: &Red mana R
+ menu item G: &Green mana G
+ menu item S: &Snow mana S
+ menu item X: Variable mana &X X
+ menu item Y: Variable mana &Y Y
+ menu item Z: Variable mana &Z Z
+ menu item I: &Infinite mana I
+ menu item colorless: &Colorless mana...
+ title colorless: Colorless mana
+ message colorless: Enter amount of colorless mana:
+ menu item half: &Half mana
+ menu item |W: &White |W
+ menu item |U: Bl&ue |U
+ menu item |B: &Black |B
+ menu item |R: &Red |R
+ menu item |G: &Green |G
+ menu item |S: &Snow |S
+ menu item 1/2: &Colorless 1/2
+ menu item hybrid: H&ybrid mana (two color)
+ menu item W/U: White/Blue mana W/U
+ menu item U/B: Blue/Black mana U/B
+ menu item B/R: Black/Red mana B/R
+ menu item R/G: Red/Green mana R/G
+ menu item G/W: Green/White mana G/W
+ menu item W/B: White/Black mana W/B
+ menu item U/R: Blue/Red mana U/R
+ menu item B/G: Black/Green mana B/G
+ menu item R/W: Red/White mana R/W
+ menu item G/U: Green/Blue mana G/U
+ menu item hybrid 3: H&ybrid mana (three color)
+ menu item W/U/B: White/Blue/Black mana W/U/B
+ menu item U/B/R: Blue/Black/Red mana U/B/R
+ menu item B/R/G: Black/Red/Green mana B/R/G
+ menu item R/G/W: Red/Green/White mana R/G/W
+ menu item G/W/U: Green/White/Blue mana G/W/U
+ menu item W/B/R: White/Black/Red mana W/B/R
+ menu item U/R/G: Blue/Red/Green mana U/R/G
+ menu item B/G/W: Black/Green/White mana B/G/W
+ menu item R/W/U: Red/White/Blue mana R/W/U
+ menu item G/U/B: Green/Blue/Black mana G/U/B
+
diff --git a/data/es.mse-locale/locale b/data/es.mse-locale/locale
index a2b3bc91..38bab1cd 100644
--- a/data/es.mse-locale/locale
+++ b/data/es.mse-locale/locale
@@ -1,925 +1,925 @@
-mse version: 0.3.8
-installer group: translations/Español
-full name: Español
-version: 2009-01-15
-icon: es.png
-
-############################################################## Menu items
-menu:
- file: &Archivo
- new set: &Nuevo... Ctrl+N
- open set: &Abrir... Ctrl+O
- save set: &Guardar Ctrl+S
- save set as: Guardar &como... F12
- export: &Exportar
- export html: &HTML...
- export image: &Imagen de carta...
- export images: Todas las i&mágenes...
- export apprentice: &Apprentice...
- export mws: Magic &Workstation...
- check updates: Buscar &actualizaciones...
- print preview: Vista pre&via de impresión...
- print: &Imprimir... Ctrl+P
- reload data: Recargar datos Ctrl+F5
- exit: S&alir Alt+F4
-
- edit: &Editar
- undo: &Deshacer%s Ctrl+Z
- redo: &Rehacer%s Ctrl+Y
- cut: Corta&r Ctrl+X
- copy: &Copiar Ctrl+C
- paste: &Pegar Ctrl+V
- find: &Buscar Ctrl+F
- find next: Buscar &siguiente F3
- replace: R&eemplazar Ctrl+H
- auto replace: Auto-Ree&mplazar...
- preferences: &Preferencias...
-
- cards: &Cartas
- previous card: Seleccionar &carta anterior PgUp
- next card: Seleccionar &siguiente carta PgDn
- add card: &Añadir carta Ctrl+Enter
- add cards: Añadir &múltiples cartas...
- remove card: &Borrar carta seleccionada
- orientation: &Orientación
- rotate 0: &Normal
- rotate 270: Rotado 90° &en sentido horario
- rotate 90: Rotado 90° C&ontrasentido horario
- rotate 180: Rotado 180°, &de arriba a abajo
- card list columns: C&olumnas de listas de cartas...
-
- keywords: &Palabras clave
- previous keyword: Seleccionar &palabra clave anterior PgUp
- next keyword: Seleccionar &siguiente palabra clave PgDn
- add keyword: &Añadir palabra clave Ctrl+Enter
- remove keyword: &Borrar palabra clave seleccionada Del
-
- format: F&ormato
- bold: &Negrita Ctrl+B
- italic: &Cursiva Ctrl+I
- symbols: &Símbolos Ctrl+M
- reminder text: &Texto recordatorio Ctrl+R
- insert symbol: I&nsertar símbolo
-#_ADD # spelling
-#_ADD no spelling suggestions: (no suggestions)
-
- graph: &Gráfico
- pie: &Pie 1
- bar: &Bar 2
- stack: &Barras apiladas 3
- scatter: A&mbulantes parcela 4
- scatter pie: Am&bulantes-Pie 5
-
- window: &Ventana
- new window: &Nueva ventana
- cards tab: &Cartas F5
- set info tab: &Información del set F6
- style tab: St&yle F7
- keywords tab: &Palabras clave F8
- stats tab: E&stadísticas F9
-#_ADD random pack tab: &Random Packs
-
- help: &Ayuda
- index: &Índice... F1
- website: &Página web...
- about: &Sobre Magic Set Editor...
-
- # symbol editor
-
- new symbol: &Nuevo... Ctrl+N
- open symbol: &Abrir... Ctrl+O
- save symbol: &Guardar Ctrl+S
- save symbol as: Guardar &como... F12
- store symbol: A&lmacenar Ctrl+Enter
- close symbol editor:Cerrar Alt+F4
-
- duplicate: &Duplicar Ctrl+D
- group: &Agrupar Ctrl+G
- ungroup: &Desagrupar Ctrl+U
-
- tool: &Herramienta
- select: &Seleccionar F5
- rotate: &Rotar F6
- points: &Puntos F7
- basic shapes: &Formas básicas F8
- symmetry: S&imetría F9
- paint: P&intar F10
-
-############################################################## Menu help texts
-help:
- welcome: Bienvenido a Magic Set Editor
-
- file:
- new set: Crear un nuevo set
- open set: Abrir un set existente
- last opened set: Abrir '%s'
- save set: Guardar el set
- save set as: Guardar el set con un nombre nuevo
- export: Exportar el set...
- export html: Exportar el set a una página web
- export image: Exportar la carta seleccionada a un archivo de imagen
- export images: Exportar las imágenes de todas las cartas
- export apprentice: Exportar el set para que se pueda jugar en Apprentice
- export mws: Exportar el set para que se pueda jugar en Magic Workstation
- check updates: Abrir la ventana de actualización para descargar nuevos paquetes, como juegos, estilos, y locales.
- print preview: Enseña la carta tal y como va a ser impresa
- print: Imprimir cartas de este set
- reload data: Recargar todos los archivos de bocetos (juego y estilo) y el set
- exit: Quita Magic Set Editor; y guarda el set
-
- edit:
- undo: Deshace la última acción
- redo: Rehace la última acción
- cut: Mueve el texto seleccionado al clipboard
- cut card: Mueve la carta seleccionada al clipboard
- cut keyword: Mueve la palabra clave seleccionada al clipboard
- copy: Coloca el texto seleccionado en el clipboard
- copy card: Coloca la carta seleccionada en el clipboard
- copy keyword: Coloca la palabre clave seleccionada en el clipboard
- paste: Inserta el texto del clipboard
- paste card: Inserta la carta del clipboard
- paste keyword: Inserta la palabra clave del clipboard
- find: Busca los textos de la carta
- find next: Busca la siguiente palabra
- replace: Reemplaza en los textos de las cartas
- auto replace: ¿Qué texto debería ser reemplazado automáticamente?
- preferences: Cambia la configuración de Magic Set Editor
-
- cards:
- previous card: Selecciona la carta anterior en la lista
- next card: Selecciona la siguiente carta en la lista
- add card: Añade una carta nueva, vacía, a este set
- add cards: Añade múltiples cartas al set
- remove card: Borra la carta seleccionada de este set
- orientation: Orientación de la carta mostrada
- rotate card: Rota la carta 90° en sentido horario
- rotate 0: Muestra la carta con el lado derecho hacia arriba
- rotate 270: Muestra la carta rotada en sentido horario
- rotate 90: Muestra la carta rotada en contrasentido horario
- rotate 180: Muestra la carta dada la vuelta
- card list columns: Selecciona qué columnas deberían mostrarse y en qué orden.
-
- keywords:
- previous keyword: Selecciona la anterior palabra clave en la lista
- next keyword: Selecciona la siguiente palabra clave en la lista
- add keyword: Añade una nueva palabra clave a este set
- remove keyword: Borra la palabra clave seleccionada de este set
-
- format:
- bold: Pone el texto seleccionado en negrita
- italic: Pone el texto seleccionado en cursiva
- symbols: Dibuja el texto seleccionado con símbolos
- reminder text: Muestra el texto recordatorio de la palabra clave seleccionada
-#_ADD # spelling
-#_ADD no spelling suggestions: There are no suggestions for correcting this error
-
- graph:
- pie: A pie gráfico, el radio de la rodaja indica el número de tarjetas
- bar: Un gráfico de barras, la altura de la barra indica el número de tarjetas
- stack: Un gráfico de barras con las barras apiladas
- scatter: Un gráfico de dispersión, el tamaño indica el número de tarjetas
- scatter pie: Un gráfico de dispersión donde cada tema es un pequeño pastel gráfico
-
- window:
- new window: Crea otra ventana para editar el mismo set
- cards tab: Edita las cartas del set
- set info tab: Edita la información del set, su creador, etc.
- style tab: Cambia el estilo de las cartas
- keywords tab: Define palabras clave extra para este set
- stats tab: Muestra las estadísticas de las cartas en el set
-#_ADD random pack tab: Try how the set works out in practice by generating random booster packs.
-
- help:
- index:
- website:
- about:
-
- # Cards panel
-#_ADD collapse notes: Hide the card notes box
-#_ADD expand notes: Show the card notes box
- # Random pack panel
-#_ADD random seed: Different packs will be generated each time.
-#_ADD fixed seed: Using the same seed number gives the same 'random' packs.
-#_ADD seed: Seed number for the random generator. Using the same seed number gives the same 'random' packs.
-#_ADD edit pack type: Double click to edit pack type
-#_ADD number of packs: The number of %ss to generate
-
- # Preferences
- app language:
- Note: Debes reiniciar MSE para que los cambios hagan efecto.
- zoom export:
- (Cuando está desctivado, las cartas se exportan
- y copian al 100% de su tamaño y una orientación normal)
-
- # apprentice export
- set code: Un código de set es un código de dos caracteres que usa el Apprentice para referirse a un set.
-
- # Symbol editor
- new symbol: Crear un nuevo símbolo
- open symbol: Abre un símbolo
- save symbol: Guarda el símbolo
- save symbol as: Guarda el símbolo bajo un nombre diferente
- store symbol: Almacena el símbolo en el set
- close symbol editor:Cierra el editor de símbolos
-
- duplicate: Duplica las formas seleccionadas
- group: Agrupa las formas seleccionadas
- ungroup: Desagrupa el grupo seleccionado
-
- grid: Muestra las rejillas
- snap: Ajusta las formas y los puntos a las rejillas
-
- tool:
- select: Selecciona y mueve las formas
- rotate: Gira e inclina las formas
- points: Edita los puntos de control de una forma en el símbolo
- basic shapes: Dibuja formas básicas, como rectángulos y círculos
- symmetry: Añade simetría al símbolo
- paint: Pinta en la forma usando un pincel
-
- select editor:
- merge: Fusiona esta forma con las que tiene debajo
- subtract: Resta esta forma con las que tiene debajo, deja sólo el área en la otra forma que no está en este forma
- intersect: Cruza esta forma con las que tiene debajo, deja sólo el área en ambas formas
- difference: Distingue esta forma de las que tiene debajo, deja sólo el área que no hay en ninguna otra forma
- overlap: Coloca esta forma, y su borde encima de las formas que están debajo
- border: Dibuja esta forma como un borde
-
- drag to shear: Arrastra para inclinar la forma seleccionada %s
- drag to rotate: Arrastra para girar la forma seleccionada %s, Ctrl contrae el ángulo en múltiplos de 15 grados
- drag to resize: Arrastra para cambiar el tamaño de la forma seleccionada %s, Ctrl contrae el tamaño
- click to select shape: Pincha para seleccionar la forma, arrastra para mover la forma, pincha dos veces para editar la forma
-
- ellipse: Dibujar círculos y elipses
- rectangle: Dibujar cuadrados y rectángulos
- polygon: Dibujar triángulos, pentágonos y otros polígonos regulares
- star: Dibujar estrellas
- sides: El número de lados del polígono o de puntos de la estrella
- drag to draw shape: Arrastra para cambiar el tamaño de la forma, Ctrl contrae la forma, Mayús centra la forma
- draw ellipse: Pincha y arrastra para dibujar una elipse, mantén Ctrl para un círculo
- draw rectangle: Pincha y arrastra para dibujar un rectángulo, mantén Ctrl para un cuadrado
- draw polygon: Pincha y arrastra para dibujar un polígono
- draw star: Pincha y arrastra para dibujar una estrella
-
- line segment: Hace que el segmento de la línea seleccionada sea recta
- curve segment: Hace que el segmento de la línea seleccionada sea curva
- free point: Permite que los dos puntos de control del punto se muevan libremente
- smooth point: Hace que el punto seleccionado se suavice colocando los dos puntos de control opuestos entre sí
- symmetric point: Hace que el punto seleccionado sea simétrico
- drag to move curve: Arrastra para mover la curva
- drag to move line: Alt + arrastrar para mover la curva; pincha dos veces para añadir un punto a esta línea
- drag to move point: Pincha y arrastra para mover el punto de control; double click to remove the point
-
- rotation: Simetría rotatoria (rueda)
- reflection: Simetría reflejada (espejo)
- add symmetry: Añadir simetría al símbolo
- remove symmetry: Quitar esta simetría
- copies: Número de reflejos (incluido el original)
-
- # Card select
- filename format: (Use {card.name} for the name of the card ; The filetype is determined based on the extension)
-
-############################################################## Toolbar
-tool:
- undo: Deshacer
- redo: Rehacer
-
- cards tab: Cartas
- set info tab: Información del set
- style tab: Estilo
- keywords tab: Palabras clave
- stats tab: Estadísticas
-#_ADD random pack tab: Random
-
- # symbol editor
- store symbol: Almacenar
-
- grid: Rejilla
- snap: Forzar
-
- select: Seleccionar
- rotate: Girar
- points: Puntos
- basic shapes: Formas básicas
- symmetry: Simetría
- paint: Pintar
-
- merge: Fusionar
- subtract: Restar
- intersect: Cruzar
- difference: Diferenciar
- overlap: Superponer
- border: Borde
-
- ellipse: Elipse
- rectangle: Rectángulo
- polygon: Polígono
- star: Estrella
-
- rotation: Rotación
- reflection: Reflexión
- add symmetry: Añadir
- remove symmetry: Quitar
-
- line segment: Línea
- curve segment: Curva
- free point: Libre
- smooth point: Suavizar
- symmetric point: Símetrico
-
-############################################################## Toolbar help text
-tooltip:
- cards tab:
- set info tab: Información del set
- style tab:
- keywords tab:
- stats tab:
-#_ADD random pack tab: Random packs
-
- new set: Nuevo set
- open set: Abrir set
- save set: Guardar set
- export: Exportar set
-
- cut: Cortar
- copy: Copiar
- paste: Pegar
- undo: Deshacer%s
- redo: Rehacer%s
-
- add card: Añadir carta
- remove card: Quitar carta seleccionada
- rotate card: Girar carta
-
- add keyword: Añadir palabra clave
- remove keyword: Quitar palabra clave seleccionada
-
- bold: Negrita
- italic: Cursiva
- symbols: Símbolos
- reminder text: Texto recordatorio
-
- pie: Pie Gráfico
- bar: Gráfico de barras
- stack: Gráfico de barras apiladas
- scatter: Ambulantes parcela
- scatter pie: Ambulantes-Pie parcela
-
- cards tab:
- set info tab: Información del set
- style tab: Estilo de carta
- keywords tab:
- stats tab:
-
- # symbol editor
- store symbol: Almacenar símbolo en el set
-
- grid: Mostrar rejilla
- snap: Forzar a la rejilla
-
- select: Seleccionar (F5)
- rotate: Girar (F6)
- points: Puntos (F7)
- basic shapes: Formas básicas (F8)
- symmetry: Simetría (F9)
- paint: Pintar sobre la forma (F10)
-
- merge: Fusionar con las formas de abajo
- subtract: Restar de las formas de abajo
- intersect: Cruzar con las formas de abajo
- difference: Diferenciar de las formas de abajo
- overlap: Poner encima de las otras formas
- border: Dibujar como un borde
-
- ellipse: Círculo / Elipse
- rectangle: Cuadrado / Rectángulo
- polygon: Polígono
- star: Estrella
-
- rotation: Simetría rotatoria (rueda)
- reflection: Simetría reflexiva (espejo)
- add symmetry: Añadir simetría a las partes seleccionadas
- remove symmetry: Quitar esta simetría
-
- line segment: Enderezar la línea
- curve segment: Curvar
- free point: Desbloquear punto
- smooth point: Hacer punto suave
- symmetric point: Hacer punto simétrico
-
-############################################################## Labels in the GUI
-label:
- # Cards tab
- card notes: Notas de la carta:
- # Keywords tab
- keyword: Palabra clave
- match: Matches
- mode: Modo
- uses: Usos
- reminder: Texto recordatorio
- rules: Reglas adicionales
- standard keyword:
- Esta es una palabra clave %s estándar, no puedes editarla.
- Si haces una copia de la palabra clave tu copia tendrá preferencia.
-
- # Style tab
- styling options: Opciones de estilo
-
- # Random pack panel
-#_ADD pack selection: Pack selection
-#_ADD pack totals: Totals
-#_ADD pack name: Pack name
-#_ADD seed: Seed
-#_ADD total cards: Total
-
- # Open dialogs
- all files Todos los archivos
-
- # Other set window dialogs
- save changes:
- El set '%s' ha cambiado.
-
- ¿Quieres guardar los cambios?
-
- # New set window
- game type: &Tipo de juego:
- style type: &Estilo de carta:
-
- stylesheet not found:
- El set que estás intentando abrir usa el estilo "%s".
- Este estilo no se encuentra en tu sistema, pof favor selecciona otro.
-
- # Preferences
- language: Idioma
-#_ADD windows: Open sets
- app language: Idioma para la interfaz del usuario:
- card display: Muestra de la carta
- zoom: &Zoom:
- percent of normal: % del tamaño normal
- external programs: Programas externos
- apprentice: &Apprentice:
- apprentice exe: Ejecutable de Apprentice
- check at startup: Buscar nuevas versiones al inicio
- checking requires internet:
- La búsqueda de actualizaciones requiere una conexión a internet.
- Cuando no se encuentra una conexión a internet no se buscan actualizaciones.
-
- No se ha encontrado información en la búsqueda de actualizaciones.
-
- # Column select
- select columns: Seleccionar las columnas que quieres mostrar
- columns: Columnas:
-
- # Card select / images export
-#_ADD select cards: Cards to export
-#_ADD selected card count: %s cards will be exported.
- select cards print: Selecciona las cartas que quieres imprimir
- filename format: &Formato:
- filename conflicts: &Soportar duplicado de nombres de archivos:
- export filenames: Nombres de archivo
- filename is ignored: (filename is ignored)
-
- # apprentice export
- set code: Código &del set:
- apprentice export cancelled: La exportación a Apprentice se ha cancelado
-
- # Html export
- html template: Boceto:
- html export options:Opciones de exportación
-
- # Image slicer
- original: Original:
- result: Resultado:
- size: Tamaño
-#_ADD original size: &Original Size
-#_ADD size to fit: Size to &Fit
-#_ADD force to fit: F&orce to Fit
-#_ADD custom size: &Custom Size
- selection: Selección
-#_ADD selection left: &Left
-#_ADD selection top: &Top
-#_ADD selection width: &Width
-#_ADD selection height: &Height
- zoom: Zoom
-#_ADD fix aspect ratio: Fix aspect ratio (width/height)
-#_ADD zoom amount: Zoom
-#_ADD zoom amount x: Zoom &X
-#_ADD zoom amount y: Zoom &Y
-#_ADD zoom %: %
- filter: Filtro
-#_ADD sharpen filter: &Sharpen filter
-
- # Auto replace
- auto match: Match
- auto replace: Reemplazar
-
- # Symbol editor
- sides: lados
-
- # Packages window
- package name: Paquete
- package status: Situación
- package action: Acción
-
- package conflicts: modificaciones en conflicto
- package modified: modificaciones locales
- package updates: actualizaciones disponibles
- package installed: instalado
- package installable: no se instala
- install package: instalar
-#_ADD reinstall package: reinstall
- upgrade package: actualizar
- remove package: quitar
-
-#_ADD installed version: Installed version:
-#_ADD installable version: Latest version:
-#_ADD installer size: Size:
-#_ADD installer status: Status:
-#_ADD no version: -
-#_ADD
-############################################################## Buttons/checkboxes/choices in the GUI
-button:
- # Editor
- edit symbol: Editar
- symbol gallery: Galería
-
- # Style panel
- use for all cards: Usar en &todas las cartas
- use custom styling options: Opciones &específicas para esta carta
-
- # Keywords panel
- insert parameter: Insertar parámetro...
- refer parameter: Usar parámetro...
-
- # Random pack panel
-#_ADD generate pack: &Generate Pack
-#_ADD random seed: &Random Seed
-#_ADD fixed seed: &Fixed Seed
-#_ADD add custom pack: Add &Custom Pack...
-
- # Welcome
- new set: Nuevo set
- open set: Abrir set
- check updates: Buscar actualizaciones
- last opened set: Último set abierto
-
- # Preferences
-#_ADD open sets in new window: Open all sets in a new &window
- select: &Seleccionar...
- browse: &Buscar...
- high quality: &Renderización de alta calidad
- show lines: Mostrar &líneas alrededor de los campos
- show editing hints: Mostrar cajas y pistas para &editar
- zoom export: Usar las configuraciones de zoom y giro cuando se e&xporte
- check now: Buscar &ahora
- always: Siempre
- if internet connection exists: Si existe conexión de internet
- never: Nunca
-
- # Column select
- move up: Mover &hacia arriba
- move down: Mover &hacia abajo
- show: &Mostrar
- hide: &Ocultar
-
- # Card select
-#_ADD export entire set: Entire set
-#_ADD export generated packs: Generated packs
-#_ADD export custom cards selection: Custom selection
-#_ADD select cards: &Select Cards...
- select all: Seleccionar &todo
- select none: No seleccionar &ninguno
- overwrite: Sobreescribir archivos viejos
- keep old: Mantener archivos viejos
- number: Añadir un número al nombre de archivo
- number overwrite: Añadir un número al nombre de archivo, sobreescribir las exportaciones anteriores
-
- # Auto replace
- use auto replace: Usar auto-reemplazamiento
- add item: &Añadir
- remove item: &Quitar
- defaults: Por &defecto
- enabled: Activado
- whole word: Buscar sólo la palabra entera
-
- # Old style update checker (NOTE: this will be removed in a feature version)
- close: &Cerrar
-
- # Packages window
- keep package: &No cambio
- don't install package: &No instale
- install package: &Instalar
- upgrade package: &Actualizar
-#_ADD reinstall package: Re&install
- remove package: &Quitar
- install group: &Instalar Todos
- upgrade group: &Actualizar Todos
- remove group: &Quitar Todos
-
-############################################################## Titles in the GUI
-title:
- magic set editor: Magic Set Editor
- %s - magic set editor: %s - Magic Set Editor
- untitled: Sin título
- about: Sobre Magic Set Editor
- symbol editor: Editor de símbolos
- # dialogs
- new set: Nuevo Set
- open set: Abrir Set
- save set: Guardar set como
- save image: Guardar imagen
- updates available: Actualizaciones disponibles
- save changes: ¿Guardar los cambios?
- select stylesheet: Seleccionar estilo
- #preferences
- preferences: Preferencias
- global: Global
- display: Pantalla
- directories: Directorios
- updates: Actualizaciones
- update check: Búsqueda de actualizaciones
- locate apprentice: Localizar Apprentice
- # select
- select columns: Seleccionar columnas
- select cards: Seleccionar cartas
- select cards export:Seleccionar cartas a exportar
- # slice
- slice image: Cortar imagen
-#_ADD # pack
-#_ADD custom pack: Custom Pack Type
- # print
- print preview: Vista previa de impresión
- # export
- export images: Exportar imágenes
- export cancelled: Exportación cancelada
- export html: Exportar a HTML
- save html: Exportar a HTML
- # auto replace
- auto replaces: Auto-reemplazar
-
- # Package Update Window TODO: TRANSLATE
- packages window: Package Manager
- installing updates: Installing updates
-
- cannot create file: Cannot create file
-
-############################################################## Action (undo/redo) names
-action:
- # List boxes
- add item: Añadir %s
- remove item: Quitar %s
-
- # Text editor
- typing: Escribir
- enter: Introducir
- soft line break: Soft line break
- insert symbol: Insertar símbolo
- backspace: Backspace
- delete: Borrar
- cut: Cortar
- paste: Pegar
- auto replace: Auto-reemplazar
-#_ADD correct: Spelling Correction
- # Choice/color editors
- change: Cambiar %s
-
- # Symbol Actions
- move: Mover %s
- rotate: Girar %s
- shear: Cortar %s
- scale: Cambiar de tamaño %s
- duplicate: Duplicar %s
- reorder parts: Reordenar
- change combine mode:Cambiar modo combinación
- change shape name: Cambiar nombre de forma
- group parts: Agrupar
- ungroup parts: Desagrupar
-
- # Symbol Part Actions
- convert to line: Convertir en línea
- convert to curve: Convertir en curva
- lock point: Bloquear punto
- move handle: Move handle
- move curve: Mover curva
- add control point: Añadir punto de control
- delete point: Borrar punto
- delete points: Borrar puntos
-
- # Symmetry
- add symmetry: Añadir simetría
- #remove symmetry: Quitar simetría
- move symmetry center: Mover el centro de simetría
- move symmetry handle: Cambiar la orientación de la simetría
- change symmetry type: Cambiar tipo de simetría
- change symmetry copies: Número de reflejos
-
-############################################################## Error messages
-error:
- # File related TODO: TRANSLATE
- file not found: Archivo no encontrado: '%s' in package '%s'
- file not found package like:
- Archivo no encontrado: '%s' in package '%s'
- If you are trying to open a file from another package, use "/package/filename"
- file parse error:
- Error mientras se analiza el archivo: '%s'
- %s
- package not found: Paquete no encontrado: '%s'
- package out of date: El paquete '%s' (versión %s) está desactualizado, se requiere la versión %s.
- package too new: The package '%s' (version %s) is not compatible with version %s, required by '%s'
- unable to open output file: Error guardando, imposible crear el archivo
- unable to store file: Error guardando, imposible almacenar el archivo
- dependency not given:
- The package '%s' uses files from the package '%s', but it does not list a dependency.
- To resolve this, add:
- depends on: %s %s
-
- # Script stuff
- has no member: %s has no member '%s'
- can't convert: No se puede convertir de %s a %s
- has no member value: String "%s" has no member '%s'
- can't convert value: No se puede convertir a "%s" de %s a %s
- unsupported format: Invalid string format: '%s'
- in function:
- %s
- in function %s
- in parameter:
- Parameter %s: %s
- in keyword reminder:
- %s
- in reminder text of keyword '%s'
-
- # Image stuff
- coordinates for blending overlap: Coordinates for blending overlap
- images used for blending must have the same size: Images used for blending must have the same size
-
- # Error from files
- no game specified: No game specified for the %s
- no stylesheet specified for the set: No stylesheet specified for the set
- stylesheet and set refer to different game:
- stylesheet and set don't refer to the same game, this is an error in the stylesheet file
- unsupported field type: Unsupported field type: '%s'
- unsupported fill type: Unsupported fill type: '%s'
- unrecognized value: Valor no reconocido: '%s'
- expected key: Expected key: '%s'
- aborting parsing: Fatal errors encountered, aborting reading.
- newer version:
- %s
- This file is made with a newer version of Magic Set Editor (%s)
- When you open it, some aspects of the file may be lost.
- It is recommended that you upgrade to the latest version.
- Visit http:://magicseteditor.sourceforge.net/
- word list type not found: The word list type %s was not found (from a tag)
-#_ADD pack item not found: The pack item "%s" was not found (from a pack type)
-#_ADD pack type not found: The pack type "%s" was not found (from a pack type)
-
- # Update checking
- checking updates failed: Checking updates failed.
- no updates: There are no available updates.
-
- # Stats panel
- dimension not found: There is no statistics dimension '%s'
-
-#_ADD # Random packs
-#_ADD pack type duplicate name:
- There is already a pack type named '%s'.
- Please choose a different name.
-#_ADD
- # Package update window TODO: TRANSLATE
-# checking updates: Checking for updates.
- can't download installer:
- Unable to download installer for package %s from %s.
- Nothing has been installed.
-
- downloading updates: Downloading updates (%d of %d)
- installing updates: Updating packages (%d of %d)
-
- remove packages:
- This will remove %s packages, do you want to continue?
- remove packages modified:
- This will remove %s packages, %s of those have been modified after installing.
- Removing them can not be undone.
-
- Do you want to continue?
- install packages successful: %s paquete se instaló con éxito.
- remove packages successful: %s paquete se ha eliminado.
- change packages successful: %s los paquetes se ha cambiado correctamente.
-
- cannot create file: Can not create file '%s', continue installation?
-
-############################################################## Types used in scripts / shape names
-type:
- function: función
- collection: colección
- collection of: colección de %ss
- object: objeto
- double: número real
- integer: integer number
- string: string
- boolean: boolean
- color: color
- image: imagen
-#_ADD date: date
- nil: nada
-
- # Object types
- package: paquete
- locale: traducción
- game: juego
- set: set
- stylesheet: estilo
- export template:plantilla de exportación
-#_ADD symbol: symbol
- card: carta
- cards: cartas
- field: field
- style: style
- value: valor
- keyword: palabra clave
- keywords: palabras clave
-#_ADD pack: pack type
-
- # Symbol editor shapes
- shape: forma
- shapes: formas
- circle: círculo
- ellipse: elipse
- square: cuadrado
- rectangle: rectángulo
- triangle: triángulo
- rhombus: rombo
- pentagon: pentágono
- hexagon: hexágono
- polygon: polígono
- star: estrella
-
- rotation: rotación
- reflection: reflexión
- group: grupo
-
- point: punto
- points: puntos
-
-############################################################## Magic
-package:
- magic.mse-game:
- # Card fields
- name: Nombre
- cc: CC
- type: Tipo
- p/t: F/R
- rarity: Rareza
- card name: Nombre de la carta
-
- # Set info
-
- # descriptions/help text
-
- magic-mana-*.mse-symbol-font:
- # note: reminder/shortcut must start with a space, otherwise it is used as a shortcut
- # so typing T *anywhere* would insert a symbol (which would be bad)
- menu item T: &Símbolo de girar T
- menu item Q: &Símbolo de girar contrario Q
- menu item W: &Maná blanco W
- menu item U: Maná az&ul U
- menu item B: &Maná negro B
- menu item R: &Maná rojo R
- menu item G: &Maná verde G
- menu item S: &Maná nevado S
- menu item X: Maná variable &X X
- menu item Y: Maná variable &Y Y
- menu item Z: Maná variable &Z Z
-#_ADD menu item I: &Infinite mana I
- menu item colorless: &Maná incoloro...
- title colorless: Maná incoloro
- message colorless: Introducir cantidad de maná incoloro:
- menu item half: &Medio maná
- menu item |W: &Blanco |W
- menu item |U: Az&ul |U
- menu item |B: &Negro |B
- menu item |R: &Rojo |R
- menu item |G: &Verde |G
- menu item |S: &Nevado |S
- menu item 1/2: &Incoloro 1/2
- menu item hybrid: Maná híbrido (dos colores)
- menu item W/U: Maná Blanco/Azul W/U
- menu item U/B: Maná Azul/Negro U/B
- menu item B/R: Maná Negro/Rojo B/R
- menu item R/G: Maná Rojo/Verde R/G
- menu item G/W: Maná Verde/Blanco G/W
- menu item W/B: Maná Blanco/Negro W/B
- menu item U/R: Maná Azul/Rojo U/R
- menu item B/G: Maná Negro/Verde B/G
- menu item R/W: Maná Rojo/Blanco R/W
- menu item G/U: Maná Verde/Azul G/U
- menu item hybrid 3: Maná híbrido (tres colores)
- menu item W/U/B: Maná Blanco/Azul/Negro W/U/B
- menu item U/B/R: Maná Azul/Negro/Rojo U/B/R
- menu item B/R/G: Maná Negro/Rojo/Verde B/R/G
- menu item R/G/W: Maná Rojo/Verde/Blanco R/G/W
- menu item G/W/U: Maná Verde/Blanco/Azul G/W/U
- menu item W/B/R: Maná Blanco/Negro/Rojo W/B/R
- menu item U/R/G: Maná Azul/Rojo/Verde U/R/G
- menu item B/G/W: Maná Negro/Verde/Blanco B/G/W
- menu item R/W/U: Maná Rojo/Blanco/Azul R/W/U
- menu item G/U/B: Maná Verde/Azul/Negro G/U/B
-
+mse version: 0.3.8
+installer group: translations/Español
+full name: Español
+version: 2009-01-15
+icon: es.png
+
+############################################################## Menu items
+menu:
+ file: &Archivo
+ new set: &Nuevo... Ctrl+N
+ open set: &Abrir... Ctrl+O
+ save set: &Guardar Ctrl+S
+ save set as: Guardar &como... F12
+ export: &Exportar
+ export html: &HTML...
+ export image: &Imagen de carta...
+ export images: Todas las i&mágenes...
+ export apprentice: &Apprentice...
+ export mws: Magic &Workstation...
+ check updates: Buscar &actualizaciones...
+ print preview: Vista pre&via de impresión...
+ print: &Imprimir... Ctrl+P
+ reload data: Recargar datos Ctrl+F5
+ exit: S&alir Alt+F4
+
+ edit: &Editar
+ undo: &Deshacer%s Ctrl+Z
+ redo: &Rehacer%s Ctrl+Y
+ cut: Corta&r Ctrl+X
+ copy: &Copiar Ctrl+C
+ paste: &Pegar Ctrl+V
+ find: &Buscar Ctrl+F
+ find next: Buscar &siguiente F3
+ replace: R&eemplazar Ctrl+H
+ auto replace: Auto-Ree&mplazar...
+ preferences: &Preferencias...
+
+ cards: &Cartas
+ previous card: Seleccionar &carta anterior PgUp
+ next card: Seleccionar &siguiente carta PgDn
+ add card: &Añadir carta Ctrl+Enter
+ add cards: Añadir &múltiples cartas...
+ remove card: &Borrar carta seleccionada
+ orientation: &Orientación
+ rotate 0: &Normal
+ rotate 270: Rotado 90° &en sentido horario
+ rotate 90: Rotado 90° C&ontrasentido horario
+ rotate 180: Rotado 180°, &de arriba a abajo
+ card list columns: C&olumnas de listas de cartas...
+
+ keywords: &Palabras clave
+ previous keyword: Seleccionar &palabra clave anterior PgUp
+ next keyword: Seleccionar &siguiente palabra clave PgDn
+ add keyword: &Añadir palabra clave Ctrl+Enter
+ remove keyword: &Borrar palabra clave seleccionada Del
+
+ format: F&ormato
+ bold: &Negrita Ctrl+B
+ italic: &Cursiva Ctrl+I
+ symbols: &Símbolos Ctrl+M
+ reminder text: &Texto recordatorio Ctrl+R
+ insert symbol: I&nsertar símbolo
+#_ADD # spelling
+#_ADD no spelling suggestions: (no suggestions)
+
+ graph: &Gráfico
+ pie: &Pie 1
+ bar: &Bar 2
+ stack: &Barras apiladas 3
+ scatter: A&mbulantes parcela 4
+ scatter pie: Am&bulantes-Pie 5
+
+ window: &Ventana
+ new window: &Nueva ventana
+ cards tab: &Cartas F5
+ set info tab: &Información del set F6
+ style tab: St&yle F7
+ keywords tab: &Palabras clave F8
+ stats tab: E&stadísticas F9
+#_ADD random pack tab: &Random Packs
+
+ help: &Ayuda
+ index: &Índice... F1
+ website: &Página web...
+ about: &Sobre Magic Set Editor...
+
+ # symbol editor
+
+ new symbol: &Nuevo... Ctrl+N
+ open symbol: &Abrir... Ctrl+O
+ save symbol: &Guardar Ctrl+S
+ save symbol as: Guardar &como... F12
+ store symbol: A&lmacenar Ctrl+Enter
+ close symbol editor:Cerrar Alt+F4
+
+ duplicate: &Duplicar Ctrl+D
+ group: &Agrupar Ctrl+G
+ ungroup: &Desagrupar Ctrl+U
+
+ tool: &Herramienta
+ select: &Seleccionar F5
+ rotate: &Rotar F6
+ points: &Puntos F7
+ basic shapes: &Formas básicas F8
+ symmetry: S&imetría F9
+ paint: P&intar F10
+
+############################################################## Menu help texts
+help:
+ welcome: Bienvenido a Magic Set Editor
+
+ file:
+ new set: Crear un nuevo set
+ open set: Abrir un set existente
+ last opened set: Abrir '%s'
+ save set: Guardar el set
+ save set as: Guardar el set con un nombre nuevo
+ export: Exportar el set...
+ export html: Exportar el set a una página web
+ export image: Exportar la carta seleccionada a un archivo de imagen
+ export images: Exportar las imágenes de todas las cartas
+ export apprentice: Exportar el set para que se pueda jugar en Apprentice
+ export mws: Exportar el set para que se pueda jugar en Magic Workstation
+ check updates: Abrir la ventana de actualización para descargar nuevos paquetes, como juegos, estilos, y locales.
+ print preview: Enseña la carta tal y como va a ser impresa
+ print: Imprimir cartas de este set
+ reload data: Recargar todos los archivos de bocetos (juego y estilo) y el set
+ exit: Quita Magic Set Editor; y guarda el set
+
+ edit:
+ undo: Deshace la última acción
+ redo: Rehace la última acción
+ cut: Mueve el texto seleccionado al clipboard
+ cut card: Mueve la carta seleccionada al clipboard
+ cut keyword: Mueve la palabra clave seleccionada al clipboard
+ copy: Coloca el texto seleccionado en el clipboard
+ copy card: Coloca la carta seleccionada en el clipboard
+ copy keyword: Coloca la palabre clave seleccionada en el clipboard
+ paste: Inserta el texto del clipboard
+ paste card: Inserta la carta del clipboard
+ paste keyword: Inserta la palabra clave del clipboard
+ find: Busca los textos de la carta
+ find next: Busca la siguiente palabra
+ replace: Reemplaza en los textos de las cartas
+ auto replace: ¿Qué texto debería ser reemplazado automáticamente?
+ preferences: Cambia la configuración de Magic Set Editor
+
+ cards:
+ previous card: Selecciona la carta anterior en la lista
+ next card: Selecciona la siguiente carta en la lista
+ add card: Añade una carta nueva, vacía, a este set
+ add cards: Añade múltiples cartas al set
+ remove card: Borra la carta seleccionada de este set
+ orientation: Orientación de la carta mostrada
+ rotate card: Rota la carta 90° en sentido horario
+ rotate 0: Muestra la carta con el lado derecho hacia arriba
+ rotate 270: Muestra la carta rotada en sentido horario
+ rotate 90: Muestra la carta rotada en contrasentido horario
+ rotate 180: Muestra la carta dada la vuelta
+ card list columns: Selecciona qué columnas deberían mostrarse y en qué orden.
+
+ keywords:
+ previous keyword: Selecciona la anterior palabra clave en la lista
+ next keyword: Selecciona la siguiente palabra clave en la lista
+ add keyword: Añade una nueva palabra clave a este set
+ remove keyword: Borra la palabra clave seleccionada de este set
+
+ format:
+ bold: Pone el texto seleccionado en negrita
+ italic: Pone el texto seleccionado en cursiva
+ symbols: Dibuja el texto seleccionado con símbolos
+ reminder text: Muestra el texto recordatorio de la palabra clave seleccionada
+#_ADD # spelling
+#_ADD no spelling suggestions: There are no suggestions for correcting this error
+
+ graph:
+ pie: A pie gráfico, el radio de la rodaja indica el número de tarjetas
+ bar: Un gráfico de barras, la altura de la barra indica el número de tarjetas
+ stack: Un gráfico de barras con las barras apiladas
+ scatter: Un gráfico de dispersión, el tamaño indica el número de tarjetas
+ scatter pie: Un gráfico de dispersión donde cada tema es un pequeño pastel gráfico
+
+ window:
+ new window: Crea otra ventana para editar el mismo set
+ cards tab: Edita las cartas del set
+ set info tab: Edita la información del set, su creador, etc.
+ style tab: Cambia el estilo de las cartas
+ keywords tab: Define palabras clave extra para este set
+ stats tab: Muestra las estadísticas de las cartas en el set
+#_ADD random pack tab: Try how the set works out in practice by generating random booster packs.
+
+ help:
+ index:
+ website:
+ about:
+
+ # Cards panel
+#_ADD collapse notes: Hide the card notes box
+#_ADD expand notes: Show the card notes box
+ # Random pack panel
+#_ADD random seed: Different packs will be generated each time.
+#_ADD fixed seed: Using the same seed number gives the same 'random' packs.
+#_ADD seed: Seed number for the random generator. Using the same seed number gives the same 'random' packs.
+#_ADD edit pack type: Double click to edit pack type
+#_ADD number of packs: The number of %ss to generate
+
+ # Preferences
+ app language:
+ Note: Debes reiniciar MSE para que los cambios hagan efecto.
+ zoom export:
+ (Cuando está desctivado, las cartas se exportan
+ y copian al 100% de su tamaño y una orientación normal)
+
+ # apprentice export
+ set code: Un código de set es un código de dos caracteres que usa el Apprentice para referirse a un set.
+
+ # Symbol editor
+ new symbol: Crear un nuevo símbolo
+ open symbol: Abre un símbolo
+ save symbol: Guarda el símbolo
+ save symbol as: Guarda el símbolo bajo un nombre diferente
+ store symbol: Almacena el símbolo en el set
+ close symbol editor:Cierra el editor de símbolos
+
+ duplicate: Duplica las formas seleccionadas
+ group: Agrupa las formas seleccionadas
+ ungroup: Desagrupa el grupo seleccionado
+
+ grid: Muestra las rejillas
+ snap: Ajusta las formas y los puntos a las rejillas
+
+ tool:
+ select: Selecciona y mueve las formas
+ rotate: Gira e inclina las formas
+ points: Edita los puntos de control de una forma en el símbolo
+ basic shapes: Dibuja formas básicas, como rectángulos y círculos
+ symmetry: Añade simetría al símbolo
+ paint: Pinta en la forma usando un pincel
+
+ select editor:
+ merge: Fusiona esta forma con las que tiene debajo
+ subtract: Resta esta forma con las que tiene debajo, deja sólo el área en la otra forma que no está en este forma
+ intersect: Cruza esta forma con las que tiene debajo, deja sólo el área en ambas formas
+ difference: Distingue esta forma de las que tiene debajo, deja sólo el área que no hay en ninguna otra forma
+ overlap: Coloca esta forma, y su borde encima de las formas que están debajo
+ border: Dibuja esta forma como un borde
+
+ drag to shear: Arrastra para inclinar la forma seleccionada %s
+ drag to rotate: Arrastra para girar la forma seleccionada %s, Ctrl contrae el ángulo en múltiplos de 15 grados
+ drag to resize: Arrastra para cambiar el tamaño de la forma seleccionada %s, Ctrl contrae el tamaño
+ click to select shape: Pincha para seleccionar la forma, arrastra para mover la forma, pincha dos veces para editar la forma
+
+ ellipse: Dibujar círculos y elipses
+ rectangle: Dibujar cuadrados y rectángulos
+ polygon: Dibujar triángulos, pentágonos y otros polígonos regulares
+ star: Dibujar estrellas
+ sides: El número de lados del polígono o de puntos de la estrella
+ drag to draw shape: Arrastra para cambiar el tamaño de la forma, Ctrl contrae la forma, Mayús centra la forma
+ draw ellipse: Pincha y arrastra para dibujar una elipse, mantén Ctrl para un círculo
+ draw rectangle: Pincha y arrastra para dibujar un rectángulo, mantén Ctrl para un cuadrado
+ draw polygon: Pincha y arrastra para dibujar un polígono
+ draw star: Pincha y arrastra para dibujar una estrella
+
+ line segment: Hace que el segmento de la línea seleccionada sea recta
+ curve segment: Hace que el segmento de la línea seleccionada sea curva
+ free point: Permite que los dos puntos de control del punto se muevan libremente
+ smooth point: Hace que el punto seleccionado se suavice colocando los dos puntos de control opuestos entre sí
+ symmetric point: Hace que el punto seleccionado sea simétrico
+ drag to move curve: Arrastra para mover la curva
+ drag to move line: Alt + arrastrar para mover la curva; pincha dos veces para añadir un punto a esta línea
+ drag to move point: Pincha y arrastra para mover el punto de control; double click to remove the point
+
+ rotation: Simetría rotatoria (rueda)
+ reflection: Simetría reflejada (espejo)
+ add symmetry: Añadir simetría al símbolo
+ remove symmetry: Quitar esta simetría
+ copies: Número de reflejos (incluido el original)
+
+ # Card select
+ filename format: (Use {card.name} for the name of the card ; The filetype is determined based on the extension)
+
+############################################################## Toolbar
+tool:
+ undo: Deshacer
+ redo: Rehacer
+
+ cards tab: Cartas
+ set info tab: Información del set
+ style tab: Estilo
+ keywords tab: Palabras clave
+ stats tab: Estadísticas
+#_ADD random pack tab: Random
+
+ # symbol editor
+ store symbol: Almacenar
+
+ grid: Rejilla
+ snap: Forzar
+
+ select: Seleccionar
+ rotate: Girar
+ points: Puntos
+ basic shapes: Formas básicas
+ symmetry: Simetría
+ paint: Pintar
+
+ merge: Fusionar
+ subtract: Restar
+ intersect: Cruzar
+ difference: Diferenciar
+ overlap: Superponer
+ border: Borde
+
+ ellipse: Elipse
+ rectangle: Rectángulo
+ polygon: Polígono
+ star: Estrella
+
+ rotation: Rotación
+ reflection: Reflexión
+ add symmetry: Añadir
+ remove symmetry: Quitar
+
+ line segment: Línea
+ curve segment: Curva
+ free point: Libre
+ smooth point: Suavizar
+ symmetric point: Símetrico
+
+############################################################## Toolbar help text
+tooltip:
+ cards tab:
+ set info tab: Información del set
+ style tab:
+ keywords tab:
+ stats tab:
+#_ADD random pack tab: Random packs
+
+ new set: Nuevo set
+ open set: Abrir set
+ save set: Guardar set
+ export: Exportar set
+
+ cut: Cortar
+ copy: Copiar
+ paste: Pegar
+ undo: Deshacer%s
+ redo: Rehacer%s
+
+ add card: Añadir carta
+ remove card: Quitar carta seleccionada
+ rotate card: Girar carta
+
+ add keyword: Añadir palabra clave
+ remove keyword: Quitar palabra clave seleccionada
+
+ bold: Negrita
+ italic: Cursiva
+ symbols: Símbolos
+ reminder text: Texto recordatorio
+
+ pie: Pie Gráfico
+ bar: Gráfico de barras
+ stack: Gráfico de barras apiladas
+ scatter: Ambulantes parcela
+ scatter pie: Ambulantes-Pie parcela
+
+ cards tab:
+ set info tab: Información del set
+ style tab: Estilo de carta
+ keywords tab:
+ stats tab:
+
+ # symbol editor
+ store symbol: Almacenar símbolo en el set
+
+ grid: Mostrar rejilla
+ snap: Forzar a la rejilla
+
+ select: Seleccionar (F5)
+ rotate: Girar (F6)
+ points: Puntos (F7)
+ basic shapes: Formas básicas (F8)
+ symmetry: Simetría (F9)
+ paint: Pintar sobre la forma (F10)
+
+ merge: Fusionar con las formas de abajo
+ subtract: Restar de las formas de abajo
+ intersect: Cruzar con las formas de abajo
+ difference: Diferenciar de las formas de abajo
+ overlap: Poner encima de las otras formas
+ border: Dibujar como un borde
+
+ ellipse: Círculo / Elipse
+ rectangle: Cuadrado / Rectángulo
+ polygon: Polígono
+ star: Estrella
+
+ rotation: Simetría rotatoria (rueda)
+ reflection: Simetría reflexiva (espejo)
+ add symmetry: Añadir simetría a las partes seleccionadas
+ remove symmetry: Quitar esta simetría
+
+ line segment: Enderezar la línea
+ curve segment: Curvar
+ free point: Desbloquear punto
+ smooth point: Hacer punto suave
+ symmetric point: Hacer punto simétrico
+
+############################################################## Labels in the GUI
+label:
+ # Cards tab
+ card notes: Notas de la carta:
+ # Keywords tab
+ keyword: Palabra clave
+ match: Matches
+ mode: Modo
+ uses: Usos
+ reminder: Texto recordatorio
+ rules: Reglas adicionales
+ standard keyword:
+ Esta es una palabra clave %s estándar, no puedes editarla.
+ Si haces una copia de la palabra clave tu copia tendrá preferencia.
+
+ # Style tab
+ styling options: Opciones de estilo
+
+ # Random pack panel
+#_ADD pack selection: Pack selection
+#_ADD pack totals: Totals
+#_ADD pack name: Pack name
+#_ADD seed: Seed
+#_ADD total cards: Total
+
+ # Open dialogs
+ all files Todos los archivos
+
+ # Other set window dialogs
+ save changes:
+ El set '%s' ha cambiado.
+
+ ¿Quieres guardar los cambios?
+
+ # New set window
+ game type: &Tipo de juego:
+ style type: &Estilo de carta:
+
+ stylesheet not found:
+ El set que estás intentando abrir usa el estilo "%s".
+ Este estilo no se encuentra en tu sistema, pof favor selecciona otro.
+
+ # Preferences
+ language: Idioma
+#_ADD windows: Open sets
+ app language: Idioma para la interfaz del usuario:
+ card display: Muestra de la carta
+ zoom: &Zoom:
+ percent of normal: % del tamaño normal
+ external programs: Programas externos
+ apprentice: &Apprentice:
+ apprentice exe: Ejecutable de Apprentice
+ check at startup: Buscar nuevas versiones al inicio
+ checking requires internet:
+ La búsqueda de actualizaciones requiere una conexión a internet.
+ Cuando no se encuentra una conexión a internet no se buscan actualizaciones.
+
+ No se ha encontrado información en la búsqueda de actualizaciones.
+
+ # Column select
+ select columns: Seleccionar las columnas que quieres mostrar
+ columns: Columnas:
+
+ # Card select / images export
+#_ADD select cards: Cards to export
+#_ADD selected card count: %s cards will be exported.
+ select cards print: Selecciona las cartas que quieres imprimir
+ filename format: &Formato:
+ filename conflicts: &Soportar duplicado de nombres de archivos:
+ export filenames: Nombres de archivo
+ filename is ignored: (filename is ignored)
+
+ # apprentice export
+ set code: Código &del set:
+ apprentice export cancelled: La exportación a Apprentice se ha cancelado
+
+ # Html export
+ html template: Boceto:
+ html export options:Opciones de exportación
+
+ # Image slicer
+ original: Original:
+ result: Resultado:
+ size: Tamaño
+#_ADD original size: &Original Size
+#_ADD size to fit: Size to &Fit
+#_ADD force to fit: F&orce to Fit
+#_ADD custom size: &Custom Size
+ selection: Selección
+#_ADD selection left: &Left
+#_ADD selection top: &Top
+#_ADD selection width: &Width
+#_ADD selection height: &Height
+ zoom: Zoom
+#_ADD fix aspect ratio: Fix aspect ratio (width/height)
+#_ADD zoom amount: Zoom
+#_ADD zoom amount x: Zoom &X
+#_ADD zoom amount y: Zoom &Y
+#_ADD zoom %: %
+ filter: Filtro
+#_ADD sharpen filter: &Sharpen filter
+
+ # Auto replace
+ auto match: Match
+ auto replace: Reemplazar
+
+ # Symbol editor
+ sides: lados
+
+ # Packages window
+ package name: Paquete
+ package status: Situación
+ package action: Acción
+
+ package conflicts: modificaciones en conflicto
+ package modified: modificaciones locales
+ package updates: actualizaciones disponibles
+ package installed: instalado
+ package installable: no se instala
+ install package: instalar
+#_ADD reinstall package: reinstall
+ upgrade package: actualizar
+ remove package: quitar
+
+#_ADD installed version: Installed version:
+#_ADD installable version: Latest version:
+#_ADD installer size: Size:
+#_ADD installer status: Status:
+#_ADD no version: -
+#_ADD
+############################################################## Buttons/checkboxes/choices in the GUI
+button:
+ # Editor
+ edit symbol: Editar
+ symbol gallery: Galería
+
+ # Style panel
+ use for all cards: Usar en &todas las cartas
+ use custom styling options: Opciones &específicas para esta carta
+
+ # Keywords panel
+ insert parameter: Insertar parámetro...
+ refer parameter: Usar parámetro...
+
+ # Random pack panel
+#_ADD generate pack: &Generate Pack
+#_ADD random seed: &Random Seed
+#_ADD fixed seed: &Fixed Seed
+#_ADD add custom pack: Add &Custom Pack...
+
+ # Welcome
+ new set: Nuevo set
+ open set: Abrir set
+ check updates: Buscar actualizaciones
+ last opened set: Último set abierto
+
+ # Preferences
+#_ADD open sets in new window: Open all sets in a new &window
+ select: &Seleccionar...
+ browse: &Buscar...
+ high quality: &Renderización de alta calidad
+ show lines: Mostrar &líneas alrededor de los campos
+ show editing hints: Mostrar cajas y pistas para &editar
+ zoom export: Usar las configuraciones de zoom y giro cuando se e&xporte
+ check now: Buscar &ahora
+ always: Siempre
+ if internet connection exists: Si existe conexión de internet
+ never: Nunca
+
+ # Column select
+ move up: Mover &hacia arriba
+ move down: Mover &hacia abajo
+ show: &Mostrar
+ hide: &Ocultar
+
+ # Card select
+#_ADD export entire set: Entire set
+#_ADD export generated packs: Generated packs
+#_ADD export custom cards selection: Custom selection
+#_ADD select cards: &Select Cards...
+ select all: Seleccionar &todo
+ select none: No seleccionar &ninguno
+ overwrite: Sobreescribir archivos viejos
+ keep old: Mantener archivos viejos
+ number: Añadir un número al nombre de archivo
+ number overwrite: Añadir un número al nombre de archivo, sobreescribir las exportaciones anteriores
+
+ # Auto replace
+ use auto replace: Usar auto-reemplazamiento
+ add item: &Añadir
+ remove item: &Quitar
+ defaults: Por &defecto
+ enabled: Activado
+ whole word: Buscar sólo la palabra entera
+
+ # Old style update checker (NOTE: this will be removed in a feature version)
+ close: &Cerrar
+
+ # Packages window
+ keep package: &No cambio
+ don't install package: &No instale
+ install package: &Instalar
+ upgrade package: &Actualizar
+#_ADD reinstall package: Re&install
+ remove package: &Quitar
+ install group: &Instalar Todos
+ upgrade group: &Actualizar Todos
+ remove group: &Quitar Todos
+
+############################################################## Titles in the GUI
+title:
+ magic set editor: Magic Set Editor
+ %s - magic set editor: %s - Magic Set Editor
+ untitled: Sin título
+ about: Sobre Magic Set Editor
+ symbol editor: Editor de símbolos
+ # dialogs
+ new set: Nuevo Set
+ open set: Abrir Set
+ save set: Guardar set como
+ save image: Guardar imagen
+ updates available: Actualizaciones disponibles
+ save changes: ¿Guardar los cambios?
+ select stylesheet: Seleccionar estilo
+ #preferences
+ preferences: Preferencias
+ global: Global
+ display: Pantalla
+ directories: Directorios
+ updates: Actualizaciones
+ update check: Búsqueda de actualizaciones
+ locate apprentice: Localizar Apprentice
+ # select
+ select columns: Seleccionar columnas
+ select cards: Seleccionar cartas
+ select cards export:Seleccionar cartas a exportar
+ # slice
+ slice image: Cortar imagen
+#_ADD # pack
+#_ADD custom pack: Custom Pack Type
+ # print
+ print preview: Vista previa de impresión
+ # export
+ export images: Exportar imágenes
+ export cancelled: Exportación cancelada
+ export html: Exportar a HTML
+ save html: Exportar a HTML
+ # auto replace
+ auto replaces: Auto-reemplazar
+
+ # Package Update Window TODO: TRANSLATE
+ packages window: Package Manager
+ installing updates: Installing updates
+
+ cannot create file: Cannot create file
+
+############################################################## Action (undo/redo) names
+action:
+ # List boxes
+ add item: Añadir %s
+ remove item: Quitar %s
+
+ # Text editor
+ typing: Escribir
+ enter: Introducir
+ soft line break: Soft line break
+ insert symbol: Insertar símbolo
+ backspace: Backspace
+ delete: Borrar
+ cut: Cortar
+ paste: Pegar
+ auto replace: Auto-reemplazar
+#_ADD correct: Spelling Correction
+ # Choice/color editors
+ change: Cambiar %s
+
+ # Symbol Actions
+ move: Mover %s
+ rotate: Girar %s
+ shear: Cortar %s
+ scale: Cambiar de tamaño %s
+ duplicate: Duplicar %s
+ reorder parts: Reordenar
+ change combine mode:Cambiar modo combinación
+ change shape name: Cambiar nombre de forma
+ group parts: Agrupar
+ ungroup parts: Desagrupar
+
+ # Symbol Part Actions
+ convert to line: Convertir en línea
+ convert to curve: Convertir en curva
+ lock point: Bloquear punto
+ move handle: Move handle
+ move curve: Mover curva
+ add control point: Añadir punto de control
+ delete point: Borrar punto
+ delete points: Borrar puntos
+
+ # Symmetry
+ add symmetry: Añadir simetría
+ #remove symmetry: Quitar simetría
+ move symmetry center: Mover el centro de simetría
+ move symmetry handle: Cambiar la orientación de la simetría
+ change symmetry type: Cambiar tipo de simetría
+ change symmetry copies: Número de reflejos
+
+############################################################## Error messages
+error:
+ # File related TODO: TRANSLATE
+ file not found: Archivo no encontrado: '%s' in package '%s'
+ file not found package like:
+ Archivo no encontrado: '%s' in package '%s'
+ If you are trying to open a file from another package, use "/package/filename"
+ file parse error:
+ Error mientras se analiza el archivo: '%s'
+ %s
+ package not found: Paquete no encontrado: '%s'
+ package out of date: El paquete '%s' (versión %s) está desactualizado, se requiere la versión %s.
+ package too new: The package '%s' (version %s) is not compatible with version %s, required by '%s'
+ unable to open output file: Error guardando, imposible crear el archivo
+ unable to store file: Error guardando, imposible almacenar el archivo
+ dependency not given:
+ The package '%s' uses files from the package '%s', but it does not list a dependency.
+ To resolve this, add:
+ depends on: %s %s
+
+ # Script stuff
+ has no member: %s has no member '%s'
+ can't convert: No se puede convertir de %s a %s
+ has no member value: String "%s" has no member '%s'
+ can't convert value: No se puede convertir a "%s" de %s a %s
+ unsupported format: Invalid string format: '%s'
+ in function:
+ %s
+ in function %s
+ in parameter:
+ Parameter %s: %s
+ in keyword reminder:
+ %s
+ in reminder text of keyword '%s'
+
+ # Image stuff
+ coordinates for blending overlap: Coordinates for blending overlap
+ images used for blending must have the same size: Images used for blending must have the same size
+
+ # Error from files
+ no game specified: No game specified for the %s
+ no stylesheet specified for the set: No stylesheet specified for the set
+ stylesheet and set refer to different game:
+ stylesheet and set don't refer to the same game, this is an error in the stylesheet file
+ unsupported field type: Unsupported field type: '%s'
+ unsupported fill type: Unsupported fill type: '%s'
+ unrecognized value: Valor no reconocido: '%s'
+ expected key: Expected key: '%s'
+ aborting parsing: Fatal errors encountered, aborting reading.
+ newer version:
+ %s
+ This file is made with a newer version of Magic Set Editor (%s)
+ When you open it, some aspects of the file may be lost.
+ It is recommended that you upgrade to the latest version.
+ Visit http:://magicseteditor.sourceforge.net/
+ word list type not found: The word list type %s was not found (from a tag)
+#_ADD pack item not found: The pack item "%s" was not found (from a pack type)
+#_ADD pack type not found: The pack type "%s" was not found (from a pack type)
+
+ # Update checking
+ checking updates failed: Checking updates failed.
+ no updates: There are no available updates.
+
+ # Stats panel
+ dimension not found: There is no statistics dimension '%s'
+
+#_ADD # Random packs
+#_ADD pack type duplicate name:
+ There is already a pack type named '%s'.
+ Please choose a different name.
+#_ADD
+ # Package update window TODO: TRANSLATE
+# checking updates: Checking for updates.
+ can't download installer:
+ Unable to download installer for package %s from %s.
+ Nothing has been installed.
+
+ downloading updates: Downloading updates (%d of %d)
+ installing updates: Updating packages (%d of %d)
+
+ remove packages:
+ This will remove %s packages, do you want to continue?
+ remove packages modified:
+ This will remove %s packages, %s of those have been modified after installing.
+ Removing them can not be undone.
+
+ Do you want to continue?
+ install packages successful: %s paquete se instaló con éxito.
+ remove packages successful: %s paquete se ha eliminado.
+ change packages successful: %s los paquetes se ha cambiado correctamente.
+
+ cannot create file: Can not create file '%s', continue installation?
+
+############################################################## Types used in scripts / shape names
+type:
+ function: función
+ collection: colección
+ collection of: colección de %ss
+ object: objeto
+ double: número real
+ integer: integer number
+ string: string
+ boolean: boolean
+ color: color
+ image: imagen
+#_ADD date: date
+ nil: nada
+
+ # Object types
+ package: paquete
+ locale: traducción
+ game: juego
+ set: set
+ stylesheet: estilo
+ export template:plantilla de exportación
+#_ADD symbol: symbol
+ card: carta
+ cards: cartas
+ field: field
+ style: style
+ value: valor
+ keyword: palabra clave
+ keywords: palabras clave
+#_ADD pack: pack type
+
+ # Symbol editor shapes
+ shape: forma
+ shapes: formas
+ circle: círculo
+ ellipse: elipse
+ square: cuadrado
+ rectangle: rectángulo
+ triangle: triángulo
+ rhombus: rombo
+ pentagon: pentágono
+ hexagon: hexágono
+ polygon: polígono
+ star: estrella
+
+ rotation: rotación
+ reflection: reflexión
+ group: grupo
+
+ point: punto
+ points: puntos
+
+############################################################## Magic
+package:
+ magic.mse-game:
+ # Card fields
+ name: Nombre
+ cc: CC
+ type: Tipo
+ p/t: F/R
+ rarity: Rareza
+ card name: Nombre de la carta
+
+ # Set info
+
+ # descriptions/help text
+
+ magic-mana-*.mse-symbol-font:
+ # note: reminder/shortcut must start with a space, otherwise it is used as a shortcut
+ # so typing T *anywhere* would insert a symbol (which would be bad)
+ menu item T: &Símbolo de girar T
+ menu item Q: &Símbolo de girar contrario Q
+ menu item W: &Maná blanco W
+ menu item U: Maná az&ul U
+ menu item B: &Maná negro B
+ menu item R: &Maná rojo R
+ menu item G: &Maná verde G
+ menu item S: &Maná nevado S
+ menu item X: Maná variable &X X
+ menu item Y: Maná variable &Y Y
+ menu item Z: Maná variable &Z Z
+#_ADD menu item I: &Infinite mana I
+ menu item colorless: &Maná incoloro...
+ title colorless: Maná incoloro
+ message colorless: Introducir cantidad de maná incoloro:
+ menu item half: &Medio maná
+ menu item |W: &Blanco |W
+ menu item |U: Az&ul |U
+ menu item |B: &Negro |B
+ menu item |R: &Rojo |R
+ menu item |G: &Verde |G
+ menu item |S: &Nevado |S
+ menu item 1/2: &Incoloro 1/2
+ menu item hybrid: Maná híbrido (dos colores)
+ menu item W/U: Maná Blanco/Azul W/U
+ menu item U/B: Maná Azul/Negro U/B
+ menu item B/R: Maná Negro/Rojo B/R
+ menu item R/G: Maná Rojo/Verde R/G
+ menu item G/W: Maná Verde/Blanco G/W
+ menu item W/B: Maná Blanco/Negro W/B
+ menu item U/R: Maná Azul/Rojo U/R
+ menu item B/G: Maná Negro/Verde B/G
+ menu item R/W: Maná Rojo/Blanco R/W
+ menu item G/U: Maná Verde/Azul G/U
+ menu item hybrid 3: Maná híbrido (tres colores)
+ menu item W/U/B: Maná Blanco/Azul/Negro W/U/B
+ menu item U/B/R: Maná Azul/Negro/Rojo U/B/R
+ menu item B/R/G: Maná Negro/Rojo/Verde B/R/G
+ menu item R/G/W: Maná Rojo/Verde/Blanco R/G/W
+ menu item G/W/U: Maná Verde/Blanco/Azul G/W/U
+ menu item W/B/R: Maná Blanco/Negro/Rojo W/B/R
+ menu item U/R/G: Maná Azul/Rojo/Verde U/R/G
+ menu item B/G/W: Maná Negro/Verde/Blanco B/G/W
+ menu item R/W/U: Maná Rojo/Blanco/Azul R/W/U
+ menu item G/U/B: Maná Verde/Azul/Negro G/U/B
+
diff --git a/data/fr.mse-locale/locale b/data/fr.mse-locale/locale
index bb3af5c6..5d3b31ca 100644
--- a/data/fr.mse-locale/locale
+++ b/data/fr.mse-locale/locale
@@ -1,924 +1,924 @@
-mse version: 0.3.8
-installer group: translations/Français
-full name: Français
-version: 2009-01-18
-icon: fr.png
-
-############################################################## Menu items
-menu:
- file: &Fichier
- new set: &Nouveau... Ctrl+N
- open set: &Ouvrir... Ctrl+O
- save set: &Sauver Ctrl+S
- save set as: Sauver So&us... F12
- export: &Exporter
- export html: &HTML...
- export image: Une &Image de carte...
- export images: Toutes les I&mages de carte...
- export apprentice: &Apprentice...
- export mws: Magic &Workstation...
- check updates: Verifier les mise à jo&ur...
- print preview: Pré&impression...
- print: &Imprimer... Ctrl+P
- reload data: Recharger données Ctrl+F5
- exit: &Sortie Alt+F4
-
- edit: &Edit
- undo: &Defaire%s Ctrl+Z
- redo: &Refaire%s Ctrl+Y
- cut: Cou&per Ctrl+X
- copy: &Copier Ctrl+C
- paste: Co&ller Ctrl+V
- find: &Rechercher Ctrl+F
- find next: Rechercher &Suivant F3
- replace: R&emplacer Ctrl+H
- auto replace: Remp&lacement auto...
- preferences: &Preferences...
-
- cards: &Cartes
- previous card: Carte &Precedente PgUp
- next card: Carte &Suivante PgDn
- add card: &Ajouter carte Ctrl+Enter
- add cards: Ajouter &Plusieurs Cartes...
- remove card: &Effacer la carte selectionnée
- orientation: &Orientation
- rotate 0: &Normal
- rotate 270: &Rotation 90°
- rotate 90: Rotation 90° &inverse
- rotate 180: R&otation 180°
- card list columns: &Liste des Colonnes...
-
- keywords: &Mot-clefs
- previous keyword: Mot-clef &Precedent PgUp
- next keyword: Mot-clef &Suivant PgDn
- add keyword: &Ajouter mot-clef Ctrl+Enter
- remove keyword: &Efface mot-clef Del
-
- format: F&ormat
- bold: &Gras Ctrl+B
- italic: &Italique Ctrl+I
- symbols: &Symboles Ctrl+M
- reminder text: &Texte de rappel Ctrl+R
- insert symbol: I&nserer Symbole
- # spelling
-#_ADD no spelling suggestions: (no suggestions)
-
- graph: &Diagramme
- pie: &Circulaire 1
- bar: &Rectangles 2
- stack: Rectangles &Empilé 3
- scatter: N&uage de Points 4
- scatter pie: Nu&age de Cercles 5
-
- window: &Fenetre
- new window: &Nouvelle fenetre
- cards tab: &Cartes F5
- set info tab: Information du &Set F6
- style tab: St&yle F7
- keywords tab: &Mot-clef F8
- stats tab: S&tatistiques F9
- random pack tab: &Paquet aléatoire
-
- help: &Aide
- index: &Index... F1
- website: &Website...
- about: &A propos de Magic Set Editor...
-
- # symbol editor
-
- new symbol: &Nouveau... Ctrl+N
- open symbol: &Ouvrir... Ctrl+O
- save symbol: &Sauver Ctrl+S
- save symbol as: Sauver &Sous... F12
- store symbol: &Utiliser Ctrl+Enter
- close symbol editor:Fermer Alt+F4
-
- duplicate: &Dupliquer Ctrl+D
- group: &Grouper Ctrl+G
- ungroup: &Degrouper Ctrl+U
-
- tool: &Outil
- select: &Selectionner F5
- rotate: &Pivoter F6
- points: P&oints F7
- basic shapes: &Formes simples F8
- symmetry: S&ymmetry F9
- paint: P&aindre F10
-
-############################################################## Menu help texts
-help:
- welcome: Bienvenue à Magic Set Editor
-
- file:
- new set: Créer un nouveau set
- open set: Ouvrir un set
- last opened set: Ouvrir '%s'
- save set: Sauver le set
- save set as: Sauver le set sous un nouveau nom
- export: Exporter le set...
- export html: Exporter le set dans une page web
- export image: Exporter la carte selectionnée dans un fichier image
- export images: Exporter l'image de toute les cartes
- export apprentice: Exporter le set pour être utilisé avec Apprentice
- export mws: Exporter le set pour être utilisé avec Magic Workstation
- check updates: Ouvrir une fenêtre de mise à jour pour télécharger les nouveaux packages (jeux, styles, localisations)
- print preview: voir les cartes telles qu'elles vont etre imprimées
- print: Imprimer les cartes de ce set
- reload data: Recharger tout les fichiers template ainsi que le set
- exit: Quitter Magic Set Editor; Vous demandera de sauvegarder le set
-
- edit:
- undo: Annuler la derniere action
- redo: Refaire la derniere action
- cut: Couper le texte selectionné dans le presse-papier
- cut card: Couper la carte selectionnée dans le presse-papier
- cut keyword: Couper le mot-clef selectionnée dans le presse-papier
- copy: Copier le texte selectionné dans le presse-papier
- copy card: Copier la carte selectionnée dans le presse-papier
- copy keyword: Copier le mot-clef selectionnée dans le presse-papier
- paste: Insere le texte depuis le presse-papier
- paste card: Insere la carte depuis le presse-papier
- paste keyword: Insere le mot_clef depuis le presse-papier
- find: Chercher le texte de la carte
- find next: Rechercher suivant
- replace: Remplacer dans le texte de la carte
- auto replace: Quel texte devra etre automatiquement remplacé?
- preferences: Changer la configuration de Magic Set Editor
-
- cards:
- previous card: Choisir la carte précédente dans la liste
- next card: Choisir la carte suivante dans la liste
- add card: Ajouter une nouvelle carte vierge au set
- add cards: Ajouter plusieurs cartes au set
- remove card: Effacer du set la carte sélectionnée
- orientation: Orientation de la carte visualisée
- rotate card: Tourner la carte de 90° dans le sens des aiguilles d'une montre
- rotate 0: Afficher la carte dans son sens original
- rotate 270: Afficher la carte tournée dans le sens des aiguilles d'une montre
- rotate 90: Afficher la carte tournée dans le sens inverse des aiguilles d'une montre
- rotate 180: Afficher la carte à l'envers
- card list columns: Choisir quelles colonnes doivent être montrées et dans quel ordre.
-
- keywords:
- previous keyword: Choisir le Mot-clé précédent dans la liste
- next keyword: Choisir le Mot-clé suivant dans la liste
- add keyword: Ajouter un nouveau Mot-clé au set
- remove keyword: Effacer du set le Mot-clé sélectionné
-
- format:
- bold: Mettre le texte sélectionné en gras
- italic: Mettre le texte sélectionné en italique
- symbols: Mettre le texte selectionné en symboles
- reminder text: Afficher le texte de rappel pour le Mot-clé sélectionné
- # spelling
-#_ADD no spelling suggestions: There are no suggestions for correcting this error
-
- graph:
- pie: Un graphique en secteurs, le rayon de la tranche indique le nombre de cartes
- bar: Un graphique à barres, la hauteur de la barre indique le nombre de cartes
- stack: Un graphique à barres empilées avec des barres
- scatter: Un nuage de points, la taille indique le nombre de cartes
- scatter pie: Un nuage de points où chaque point est un petit graphique en secteurs
-
- window:
- new window: Ouvrir une nouvelle fenêtre pour éditer le même set
- cards tab: Editer les cartes du set
- set info tab: Editer les informations du set, son créateur, etc...
- style tab: Changer le style de la carte
- keywords tab: Definir des Mot-clé supplémentaire pour le set
- stats tab: Voir les statistiques des cartes du set
- random pack tab: Voir comment le set se comporte en pratique en générant un booster au hasard.
-
- help:
- index:
- website:
- about:
-
- # Cards panel
- collapse notes: Cacher les notes des cartes
- expand notes: Montrer les notes des cartes
- # Random pack panel
- random seed: Un paquet différent à chaque fois sera généré.
- fixed seed: Utiliser le même nombre donne le même paquet 'aléatoire'.
- seed: Nombre souche pour le générateur. Utiliser le même nombre donne le même paquet 'aléatoire'.
-#_ADD edit pack type: Double click to edit pack type
-#_ADD number of packs: The number of %ss to generate
-
- # Preferences
- app language:
- Note: Vous devez redémarrer MSE pour que le changement prenne effet.
- zoom export:
- (Quand l'option est décochée, les cartes sont exportées
- et copiées à 100% de leur taille et dans leur rotation normale.)
-
- # apprentice export
- set code: Un set code est un code alpha à 2 caractere utilisé par le logiciel pour referencer le set
-
- # Symbol editor
- new symbol: Créer un nouveau symbole
- open symbol: Ouvrir un symbole
- save symbol: Sauvegarder le symbole
- save symbol as: Sauvegarder le symbole sous un autre nom
- store symbol: Choisir le symbole pour le set courant
- close symbol editor:Fermer l'éditeur de symbole
-
- duplicate: Dupliquer la forme selectionnée
- group: Grouper ensemble les formes sélectionnées
- ungroup: Dégrouper le groupe sélectionné
-
- grid: Montrer la grille
- snap: Coller les formes et les points à la grille
-
- tool:
- select: Choisir et bouger les formes
- rotate: Tourner et modifier les formes
- points: Editer les points de contrôle pour une forme du symbole
- basic shapes: Dessiner des formes simples, comme des rectangles ou des cercles
- symmetry: Ajouter une symétrie au symbole
- paint: Peindre sur la forme en utilisant un pinceau
-
- select editor:
- merge: Fusionner cette formes à celles en dessous
- subtract: Enlever cette forme à celles en dessous, en laissant apparaitre que ce qui n'est pas dans cette forme
- intersect: Intersection de cette forme avec celles en dessous, ne laissant apparaitre que ce qui est dans les deux formes
- difference: Soustraire cette forme à celles en dessous, ne laissant apparaitre que les zonnes qui ne sont dans aucune autre forme
- overlap: Placer cette forme et son contour au dessus des autres formes
- border: Dessiner cette forme en tant que contour
-
- drag to shear: Glisser pour déformer la sélection %s
- drag to rotate: Glisser pour tourner la sélection %s, Ctrl restreind l'angle à un multiple de 15°
- drag to resize: Glisser pour redimensionner la sélection %s, Ctrl contraint la taille
- click to select shape: Cliquer pour sélectionner la forme, glisser pour la déplacer, double-cliquer pour l'éditer
-
- ellipse: Dessiner des cercles et des ellipses
- rectangle: Dessiner des carrés et des rectangles
- polygon: Dessiner des triangles, des pentagones et d'autres polygones réguliers
- star: Dessiner des étoiles
- sides: Nombre de côtés du polygone ou de branche de l'étoile
- drag to draw shape: Glisser pour redimensionner la forme, Ctrl contraint la forme, Shift centre la forme
- draw ellipse: Cliquer-glisser pour dessiner une ellipse, tenir Ctrl pour un cercle
- draw rectangle: Cliquer-glisser pour dessiner un rectangle, tenir Ctrl pour un carré
- draw polygon: Cliquer-glisser pour dessiner un polygone
- draw star: Cliquer-glisser pour dessiner une étoile
-
- line segment: Rendre droit le segment sélectionné
- curve segment: Rendre incurvé le segment sélectionné
- free point: Permet de bouger librement les deux points de contrôle du point
- smooth point: Rend le point selectionné plus lisse en placant les deux points de contrôle opposés l'un à l'autre
- symmetric point: Rends les deux points de contrôle symétriques par le point sélectionné
- drag to move curve: Glisser pour incurver
- drag to move line: Alt + Glisser pour incurver; double cliquer pour ajouter un point sur cette ligne
- drag to move point: Cliquer-glisser pour bouger le point de contrôle; double cliquer pour enlever le point
-
- rotation: Symétrie par rotation (roue)
- reflection: Symétrie par reflection (mirroir)
- add symmetry: Ajouter les symétries au symbole
- remove symmetry: Enlever cette symétrie
- copies: Nombre de réflexion (inclus l'original)
-
- # Card select
- filename format: (Utilisez {card.name} pour le nom de la carte ; Le type de fichier est déterminé, basé par l'extension)
-
-############################################################## Toolbar
-tool:
- undo: Défaire
- redo: Refaire
-
- cards tab: Cartes
- set info tab: Information du set
- style tab: Style de la carte
- keywords tab: Mots-clés
- stats tab: Statistiques
- random pack tab: Aléatoire
-
- # symbol editor
- store symbol: Stocker
-
- grid: Grille
- snap: Attacher
-
- select: Selectionner
- rotate: Rotation
- points: Points
- basic shapes: Forme basiques
- symmetry: Symétrie
- paint: Peinture
-
- merge: Fusionner
- subtract: Enlever
- intersect: Intersection
- difference: Soustraire
- overlap: Remonter
- border: Contour
-
- ellipse: Ellipse
- rectangle: Rectangle
- polygon: Polygone
- star: Etoile
-
- rotation: Rotation
- reflection: Reflection
- add symmetry: Ajouter
- remove symmetry: Supprimer
-
- line segment: Ligne
- curve segment: Courbe
- free point: Libre
- smooth point: Lisse
- symmetric point: Symétrique
-
-############################################################## Toolbar help text
-tooltip:
- cards tab: Cartes
- set info tab: Information du set
- style tab: Style de la carte
- keywords tab: Mots-clés
- stats tab: Statistiques
- random pack tab: Paquets aléatoires
-
- new set: Nouveau set
- open set: Ouvrir un set
- save set: Sauver le set
- export: Exporter le set
-
- cut: Couper
- copy: Copier
- paste: Coller
- undo: Défaire%s
- redo: Refaire%s
-
- add card: Ajouter une carte
- remove card: Supprimer la carte sélectionnée
- rotate card: Tourner la carte
-
- add keyword: Ajouter un Mot-clé
- remove keyword: Supprimer le Mot-clé sélectionné
-
- bold: Gras
- italic: Italique
- symbols: Symboles
- reminder text: Texte de rappel
-
- pie: Circulaire
- bar: Diagramme à barres
- stack: Graphique à barres empilées
- scatter: Nuage de points
- scatter pie: Nuage de cercles
-
- cards tab: Cartes
- set info tab: Information du set
- style tab: Style de la carte
- keywords tab: Mots-clés
- stats tab: Statistiques
-
- # symbol editor
- store symbol: Stocker le symbole dans le set
-
- grid: Voir la grille
- snap: Attacher à la grille
-
- select: Selection (F5)
- rotate: Rotation (F6)
- points: Points (F7)
- basic shapes: Formes basiques (F8)
- symmetry: Symétrie (F9)
- paint: Peinture sur forme (F10)
-
- merge: Fusionner avec les formes dessous
- subtract: Enlever des formes dessous
- intersect: Intersection avec les formes dessous
- difference: Soustraire des formes dessous
- overlap: Remonter sur les autres formes
- border: Dessiner en tant que contour
-
- ellipse: Cercle / Ellipse
- rectangle: Carré / Rectangle
- polygon: Polygone
- star: Etoile
-
- rotation: Symétrie par rotation (roue)
- reflection: Symétrie par réflexion (mirroir)
- add symmetry: Ajouter une symétrie à la partie sélectionnée
- remove symmetry: Supprimer cette symétrie
-
- line segment: Rend droit
- curve segment: Incurver
- free point: Libère le point
- smooth point: Rend le point lisse
- symmetric point: Rend le point symetrique
-
-############################################################## Labels in the GUI
-label:
- # Cards tab
- card notes: Notes de carte:
- # Keywords tab
- keyword: Mot-clé
- match: Correspondance
- mode: Mode
- uses: Utilisation
- reminder: Texte de rappel
- rules: Règles supplémentaire
- standard keyword:
- C'est un mot-clé standard %s, Vous ne pouvez pas l'éditer.
- Si vous faites une copie de ce mot-clé, la copie prendra le pas sur l'original.
-
- # Style tab
- styling options: Options de style
-
- # Random pack panel
- pack selection: Sélection de paquet
- pack totals: Totals
-#_ADD pack name: Pack name
- seed: Source
- total cards: Total
-
- # Open dialogs
- all files Tous les fichier
-
- # Other set window dialogs
- save changes:
- Le set '%s' a changé.
-
- Voulez-vous sauver les changements?
-
- # New set window
- game type: &type de jeu:
- style type: &style de carte:
-
- stylesheet not found:
- Le set que vous essayez d'ouvrir utilise le stylesheet "%s".
- Ce stylesheet n'a pas été trouvé sur votre ordinateur. Selectionnez une alternative.
-
- # Preferences
- language: Langue
-#_ADD windows: Open sets
- app language: Langue de l'interface utilisateur:
- card display: Affichage de carte
- zoom: &Zoom:
- percent of normal: % De la taille normale
- external programs: Programmes externes
- apprentice: &Apprentice:
- apprentice exe: Executable Apprentice
- check at startup: Vérifier les mise à jour au démarrage
- checking requires internet:
- Vous avez besoin d'une connexion internet pour vérifier les mise à jour.
- Il n'y a aucune vérification si vous n'êtes pas connecté à internet.
-
- Aucune information n'est collectée lors de la vérification des mise à jour.
-
- # Column select
- select columns: Sélectionnez les colonnes à afficher
- columns: Colonnes:
-
- # Card select / images export
- select cards: Cartes à exporter
- selected card count: %s cartes seront exportées.
- select cards print: Selectionnez les cartes à imprimmer
- filename format: &Format:
- filename conflicts: &Gestion des doublons de fichiers:
- export filenames: Nom de fichier
- filename is ignored: (Le nom du fichier est ignoré)
-
- # apprentice export
- set code: Set &Code:
- apprentice export cancelled: Exportation vers Apprentice est annulé
-
- # Html export
- html template: Modèle:
- html export options: Options d'exportation
-
- # Image slicer
- original: Original:
- result: Resultat:
- size: Taille
- original size: Taille &originale
- size to fit: &Couper à la taille
- force to fit: F&orcer à la taille
- custom size: &Taille personnalisée
- selection: Selection
- selection left: &Gauche
- selection top: &Haut
- selection width: &Largeur
- selection height: Lo&ngueur
- zoom: Zoom
- fix aspect ratio: Fixer le rapport (largeur/longueur)
- zoom amount: Zoom
- zoom amount x: Zoom &X
- zoom amount y: Zoom &Y
- zoom %: %
- filter: Filtre
- sharpen filter: Filtre de &netteté
-
- # Auto replace
- auto match: Concordance
- auto replace: Remplacer
-
- # Symbol editor
- sides: faces
-
- # Packages window
- package name: Package
- package status: État
- package action: Action
-
- package conflicts: modifications en conflit
- package modified: modifications locales
- package updates: mises à jour disponibles
- package installed: installé
- package installable: pas installé
- install package: installer
-#_ADD reinstall package: reinstall
- upgrade package: upgrader
- remove package: effacer
-
-#_ADD installed version: Installed version:
-#_ADD installable version: Latest version:
-#_ADD installer size: Size:
-#_ADD installer status: Status:
-#_ADD no version: -
-
-############################################################## Buttons/checkboxes/choices in the GUI
-button:
- # Editor
- edit symbol: Editer
- symbol gallery: Gallerie
-
- # Style panel
- use for all cards: Utiliser pour toutes les c&artes
- use custom styling options: Options &specifique à cette carte
-
- # Keywords panel
- insert parameter: Inserer un parametre...
- refer parameter: Utilisee un parametre...
-
- # Random pack panel
- generate pack: &Generer un paquet
- random seed: Source &aléatoire
- fixed seed: Source &fixe
-#_ADD add custom pack: Add &Custom Pack...
-
- # Welcome
- new set: Nouveau set
- open set: Ouvrir un set
- check updates: Vérifier les mise à jour
- last opened set: Dernier set :
-
- # Preferences
-#_ADD open sets in new window: Open all sets in a new &window
- select: &Selectionner...
- browse: &Naviguer...
- high quality: Rendu &haute qualité
- show lines: Voir les &lignes autour des champs
- show editing hints: Voir les étiquettes et les conseils pour l'&edition
- zoom export: Utiliser les paramètres de zoom et de rotation lors de l'e&xportation
- check now: &Verifier maintenant
- always: Toujours
- if internet connection exists: Si il y a une connexion internet
- never: Jamais
-
- # Column select
- move up: M&onter
- move down: &Descendre
- show: &Montrer
- hide: &Cacher
-
- # Card select
- export entire set: Set complet
- export generated packs: Paquets générés
- export custom cards selection: Sélection personalisée
- select cards: &Selection des cartes...
- select all: Selectionner &toutes
- select none: Selectionner &aucune
- overwrite: Ecraser les anciens fichiers
- keep old: Garder les anciens fichiers
- number: Ajouter un numéro au fichier
- number overwrite: Ajouter un numéro au fichier, écraser les exportations précédentes
-
- # Auto replace
- use auto replace: Utiliser le remplacement automatique
- add item: &Ajouter
- remove item: &Supprimer
- defaults: Remettre par &Defaut
- enabled: Activé
- whole word: Mot entier seulement
-
- # Old style update checker (NOTE: this will be removed in a feature version)
- close: &Fermer
-
- # Packages window
- keep package: &Ne pas modifier
- don't install package: &Ne pas installer
- install package: &Installer
- upgrade package: &Upgrader
-#_ADD reinstall package: Re&install
- remove package: &Effacer
- install group: &Installer Tous
- upgrade group: &Upgrader Tous
- remove group: &Effacer Tous
-
-############################################################## Titles in the GUI
-title:
- magic set editor: Magic Set Editor
- %s - magic set editor: %s - Magic Set Editor
- untitled: Sans Titre
- about: A propos de Magic Set Editor
- symbol editor: Editeur de symbole
- # dialogs
- new set: Nouveau set
- open set: Ouvrir un set
- save set: Sauver le set sous
- save image: Sauver image
- updates available: Mise à jour disponible
- save changes: Sauver les changements?
- select stylesheet: Choisir Stylesheet
- #preferences
- preferences: Preferences
- global: Globales
- display: Affichage
- directories: Répertoires
- updates: Mises à jour
- update check: Mise à jour vérifié
- locate apprentice: Chemin pour Apprentice
- # select
- select columns: Selectionner Colonnes
- select cards: Selectionner Cartes
- select cards export:Selectionner Cartes à exporter
- # slice
- slice image: Découper l'image
- # pack
-#_ADD custom pack: Custom Pack Type
- # print
- print preview: Imprimer preview
- # export
- export images: Exporter images
- export cancelled: Export annulé
- export html: Exporter en HTML
- save html: Exporter en HTML
- # auto replace
- auto replaces: Remplacement automatique
-
- # Package Update Window
- packages window: Package Manager
- installing updates: Installe les mises à jours
-
- cannot create file: Ne peut pas créer le fichier
-
-############################################################## Action (undo/redo) names
-action:
- # List boxes
- add item: Ajouter %s
- remove item: Supprimer %s
-
- # Text editor
- typing: Ecrire
- enter: Entrer
- soft line break: Ligne de séparation
- insert symbol: Inserer un symbole
- backspace: Retour
- delete: Effacer
- cut: Couper
- paste: Coller
- auto replace: Remplacement auto
-#_ADD correct: Spelling Correction
- # Choice/color editors
- change: Changer %s
-
- # Symbol Actions
- move: Bouger %s
- rotate: Tourner %s
- shear: Déformer %s
- scale: Taille %s
- duplicate: Dupliquer %s
- reorder parts: Reordonner
- change combine mode:Changer mode de combinaison
- change shape name: Changer nom de forme
- group parts: Grouper
- ungroup parts: Dégrouper
-
- # Symbol Part Actions
- convert to line: Convertir en ligne
- convert to curve: Convertir en courbe
- lock point: Bloquer point
- move handle: Bouger l'ensemble
- move curve: Bouger la courbe
- add control point: Ajouter point de contrôle
- delete point: Supprimer le point
- delete points: Supprimer les points
-
- # Symmetry
- add symmetry: Ajouter symétrie
- #remove symmetry: Supprimer symétrie
- move symmetry center: Déplacer le centre de symétrie
- move symmetry handle: Déplacer l'orientation de symétrie
- change symmetry type: Changer le type de symétrie
- change symmetry copies: Nombre de réflexions
-
-############################################################## Error messages
-error:
- file not found: Fichier non trouvé: '%s' dans le package '%s'
- file not found package like:
- Fichier non trouvé: '%s' dans le package '%s'
- Si vous essayez d'ouvrir un fichier d'un autre package, utilisez "/package/fichier"
- file parse error:
- Erreur lors de l'analyse du fichier: '%s'
- %s
- package not found: Package non trouvé: '%s'
- package out of date: Le package '%s' (version %s) est expiré, la version %s est requise.
- package too new: Le package '%s' (version %s) n'est pas compatible avec la version %s, requise par '%s'
- unable to open output file: Erreur lors de la sauvegarde, Impossible d'ouvrir le fichier de sortie
- unable to store file: Erreur lors de la sauvegarde, Impossible de stocker le fichier
- dependency not given:
- Le package '%s' utilise des fichiers du package '%s', mais il ne liste pas les dépendances.
- Pour résoudre ça, ajoutez:
- depends on: %s %s
-
- # Script stuff
- has no member: %s n'a pas de membre '%s'
- can't convert: Ne peut pas convertir de %s à %s
- has no member value: Ligne "%s" n'a pas de membre '%s'
- can't convert value: Ne peut pas convertir "%s" de %s à %s
- unsupported format: Format de ligne invalide: '%s'
- in function:
- %s
- dans la fonction %s
- in parameter:
- parametre %s: %s
- in keyword reminder:
- %s
- dans le texte de rappel du mot-clé '%s'
-
- # Image stuff
- coordinates for blending overlap: Coordination pour le mélange overlap
- images used for blending must have the same size: Images utilisées pour le mélange doivent avoir la même taille
-
- # Error from files
- no game specified: Pas le jeu spécifié pour le %s
- no stylesheet specified for the set: Pas de stylesheet spécifié pour le set
- stylesheet and set refer to different game:
- le stylesheet et le set ne se réferent pas au même jeu, c'est une erreur dans le fichier stylesheet
- unsupported field type: Champs type: '%s' non supporté
- unsupported fill type: Fichier type: '%s' non supporté
- unrecognized value: Ne reconnait pas la valeur: '%s'
- expected key: Clé attendue: '%s'
- aborting parsing: Erreur fatal rencontrée, annulation de lecture.
- newer version:
- %s
- Ce fichier est fait avec une version plus récente de Magic Set Editor (%s)
- Lors de l'ouverture, certains aspects ont pu être perdus.
- Nous vous recommandons de mettre à jour votre programme.
- Visitez http:://magicseteditor.sourceforge.net/
- word list type not found: La liste de mots de type %s n'a pas été trouvée (from a tag)
- pack item not found: Le paquet item "%s" n'a pas été trouvé (from a pack type)
-#_ADD pack type not found: The pack type "%s" was not found (from a pack type)
-
- # Update checking
- checking updates failed: Impossible de vérifier les mise à jour.
- no updates: Il n'y a pas de mise à jour disponible.
-
- # Stats panel
- dimension not found: Il n'y a pas de statistique de type '%s'
-
- # Random packs
-#_ADD pack type duplicate name:
- There is already a pack type named '%s'.
- Please choose a different name.
-
- # Package update window
-# checking updates: Recherche de mise à jour.
- can't download installer:
- Impossible de télécharger l'installateur pour le package %s de %s.
- Rien n'a été installé.
-
- downloading updates: Téléchargement de mise à jour(%d de %d)
- installing updates: Mise à jour packages (%d de %d)
-
- remove packages:
- Cela va supprimer %s packages, voulez-vous continuer?
- remove packages modified:
- Cela va supprimer %s packages, dont %s ont été modifiés après leur installation.
- La suppresion ne pourra pas être annulée.
-
- Voulez-vous continuer?
- install packages successful: %s paquets ont été installés avec succès.
- remove packages successful: %s paquets ont été supprimés avec succès.
- change packages successful: %s paquets ont été changé avec succès.
-
- cannot create file: Ne peut pas créer le fichier '%s', continuer l'installation?
-
-############################################################## Types used in scripts / shape names
-type:
- function: fonction
- collection: collection
- collection of: collection de %ss
- object: objet
- double: nombre réel
- integer: nombre entier
- string: ligne
- boolean: boléen
- color: couleur
- image: image
-#_ADD date: date
- nil: rien
-
- # Object types
- package: package
- locale: traduction
- game: jeu
- set: set
- stylesheet: stylesheet
- export template:exporte modèle
- symbol: symbole
- card: carte
- cards: cartes
- field: champ
- style: style
- value: valeur
- keyword: mot-clé
- keywords: mots-clés
-#_ADD pack: pack type
-
- # Symbol editor shapes
- shape: forme
- shapes: formes
- circle: cercle
- ellipse: ellipse
- square: carré
- rectangle: rectangle
- triangle: triangle
- rhombus: rhombus
- pentagon: pentagone
- hexagon: hexagone
- polygon: polygone
- star: etoile
-
- rotation: rotation
- reflection: reflection
- group: groupe
-
- point: point
- points: points
-
-############################################################## Magic
-package:
- magic.mse-game:
- # Card fields
- name: Nom
- cc: CC
- type: Type
- p/t: P/T
- rarity: Rareté
- card name: Nom de la carte
-
- # Set info
-
- # descriptions/help text
-
- magic-mana-*.mse-symbol-font:
- # note: reminder/shortcut must start with a space, otherwise it is used as a shortcut
- # so typing T *anywhere* would insert a symbol (which would be bad)
- menu item T: Symbole d'engagement &T T
- menu item Q: Symbole de dégagement &Q Q
- menu item W: Mana &W Blanc W
- menu item U: Mana &U Bleu U
- menu item B: Mana &B Noir B
- menu item R: Mana &R Rouge R
- menu item G: Mana &G Vert G
- menu item S: Mana &S neigeux S
- menu item X: Mana Variable &X X
- menu item Y: Mana Variable &Y Y
- menu item Z: Mana Variable &Z Z
- menu item I: Mana Infini &I I
- menu item colorless: Mana In&colore...
- title colorless: Mana Incolore
- message colorless: Entrez le montant de mana incolore:
- menu item half: &Demi mana
- menu item |W: &W Blanc |W
- menu item |U: &U Bleu |U
- menu item |B: &B Noir |B
- menu item |R: &R Rouge |R
- menu item |G: &G Vert |G
- menu item |S: &S Neigeux |S
- menu item 1/2: Sans &Couleur 1/2
- menu item hybrid: Mana H&ybride (Deux couleurs)
- menu item W/U: mana Blanc/Bleu W/U
- menu item U/B: mana Bleu/Noir U/B
- menu item B/R: mana Noir/Rouge B/R
- menu item R/G: mana Rouge/Vert R/G
- menu item G/W: mana Vert/Blanc G/W
- menu item W/B: mana Blanc/Noir W/B
- menu item U/R: mana Bleu/Rouge U/R
- menu item B/G: mana Noir/Vert B/G
- menu item R/W: mana Rouge/Blanc R/W
- menu item G/U: mana Vert/Bleu G/U
- menu item hybrid 3: Mana H&ybride (Trois couleurs)
- menu item W/U/B: mana Blanc/Bleu/Noir W/U/B
- menu item U/B/R: mana Bleu/Noir/Rouge U/B/R
- menu item B/R/G: mana Noir/Rouge/Vert B/R/G
- menu item R/G/W: mana Rouge/Vert/Blanc R/G/W
- menu item G/W/U: mana Vert/Blanc/Bleu G/W/U
- menu item W/B/R: mana Blanc/Noir/Rouge W/B/R
- menu item U/R/G: mana Bleu/Rouge/Vert U/R/G
- menu item B/G/W: mana Noir/Vert/Blanc B/G/W
- menu item R/W/U: mana Rouge/Blanc/Bleu R/W/U
- menu item G/U/B: mana Vert/Bleu/Noir G/U/B
-
+mse version: 0.3.8
+installer group: translations/Français
+full name: Français
+version: 2009-01-18
+icon: fr.png
+
+############################################################## Menu items
+menu:
+ file: &Fichier
+ new set: &Nouveau... Ctrl+N
+ open set: &Ouvrir... Ctrl+O
+ save set: &Sauver Ctrl+S
+ save set as: Sauver So&us... F12
+ export: &Exporter
+ export html: &HTML...
+ export image: Une &Image de carte...
+ export images: Toutes les I&mages de carte...
+ export apprentice: &Apprentice...
+ export mws: Magic &Workstation...
+ check updates: Verifier les mise à jo&ur...
+ print preview: Pré&impression...
+ print: &Imprimer... Ctrl+P
+ reload data: Recharger données Ctrl+F5
+ exit: &Sortie Alt+F4
+
+ edit: &Edit
+ undo: &Defaire%s Ctrl+Z
+ redo: &Refaire%s Ctrl+Y
+ cut: Cou&per Ctrl+X
+ copy: &Copier Ctrl+C
+ paste: Co&ller Ctrl+V
+ find: &Rechercher Ctrl+F
+ find next: Rechercher &Suivant F3
+ replace: R&emplacer Ctrl+H
+ auto replace: Remp&lacement auto...
+ preferences: &Preferences...
+
+ cards: &Cartes
+ previous card: Carte &Precedente PgUp
+ next card: Carte &Suivante PgDn
+ add card: &Ajouter carte Ctrl+Enter
+ add cards: Ajouter &Plusieurs Cartes...
+ remove card: &Effacer la carte selectionnée
+ orientation: &Orientation
+ rotate 0: &Normal
+ rotate 270: &Rotation 90°
+ rotate 90: Rotation 90° &inverse
+ rotate 180: R&otation 180°
+ card list columns: &Liste des Colonnes...
+
+ keywords: &Mot-clefs
+ previous keyword: Mot-clef &Precedent PgUp
+ next keyword: Mot-clef &Suivant PgDn
+ add keyword: &Ajouter mot-clef Ctrl+Enter
+ remove keyword: &Efface mot-clef Del
+
+ format: F&ormat
+ bold: &Gras Ctrl+B
+ italic: &Italique Ctrl+I
+ symbols: &Symboles Ctrl+M
+ reminder text: &Texte de rappel Ctrl+R
+ insert symbol: I&nserer Symbole
+ # spelling
+#_ADD no spelling suggestions: (no suggestions)
+
+ graph: &Diagramme
+ pie: &Circulaire 1
+ bar: &Rectangles 2
+ stack: Rectangles &Empilé 3
+ scatter: N&uage de Points 4
+ scatter pie: Nu&age de Cercles 5
+
+ window: &Fenetre
+ new window: &Nouvelle fenetre
+ cards tab: &Cartes F5
+ set info tab: Information du &Set F6
+ style tab: St&yle F7
+ keywords tab: &Mot-clef F8
+ stats tab: S&tatistiques F9
+ random pack tab: &Paquet aléatoire
+
+ help: &Aide
+ index: &Index... F1
+ website: &Website...
+ about: &A propos de Magic Set Editor...
+
+ # symbol editor
+
+ new symbol: &Nouveau... Ctrl+N
+ open symbol: &Ouvrir... Ctrl+O
+ save symbol: &Sauver Ctrl+S
+ save symbol as: Sauver &Sous... F12
+ store symbol: &Utiliser Ctrl+Enter
+ close symbol editor:Fermer Alt+F4
+
+ duplicate: &Dupliquer Ctrl+D
+ group: &Grouper Ctrl+G
+ ungroup: &Degrouper Ctrl+U
+
+ tool: &Outil
+ select: &Selectionner F5
+ rotate: &Pivoter F6
+ points: P&oints F7
+ basic shapes: &Formes simples F8
+ symmetry: S&ymmetry F9
+ paint: P&aindre F10
+
+############################################################## Menu help texts
+help:
+ welcome: Bienvenue à Magic Set Editor
+
+ file:
+ new set: Créer un nouveau set
+ open set: Ouvrir un set
+ last opened set: Ouvrir '%s'
+ save set: Sauver le set
+ save set as: Sauver le set sous un nouveau nom
+ export: Exporter le set...
+ export html: Exporter le set dans une page web
+ export image: Exporter la carte selectionnée dans un fichier image
+ export images: Exporter l'image de toute les cartes
+ export apprentice: Exporter le set pour être utilisé avec Apprentice
+ export mws: Exporter le set pour être utilisé avec Magic Workstation
+ check updates: Ouvrir une fenêtre de mise à jour pour télécharger les nouveaux packages (jeux, styles, localisations)
+ print preview: voir les cartes telles qu'elles vont etre imprimées
+ print: Imprimer les cartes de ce set
+ reload data: Recharger tout les fichiers template ainsi que le set
+ exit: Quitter Magic Set Editor; Vous demandera de sauvegarder le set
+
+ edit:
+ undo: Annuler la derniere action
+ redo: Refaire la derniere action
+ cut: Couper le texte selectionné dans le presse-papier
+ cut card: Couper la carte selectionnée dans le presse-papier
+ cut keyword: Couper le mot-clef selectionnée dans le presse-papier
+ copy: Copier le texte selectionné dans le presse-papier
+ copy card: Copier la carte selectionnée dans le presse-papier
+ copy keyword: Copier le mot-clef selectionnée dans le presse-papier
+ paste: Insere le texte depuis le presse-papier
+ paste card: Insere la carte depuis le presse-papier
+ paste keyword: Insere le mot_clef depuis le presse-papier
+ find: Chercher le texte de la carte
+ find next: Rechercher suivant
+ replace: Remplacer dans le texte de la carte
+ auto replace: Quel texte devra etre automatiquement remplacé?
+ preferences: Changer la configuration de Magic Set Editor
+
+ cards:
+ previous card: Choisir la carte précédente dans la liste
+ next card: Choisir la carte suivante dans la liste
+ add card: Ajouter une nouvelle carte vierge au set
+ add cards: Ajouter plusieurs cartes au set
+ remove card: Effacer du set la carte sélectionnée
+ orientation: Orientation de la carte visualisée
+ rotate card: Tourner la carte de 90° dans le sens des aiguilles d'une montre
+ rotate 0: Afficher la carte dans son sens original
+ rotate 270: Afficher la carte tournée dans le sens des aiguilles d'une montre
+ rotate 90: Afficher la carte tournée dans le sens inverse des aiguilles d'une montre
+ rotate 180: Afficher la carte à l'envers
+ card list columns: Choisir quelles colonnes doivent être montrées et dans quel ordre.
+
+ keywords:
+ previous keyword: Choisir le Mot-clé précédent dans la liste
+ next keyword: Choisir le Mot-clé suivant dans la liste
+ add keyword: Ajouter un nouveau Mot-clé au set
+ remove keyword: Effacer du set le Mot-clé sélectionné
+
+ format:
+ bold: Mettre le texte sélectionné en gras
+ italic: Mettre le texte sélectionné en italique
+ symbols: Mettre le texte selectionné en symboles
+ reminder text: Afficher le texte de rappel pour le Mot-clé sélectionné
+ # spelling
+#_ADD no spelling suggestions: There are no suggestions for correcting this error
+
+ graph:
+ pie: Un graphique en secteurs, le rayon de la tranche indique le nombre de cartes
+ bar: Un graphique à barres, la hauteur de la barre indique le nombre de cartes
+ stack: Un graphique à barres empilées avec des barres
+ scatter: Un nuage de points, la taille indique le nombre de cartes
+ scatter pie: Un nuage de points où chaque point est un petit graphique en secteurs
+
+ window:
+ new window: Ouvrir une nouvelle fenêtre pour éditer le même set
+ cards tab: Editer les cartes du set
+ set info tab: Editer les informations du set, son créateur, etc...
+ style tab: Changer le style de la carte
+ keywords tab: Definir des Mot-clé supplémentaire pour le set
+ stats tab: Voir les statistiques des cartes du set
+ random pack tab: Voir comment le set se comporte en pratique en générant un booster au hasard.
+
+ help:
+ index:
+ website:
+ about:
+
+ # Cards panel
+ collapse notes: Cacher les notes des cartes
+ expand notes: Montrer les notes des cartes
+ # Random pack panel
+ random seed: Un paquet différent à chaque fois sera généré.
+ fixed seed: Utiliser le même nombre donne le même paquet 'aléatoire'.
+ seed: Nombre souche pour le générateur. Utiliser le même nombre donne le même paquet 'aléatoire'.
+#_ADD edit pack type: Double click to edit pack type
+#_ADD number of packs: The number of %ss to generate
+
+ # Preferences
+ app language:
+ Note: Vous devez redémarrer MSE pour que le changement prenne effet.
+ zoom export:
+ (Quand l'option est décochée, les cartes sont exportées
+ et copiées à 100% de leur taille et dans leur rotation normale.)
+
+ # apprentice export
+ set code: Un set code est un code alpha à 2 caractere utilisé par le logiciel pour referencer le set
+
+ # Symbol editor
+ new symbol: Créer un nouveau symbole
+ open symbol: Ouvrir un symbole
+ save symbol: Sauvegarder le symbole
+ save symbol as: Sauvegarder le symbole sous un autre nom
+ store symbol: Choisir le symbole pour le set courant
+ close symbol editor:Fermer l'éditeur de symbole
+
+ duplicate: Dupliquer la forme selectionnée
+ group: Grouper ensemble les formes sélectionnées
+ ungroup: Dégrouper le groupe sélectionné
+
+ grid: Montrer la grille
+ snap: Coller les formes et les points à la grille
+
+ tool:
+ select: Choisir et bouger les formes
+ rotate: Tourner et modifier les formes
+ points: Editer les points de contrôle pour une forme du symbole
+ basic shapes: Dessiner des formes simples, comme des rectangles ou des cercles
+ symmetry: Ajouter une symétrie au symbole
+ paint: Peindre sur la forme en utilisant un pinceau
+
+ select editor:
+ merge: Fusionner cette formes à celles en dessous
+ subtract: Enlever cette forme à celles en dessous, en laissant apparaitre que ce qui n'est pas dans cette forme
+ intersect: Intersection de cette forme avec celles en dessous, ne laissant apparaitre que ce qui est dans les deux formes
+ difference: Soustraire cette forme à celles en dessous, ne laissant apparaitre que les zonnes qui ne sont dans aucune autre forme
+ overlap: Placer cette forme et son contour au dessus des autres formes
+ border: Dessiner cette forme en tant que contour
+
+ drag to shear: Glisser pour déformer la sélection %s
+ drag to rotate: Glisser pour tourner la sélection %s, Ctrl restreind l'angle à un multiple de 15°
+ drag to resize: Glisser pour redimensionner la sélection %s, Ctrl contraint la taille
+ click to select shape: Cliquer pour sélectionner la forme, glisser pour la déplacer, double-cliquer pour l'éditer
+
+ ellipse: Dessiner des cercles et des ellipses
+ rectangle: Dessiner des carrés et des rectangles
+ polygon: Dessiner des triangles, des pentagones et d'autres polygones réguliers
+ star: Dessiner des étoiles
+ sides: Nombre de côtés du polygone ou de branche de l'étoile
+ drag to draw shape: Glisser pour redimensionner la forme, Ctrl contraint la forme, Shift centre la forme
+ draw ellipse: Cliquer-glisser pour dessiner une ellipse, tenir Ctrl pour un cercle
+ draw rectangle: Cliquer-glisser pour dessiner un rectangle, tenir Ctrl pour un carré
+ draw polygon: Cliquer-glisser pour dessiner un polygone
+ draw star: Cliquer-glisser pour dessiner une étoile
+
+ line segment: Rendre droit le segment sélectionné
+ curve segment: Rendre incurvé le segment sélectionné
+ free point: Permet de bouger librement les deux points de contrôle du point
+ smooth point: Rend le point selectionné plus lisse en placant les deux points de contrôle opposés l'un à l'autre
+ symmetric point: Rends les deux points de contrôle symétriques par le point sélectionné
+ drag to move curve: Glisser pour incurver
+ drag to move line: Alt + Glisser pour incurver; double cliquer pour ajouter un point sur cette ligne
+ drag to move point: Cliquer-glisser pour bouger le point de contrôle; double cliquer pour enlever le point
+
+ rotation: Symétrie par rotation (roue)
+ reflection: Symétrie par reflection (mirroir)
+ add symmetry: Ajouter les symétries au symbole
+ remove symmetry: Enlever cette symétrie
+ copies: Nombre de réflexion (inclus l'original)
+
+ # Card select
+ filename format: (Utilisez {card.name} pour le nom de la carte ; Le type de fichier est déterminé, basé par l'extension)
+
+############################################################## Toolbar
+tool:
+ undo: Défaire
+ redo: Refaire
+
+ cards tab: Cartes
+ set info tab: Information du set
+ style tab: Style de la carte
+ keywords tab: Mots-clés
+ stats tab: Statistiques
+ random pack tab: Aléatoire
+
+ # symbol editor
+ store symbol: Stocker
+
+ grid: Grille
+ snap: Attacher
+
+ select: Selectionner
+ rotate: Rotation
+ points: Points
+ basic shapes: Forme basiques
+ symmetry: Symétrie
+ paint: Peinture
+
+ merge: Fusionner
+ subtract: Enlever
+ intersect: Intersection
+ difference: Soustraire
+ overlap: Remonter
+ border: Contour
+
+ ellipse: Ellipse
+ rectangle: Rectangle
+ polygon: Polygone
+ star: Etoile
+
+ rotation: Rotation
+ reflection: Reflection
+ add symmetry: Ajouter
+ remove symmetry: Supprimer
+
+ line segment: Ligne
+ curve segment: Courbe
+ free point: Libre
+ smooth point: Lisse
+ symmetric point: Symétrique
+
+############################################################## Toolbar help text
+tooltip:
+ cards tab: Cartes
+ set info tab: Information du set
+ style tab: Style de la carte
+ keywords tab: Mots-clés
+ stats tab: Statistiques
+ random pack tab: Paquets aléatoires
+
+ new set: Nouveau set
+ open set: Ouvrir un set
+ save set: Sauver le set
+ export: Exporter le set
+
+ cut: Couper
+ copy: Copier
+ paste: Coller
+ undo: Défaire%s
+ redo: Refaire%s
+
+ add card: Ajouter une carte
+ remove card: Supprimer la carte sélectionnée
+ rotate card: Tourner la carte
+
+ add keyword: Ajouter un Mot-clé
+ remove keyword: Supprimer le Mot-clé sélectionné
+
+ bold: Gras
+ italic: Italique
+ symbols: Symboles
+ reminder text: Texte de rappel
+
+ pie: Circulaire
+ bar: Diagramme à barres
+ stack: Graphique à barres empilées
+ scatter: Nuage de points
+ scatter pie: Nuage de cercles
+
+ cards tab: Cartes
+ set info tab: Information du set
+ style tab: Style de la carte
+ keywords tab: Mots-clés
+ stats tab: Statistiques
+
+ # symbol editor
+ store symbol: Stocker le symbole dans le set
+
+ grid: Voir la grille
+ snap: Attacher à la grille
+
+ select: Selection (F5)
+ rotate: Rotation (F6)
+ points: Points (F7)
+ basic shapes: Formes basiques (F8)
+ symmetry: Symétrie (F9)
+ paint: Peinture sur forme (F10)
+
+ merge: Fusionner avec les formes dessous
+ subtract: Enlever des formes dessous
+ intersect: Intersection avec les formes dessous
+ difference: Soustraire des formes dessous
+ overlap: Remonter sur les autres formes
+ border: Dessiner en tant que contour
+
+ ellipse: Cercle / Ellipse
+ rectangle: Carré / Rectangle
+ polygon: Polygone
+ star: Etoile
+
+ rotation: Symétrie par rotation (roue)
+ reflection: Symétrie par réflexion (mirroir)
+ add symmetry: Ajouter une symétrie à la partie sélectionnée
+ remove symmetry: Supprimer cette symétrie
+
+ line segment: Rend droit
+ curve segment: Incurver
+ free point: Libère le point
+ smooth point: Rend le point lisse
+ symmetric point: Rend le point symetrique
+
+############################################################## Labels in the GUI
+label:
+ # Cards tab
+ card notes: Notes de carte:
+ # Keywords tab
+ keyword: Mot-clé
+ match: Correspondance
+ mode: Mode
+ uses: Utilisation
+ reminder: Texte de rappel
+ rules: Règles supplémentaire
+ standard keyword:
+ C'est un mot-clé standard %s, Vous ne pouvez pas l'éditer.
+ Si vous faites une copie de ce mot-clé, la copie prendra le pas sur l'original.
+
+ # Style tab
+ styling options: Options de style
+
+ # Random pack panel
+ pack selection: Sélection de paquet
+ pack totals: Totals
+#_ADD pack name: Pack name
+ seed: Source
+ total cards: Total
+
+ # Open dialogs
+ all files Tous les fichier
+
+ # Other set window dialogs
+ save changes:
+ Le set '%s' a changé.
+
+ Voulez-vous sauver les changements?
+
+ # New set window
+ game type: &type de jeu:
+ style type: &style de carte:
+
+ stylesheet not found:
+ Le set que vous essayez d'ouvrir utilise le stylesheet "%s".
+ Ce stylesheet n'a pas été trouvé sur votre ordinateur. Selectionnez une alternative.
+
+ # Preferences
+ language: Langue
+#_ADD windows: Open sets
+ app language: Langue de l'interface utilisateur:
+ card display: Affichage de carte
+ zoom: &Zoom:
+ percent of normal: % De la taille normale
+ external programs: Programmes externes
+ apprentice: &Apprentice:
+ apprentice exe: Executable Apprentice
+ check at startup: Vérifier les mise à jour au démarrage
+ checking requires internet:
+ Vous avez besoin d'une connexion internet pour vérifier les mise à jour.
+ Il n'y a aucune vérification si vous n'êtes pas connecté à internet.
+
+ Aucune information n'est collectée lors de la vérification des mise à jour.
+
+ # Column select
+ select columns: Sélectionnez les colonnes à afficher
+ columns: Colonnes:
+
+ # Card select / images export
+ select cards: Cartes à exporter
+ selected card count: %s cartes seront exportées.
+ select cards print: Selectionnez les cartes à imprimmer
+ filename format: &Format:
+ filename conflicts: &Gestion des doublons de fichiers:
+ export filenames: Nom de fichier
+ filename is ignored: (Le nom du fichier est ignoré)
+
+ # apprentice export
+ set code: Set &Code:
+ apprentice export cancelled: Exportation vers Apprentice est annulé
+
+ # Html export
+ html template: Modèle:
+ html export options: Options d'exportation
+
+ # Image slicer
+ original: Original:
+ result: Resultat:
+ size: Taille
+ original size: Taille &originale
+ size to fit: &Couper à la taille
+ force to fit: F&orcer à la taille
+ custom size: &Taille personnalisée
+ selection: Selection
+ selection left: &Gauche
+ selection top: &Haut
+ selection width: &Largeur
+ selection height: Lo&ngueur
+ zoom: Zoom
+ fix aspect ratio: Fixer le rapport (largeur/longueur)
+ zoom amount: Zoom
+ zoom amount x: Zoom &X
+ zoom amount y: Zoom &Y
+ zoom %: %
+ filter: Filtre
+ sharpen filter: Filtre de &netteté
+
+ # Auto replace
+ auto match: Concordance
+ auto replace: Remplacer
+
+ # Symbol editor
+ sides: faces
+
+ # Packages window
+ package name: Package
+ package status: État
+ package action: Action
+
+ package conflicts: modifications en conflit
+ package modified: modifications locales
+ package updates: mises à jour disponibles
+ package installed: installé
+ package installable: pas installé
+ install package: installer
+#_ADD reinstall package: reinstall
+ upgrade package: upgrader
+ remove package: effacer
+
+#_ADD installed version: Installed version:
+#_ADD installable version: Latest version:
+#_ADD installer size: Size:
+#_ADD installer status: Status:
+#_ADD no version: -
+
+############################################################## Buttons/checkboxes/choices in the GUI
+button:
+ # Editor
+ edit symbol: Editer
+ symbol gallery: Gallerie
+
+ # Style panel
+ use for all cards: Utiliser pour toutes les c&artes
+ use custom styling options: Options &specifique à cette carte
+
+ # Keywords panel
+ insert parameter: Inserer un parametre...
+ refer parameter: Utilisee un parametre...
+
+ # Random pack panel
+ generate pack: &Generer un paquet
+ random seed: Source &aléatoire
+ fixed seed: Source &fixe
+#_ADD add custom pack: Add &Custom Pack...
+
+ # Welcome
+ new set: Nouveau set
+ open set: Ouvrir un set
+ check updates: Vérifier les mise à jour
+ last opened set: Dernier set :
+
+ # Preferences
+#_ADD open sets in new window: Open all sets in a new &window
+ select: &Selectionner...
+ browse: &Naviguer...
+ high quality: Rendu &haute qualité
+ show lines: Voir les &lignes autour des champs
+ show editing hints: Voir les étiquettes et les conseils pour l'&edition
+ zoom export: Utiliser les paramètres de zoom et de rotation lors de l'e&xportation
+ check now: &Verifier maintenant
+ always: Toujours
+ if internet connection exists: Si il y a une connexion internet
+ never: Jamais
+
+ # Column select
+ move up: M&onter
+ move down: &Descendre
+ show: &Montrer
+ hide: &Cacher
+
+ # Card select
+ export entire set: Set complet
+ export generated packs: Paquets générés
+ export custom cards selection: Sélection personalisée
+ select cards: &Selection des cartes...
+ select all: Selectionner &toutes
+ select none: Selectionner &aucune
+ overwrite: Ecraser les anciens fichiers
+ keep old: Garder les anciens fichiers
+ number: Ajouter un numéro au fichier
+ number overwrite: Ajouter un numéro au fichier, écraser les exportations précédentes
+
+ # Auto replace
+ use auto replace: Utiliser le remplacement automatique
+ add item: &Ajouter
+ remove item: &Supprimer
+ defaults: Remettre par &Defaut
+ enabled: Activé
+ whole word: Mot entier seulement
+
+ # Old style update checker (NOTE: this will be removed in a feature version)
+ close: &Fermer
+
+ # Packages window
+ keep package: &Ne pas modifier
+ don't install package: &Ne pas installer
+ install package: &Installer
+ upgrade package: &Upgrader
+#_ADD reinstall package: Re&install
+ remove package: &Effacer
+ install group: &Installer Tous
+ upgrade group: &Upgrader Tous
+ remove group: &Effacer Tous
+
+############################################################## Titles in the GUI
+title:
+ magic set editor: Magic Set Editor
+ %s - magic set editor: %s - Magic Set Editor
+ untitled: Sans Titre
+ about: A propos de Magic Set Editor
+ symbol editor: Editeur de symbole
+ # dialogs
+ new set: Nouveau set
+ open set: Ouvrir un set
+ save set: Sauver le set sous
+ save image: Sauver image
+ updates available: Mise à jour disponible
+ save changes: Sauver les changements?
+ select stylesheet: Choisir Stylesheet
+ #preferences
+ preferences: Preferences
+ global: Globales
+ display: Affichage
+ directories: Répertoires
+ updates: Mises à jour
+ update check: Mise à jour vérifié
+ locate apprentice: Chemin pour Apprentice
+ # select
+ select columns: Selectionner Colonnes
+ select cards: Selectionner Cartes
+ select cards export:Selectionner Cartes à exporter
+ # slice
+ slice image: Découper l'image
+ # pack
+#_ADD custom pack: Custom Pack Type
+ # print
+ print preview: Imprimer preview
+ # export
+ export images: Exporter images
+ export cancelled: Export annulé
+ export html: Exporter en HTML
+ save html: Exporter en HTML
+ # auto replace
+ auto replaces: Remplacement automatique
+
+ # Package Update Window
+ packages window: Package Manager
+ installing updates: Installe les mises à jours
+
+ cannot create file: Ne peut pas créer le fichier
+
+############################################################## Action (undo/redo) names
+action:
+ # List boxes
+ add item: Ajouter %s
+ remove item: Supprimer %s
+
+ # Text editor
+ typing: Ecrire
+ enter: Entrer
+ soft line break: Ligne de séparation
+ insert symbol: Inserer un symbole
+ backspace: Retour
+ delete: Effacer
+ cut: Couper
+ paste: Coller
+ auto replace: Remplacement auto
+#_ADD correct: Spelling Correction
+ # Choice/color editors
+ change: Changer %s
+
+ # Symbol Actions
+ move: Bouger %s
+ rotate: Tourner %s
+ shear: Déformer %s
+ scale: Taille %s
+ duplicate: Dupliquer %s
+ reorder parts: Reordonner
+ change combine mode:Changer mode de combinaison
+ change shape name: Changer nom de forme
+ group parts: Grouper
+ ungroup parts: Dégrouper
+
+ # Symbol Part Actions
+ convert to line: Convertir en ligne
+ convert to curve: Convertir en courbe
+ lock point: Bloquer point
+ move handle: Bouger l'ensemble
+ move curve: Bouger la courbe
+ add control point: Ajouter point de contrôle
+ delete point: Supprimer le point
+ delete points: Supprimer les points
+
+ # Symmetry
+ add symmetry: Ajouter symétrie
+ #remove symmetry: Supprimer symétrie
+ move symmetry center: Déplacer le centre de symétrie
+ move symmetry handle: Déplacer l'orientation de symétrie
+ change symmetry type: Changer le type de symétrie
+ change symmetry copies: Nombre de réflexions
+
+############################################################## Error messages
+error:
+ file not found: Fichier non trouvé: '%s' dans le package '%s'
+ file not found package like:
+ Fichier non trouvé: '%s' dans le package '%s'
+ Si vous essayez d'ouvrir un fichier d'un autre package, utilisez "/package/fichier"
+ file parse error:
+ Erreur lors de l'analyse du fichier: '%s'
+ %s
+ package not found: Package non trouvé: '%s'
+ package out of date: Le package '%s' (version %s) est expiré, la version %s est requise.
+ package too new: Le package '%s' (version %s) n'est pas compatible avec la version %s, requise par '%s'
+ unable to open output file: Erreur lors de la sauvegarde, Impossible d'ouvrir le fichier de sortie
+ unable to store file: Erreur lors de la sauvegarde, Impossible de stocker le fichier
+ dependency not given:
+ Le package '%s' utilise des fichiers du package '%s', mais il ne liste pas les dépendances.
+ Pour résoudre ça, ajoutez:
+ depends on: %s %s
+
+ # Script stuff
+ has no member: %s n'a pas de membre '%s'
+ can't convert: Ne peut pas convertir de %s à %s
+ has no member value: Ligne "%s" n'a pas de membre '%s'
+ can't convert value: Ne peut pas convertir "%s" de %s à %s
+ unsupported format: Format de ligne invalide: '%s'
+ in function:
+ %s
+ dans la fonction %s
+ in parameter:
+ parametre %s: %s
+ in keyword reminder:
+ %s
+ dans le texte de rappel du mot-clé '%s'
+
+ # Image stuff
+ coordinates for blending overlap: Coordination pour le mélange overlap
+ images used for blending must have the same size: Images utilisées pour le mélange doivent avoir la même taille
+
+ # Error from files
+ no game specified: Pas le jeu spécifié pour le %s
+ no stylesheet specified for the set: Pas de stylesheet spécifié pour le set
+ stylesheet and set refer to different game:
+ le stylesheet et le set ne se réferent pas au même jeu, c'est une erreur dans le fichier stylesheet
+ unsupported field type: Champs type: '%s' non supporté
+ unsupported fill type: Fichier type: '%s' non supporté
+ unrecognized value: Ne reconnait pas la valeur: '%s'
+ expected key: Clé attendue: '%s'
+ aborting parsing: Erreur fatal rencontrée, annulation de lecture.
+ newer version:
+ %s
+ Ce fichier est fait avec une version plus récente de Magic Set Editor (%s)
+ Lors de l'ouverture, certains aspects ont pu être perdus.
+ Nous vous recommandons de mettre à jour votre programme.
+ Visitez http:://magicseteditor.sourceforge.net/
+ word list type not found: La liste de mots de type %s n'a pas été trouvée (from a tag)
+ pack item not found: Le paquet item "%s" n'a pas été trouvé (from a pack type)
+#_ADD pack type not found: The pack type "%s" was not found (from a pack type)
+
+ # Update checking
+ checking updates failed: Impossible de vérifier les mise à jour.
+ no updates: Il n'y a pas de mise à jour disponible.
+
+ # Stats panel
+ dimension not found: Il n'y a pas de statistique de type '%s'
+
+ # Random packs
+#_ADD pack type duplicate name:
+ There is already a pack type named '%s'.
+ Please choose a different name.
+
+ # Package update window
+# checking updates: Recherche de mise à jour.
+ can't download installer:
+ Impossible de télécharger l'installateur pour le package %s de %s.
+ Rien n'a été installé.
+
+ downloading updates: Téléchargement de mise à jour(%d de %d)
+ installing updates: Mise à jour packages (%d de %d)
+
+ remove packages:
+ Cela va supprimer %s packages, voulez-vous continuer?
+ remove packages modified:
+ Cela va supprimer %s packages, dont %s ont été modifiés après leur installation.
+ La suppresion ne pourra pas être annulée.
+
+ Voulez-vous continuer?
+ install packages successful: %s paquets ont été installés avec succès.
+ remove packages successful: %s paquets ont été supprimés avec succès.
+ change packages successful: %s paquets ont été changé avec succès.
+
+ cannot create file: Ne peut pas créer le fichier '%s', continuer l'installation?
+
+############################################################## Types used in scripts / shape names
+type:
+ function: fonction
+ collection: collection
+ collection of: collection de %ss
+ object: objet
+ double: nombre réel
+ integer: nombre entier
+ string: ligne
+ boolean: boléen
+ color: couleur
+ image: image
+#_ADD date: date
+ nil: rien
+
+ # Object types
+ package: package
+ locale: traduction
+ game: jeu
+ set: set
+ stylesheet: stylesheet
+ export template:exporte modèle
+ symbol: symbole
+ card: carte
+ cards: cartes
+ field: champ
+ style: style
+ value: valeur
+ keyword: mot-clé
+ keywords: mots-clés
+#_ADD pack: pack type
+
+ # Symbol editor shapes
+ shape: forme
+ shapes: formes
+ circle: cercle
+ ellipse: ellipse
+ square: carré
+ rectangle: rectangle
+ triangle: triangle
+ rhombus: rhombus
+ pentagon: pentagone
+ hexagon: hexagone
+ polygon: polygone
+ star: etoile
+
+ rotation: rotation
+ reflection: reflection
+ group: groupe
+
+ point: point
+ points: points
+
+############################################################## Magic
+package:
+ magic.mse-game:
+ # Card fields
+ name: Nom
+ cc: CC
+ type: Type
+ p/t: P/T
+ rarity: Rareté
+ card name: Nom de la carte
+
+ # Set info
+
+ # descriptions/help text
+
+ magic-mana-*.mse-symbol-font:
+ # note: reminder/shortcut must start with a space, otherwise it is used as a shortcut
+ # so typing T *anywhere* would insert a symbol (which would be bad)
+ menu item T: Symbole d'engagement &T T
+ menu item Q: Symbole de dégagement &Q Q
+ menu item W: Mana &W Blanc W
+ menu item U: Mana &U Bleu U
+ menu item B: Mana &B Noir B
+ menu item R: Mana &R Rouge R
+ menu item G: Mana &G Vert G
+ menu item S: Mana &S neigeux S
+ menu item X: Mana Variable &X X
+ menu item Y: Mana Variable &Y Y
+ menu item Z: Mana Variable &Z Z
+ menu item I: Mana Infini &I I
+ menu item colorless: Mana In&colore...
+ title colorless: Mana Incolore
+ message colorless: Entrez le montant de mana incolore:
+ menu item half: &Demi mana
+ menu item |W: &W Blanc |W
+ menu item |U: &U Bleu |U
+ menu item |B: &B Noir |B
+ menu item |R: &R Rouge |R
+ menu item |G: &G Vert |G
+ menu item |S: &S Neigeux |S
+ menu item 1/2: Sans &Couleur 1/2
+ menu item hybrid: Mana H&ybride (Deux couleurs)
+ menu item W/U: mana Blanc/Bleu W/U
+ menu item U/B: mana Bleu/Noir U/B
+ menu item B/R: mana Noir/Rouge B/R
+ menu item R/G: mana Rouge/Vert R/G
+ menu item G/W: mana Vert/Blanc G/W
+ menu item W/B: mana Blanc/Noir W/B
+ menu item U/R: mana Bleu/Rouge U/R
+ menu item B/G: mana Noir/Vert B/G
+ menu item R/W: mana Rouge/Blanc R/W
+ menu item G/U: mana Vert/Bleu G/U
+ menu item hybrid 3: Mana H&ybride (Trois couleurs)
+ menu item W/U/B: mana Blanc/Bleu/Noir W/U/B
+ menu item U/B/R: mana Bleu/Noir/Rouge U/B/R
+ menu item B/R/G: mana Noir/Rouge/Vert B/R/G
+ menu item R/G/W: mana Rouge/Vert/Blanc R/G/W
+ menu item G/W/U: mana Vert/Blanc/Bleu G/W/U
+ menu item W/B/R: mana Blanc/Noir/Rouge W/B/R
+ menu item U/R/G: mana Bleu/Rouge/Vert U/R/G
+ menu item B/G/W: mana Noir/Vert/Blanc B/G/W
+ menu item R/W/U: mana Rouge/Blanc/Bleu R/W/U
+ menu item G/U/B: mana Vert/Bleu/Noir G/U/B
+
diff --git a/data/it.mse-locale/locale b/data/it.mse-locale/locale
index 4241a096..20a94e83 100644
--- a/data/it.mse-locale/locale
+++ b/data/it.mse-locale/locale
@@ -1,946 +1,946 @@
-mse version: 0.3.8
-installer group: translations/Italiano
-full name: Italiano
-version: 2009-02-02
-icon: it.png
-
-############################################################## Menu items
-menu:
- file: &File
- new set: &Nuovo... Ctrl+N
- open set: &Apri... Ctrl+O
- save set: &Salva Ctrl+S
- save set as: Salva &come... F12
- export: &Esporta
- export html: &HTML...
- export image: Immagine &Carta...
- export images: I&mmagini Carte...
- export apprentice: &Apprentice...
- export mws: Magic &Workstation...
- check updates: Cerca aggiornamenti...
- print preview: Anteprima di S&tampa...
- print: &Stampa... Ctrl+P
- reload data: Ricarica dati Ctrl+F5
- exit: E&sci Alt+F4
-
- edit: &Modifica
- undo: &Annulla%s Ctrl+Z
- redo: &Ripristina%s Ctrl+Y
- cut: &Taglia Ctrl+X
- copy: &Copia Ctrl+C
- paste: &Incolla Ctrl+V
- find: &Trova Ctrl+F
- find next: Trova &successivo F3
- replace: S&ostituisci Ctrl+H
- auto replace: Sostituzione automatica...
- preferences: &Preferenze...
-
- cards: &Carte
- previous card: Seleziona &carta precedente PgUp
- next card: Seleziona &carta successiva PgDn
- add card: &Aggiungi carta Ctrl+Enter
- add cards: Aggiungi &carte Multiple...
- remove card: &Rimuovi carta Del
- orientation: &Orientamento
- rotate 0: &Normale
- rotate 270: Ruota 90° &Orario
- rotate 90: Ruota 90° A&ntiorario
- rotate 180: Ruota 180°
- card list columns: C&olonne...
-
- keywords: &Parole chiave
- previous keyword: Seleziona &parola-chiave precedente PgUp
- next keyword: Seleziona &parola-chiave seguente PgDn
- add keyword: &Aggiungi parola-chiave Ctrl+Enter
- remove keyword: &Rimuovi parola-chiave selezionata Del
-
- format: F&ormato
- bold: &Grassetto Ctrl+B
- italic: &Corsivo Ctrl+I
- symbols: &Simboli Ctrl+M
- reminder text: &Promemoria Ctrl+R
- insert symbol: I&nserisci Simbolo
- # spelling
- no spelling suggestions: (no suggestions)
-
- graph: &Grafico
- pie: &Torta 1
- bar: &Barre 2
- stack: Barre &Sovrapposte 3
- scatter: &Dispersione 4
- scatter pie: D&ispersione Torta 5
-
- window: &Finestre
- new window: &Nuova Finestra
- cards tab: &Carte F5
- set info tab: &Informazioni F6
- style tab: St&ile F7
- keywords tab: &Parole chiave F8
- stats tab: S&tatistiche F9
- random pack tab: &Buste casuali
-
- help: &Aiuto
- index: &Indice... F1
- website: &Sito web...
- about: &About Magic Set Editor...
-
- # symbol editor
-
- new symbol: &Nuovo... Ctrl+N
- open symbol: &Apri... Ctrl+O
- save symbol: &Salva Ctrl+S
- save symbol as: Salva &Come... F12
- store symbol: Usa &simbolo Ctrl+Enter
- close symbol editor:Close Alt+F4
-
- duplicate: Duplica Ctrl+D
- group: &Raggruppa Ctrl+G
- ungroup: &Sgruppa Ctrl+U
-
- tool: &Strumenti
- select: &Seleziona F5
- rotate: &Ruota F6
- points: &Punti F7
- basic shapes: &Forme Base F8
- symmetry: S&immetria F9
- paint: Disegn&a F9
-
-############################################################## Menu help texts
-help:
- welcome: Benvenuto in Magic Set Editor
-
- file:
- new set: Crea un nuovo set
- open set: Apri un set esistente
- last opened set: Apri '%s'
- save set: Salva set
- save set as: Save set con nome
- export: Esporta il set...
- export html: Esporta il set in una pagina web
- export image: Esporta la carta selezionata come immagine
- export images: Esporta tutte le carte come immagini
- export apprentice: Esporta il set per essere usato in Apprentice
- export mws: Esporta il set per essere usato in Magic Workstation
- check updates: Apre la finestra di aggiornamento per scaricare nuovi pacchetti, come giochi, stili e file locale.
- print preview: Anteprima di stampa
- print: Stampa carte da questo set
- reload data: Ricarica tutti i template e il set.
- exit: Esce da Magic Set Editor; chiede se salvare il set
-
- edit:
- undo: Annulla l'ultima azione
- redo: Ripristina l'ultima azione
- cut: Muovi il testo selezionato negli appunti
- cut card: Muovi la carta selezionata negli appunti
- cut keyword: Muovi la parola-chiave selezionata negli appunti
- copy: Copia il testo selezionato negli appunti
- copy card: Copia la carta selezionata negli appunti
- copy keyword: Copia la parola-chiave selezionata negli appunti
- paste: Inserisci il testo dagli appunti
- paste card: Inserisci la carta dagli appunti
- paste keyword: Inserisci la parola-chiave dagli appunti
- find: Cerca nel testo delle carte
- find next: Trova successivo
- replace: Rimpiazza nel testo della carta
- auto replace: Rimpiazza il testo automaticamente
- preferences: Cambia la configurazione di Magic Set Editor
-
- cards:
- previous card: Seleziona la carta precedente della lista
- next card: Seleziona la prossima carta della lista
- add card: Aggiunge una nuova carta vuota al set
- add cards: Aggiunge carte multiple al set
- remove card: Cancella la carta selezionata dal set
- orientation: Orientamento della carta visualizzata
- rotate card: Ruota la carta di 90° in senso orario
- rotate 0: Visualizza la carta nella giusta direzione
- rotate 270: Visualizza la carta ruotata in senso orario
- rotate 90: Visualizza la carta ruotata in senso antiorario
- rotate 180: Visualizza la carta capovolta
- card list columns: Seleziona quali colonne visualizzare e in quale ordine.
-
- keywords:
- previous keyword: Seleziona la parola-chiave precedente
- next keyword: Seleziona la parola-chiave seguente
- add keyword: Aggiungi una nuova parola-chiave
- remove keyword: Cancella la parola-chiave selezionata
-
- format:
- bold: Applica il grassetto al testo selezionato
- italic: Applica il corsivo al testo selezionato
- symbols: Trasforma il testo selezionato in simboli
- reminder text: Mostra promemoria per la parola-chiave selezionata
- # spelling
- no spelling suggestions: Nessun suggerimento di correzione
-
- graph:
- pie: Un grafico a torta, la dimensione della fetta indica il numero di carte.
- bar: Un grafico a barre, l'altezza della colonna indica il numero di carte.
- stack: Un grafico con barre sovrapposte.
- scatter: Una grafico dispersione, la dimensione indica il numero di carte.
- scatter pie: Una grafico dispersione in cui ogni elemento è un piccolo grafico a torta.
-
- window:
- new window: Apri un'altra finestra contenente lo stesso set
- cards tab: Modifica le carte nel set
- set info tab: Modifica le informazioni su set, autore, ecc.
- style tab: Cambia lo stile delle carte
- keywords tab: Definisci parole chiave aggiuntive per questo set
- stats tab: Mostra le statistiche delle carte del set
- random pack tab: Controlla se il set funziona nella pratica generando buste casuali.
-
- help:
- index:
- website:
- about:
-
- # Cards panel
- collapse notes: Nascondi il campo 'Note carta'
- expand notes: Mpstra il campo 'Note carta'
- # Random pack panel
- random seed: Ogni volta saranno generate buste diverse.
- fixed seed: Usando lo stesso seme si ottengono le stesse buste 'casuali'.
- seed: Numero del seme per il generatore casuale. Usando lo stesso seme si ottengono le stesse buste 'casuali'.
- edit pack type: Doppio clic per modificare il tipo di busta
- number of packs: Il numero di %ss per generare
-
- # Preferences
- app language:
- Nota: Devi riavviare MSE perchè le modifiche abbiano effetto.
- zoom export:
- (Se disattivato, le carte sono esportate e copiate al 100% della grandezza e con orientamento normale)
-
- # apprentice export
- set code: Un set code è un codice di due caratteri usato da Apprentice come riferimento ad un set.
-
- # Symbol editor
- new symbol: Crea un nuovo simbolo
- open symbol: Apri un simbolo
- save symbol: Salva il simbolo
- save symbol as: Salva il simbolo con nome
- store symbol: Assegna il simbolo al set
- close symbol editor:Chiude l'editor di simboli
-
- duplicate: Duplica le forme selezionate
- group: Raggruppa le forme selezionate
- ungroup: Divide le forme selezionate
-
- grid: Mostra griglia
- snap: Allinea figure e punti alla griglia
-
- tool:
- select: Seleziona e muovi le figure
- rotate: Ruota e taglia le figure
- points: Modifica i punti di controllo di una figura nel simbolo
- basic shapes: Disegna figure base, come rettangoli e cerchi
- symmetry: Aggiunge simmetria al simbolo
- paint: Disegna sulla figura con un pennello
-
- select editor:
- merge: Unisce la figura con quelle sottostanti
- subtract: Sottrae questa figura da quelle sottostanti, lasciando solo l'area che non le appartiene
- intersect: Interseca questa figura con quelle sottostanti, lasciando solo l'area in comune
- difference: Crea la differenza fra questa figura e quelle sottostanti, lasciando intatta l'area non condivisa da altre figure
- overlap: Posiziona questa figura e i suoi bordi sopra le altre
- border: Lascia solo il bordo della figura
-
- drag to shear: Trascina per tagliare il/la %s selezionato/a
- drag to rotate: Trascina per ruotare il %s selezionato, Ctrl mantiene gli angoli a multipli di 15 gradi
- drag to resize: Ridimensiona il %s selezionato, Ctrl mantiene le proporzioni
- click to select shape: Clicca per selezionare una figura, trascina per muoverla, doppio clic per modificarla
-
- ellipse: Disegna cerchi ed ellissi
- rectangle: Disegna quadrati e rettangoli
- polygon: Disegna triangoli, pentagoni ed altri poligoni regolari
- star: Disegna stelle
- sides: Il numero delle facce del poligono o dei punti della stella
- drag to draw shape: Trascina per ridimensionare la figura, Ctrl mantiene le proporzioni, Shift centra la figura
- draw ellipse: Clicca e trascina per disegnare un'ellisse, tieni premuto Ctrl per un cerchio
- draw rectangle: Clicca e trascina per disegnare un rettangolo, tieni premuto Ctrl per un quadrato
- draw polygon: Clicca e trascina epr disegnare un poligono
- draw star: Clicca e trascina per disegnare una stella
-
- line segment: Rende diritto il segmento selezionato
- curve segment: Rende curvo il segmento selezionato
- free point: Permette di muovere liberamente i due punti di controllo di un punto
- smooth point: Ammorbidisce il punto selezionato posizionando i due punti di controllo uno opposto all'altro
- symmetric point: Rende simmetrico il punto selezionato
- drag to move curve: Trascina per muovere la curva
- drag to move line: Alt + strascina per muovere la curva; doppio clic per aggiungere un punto su questa linea
- drag to move point: Clicca e trascina per muovere il punto di controllo; doppio clic per rimuovere il punto
-
- rotation: Ruota simmetricamente (ruota)
- reflection: Rifletti simmetricamente (specchia)
- add symmetry: Aggiunge simmetria agli elementi selezionati
- remove symmetry: Rimuovi simmetria
- copies: Numero di copie riflesse (incluso l'originale)
-
- # Card select
- filename format: (Usa {card.name} per il nome della carta ; il tipo di file è determinato dall'estensione)
-
-############################################################## Toolbar
-tool:
- undo: Annulla
- redo: Ripeti
-
- cards tab: Carte
- set info tab: Info set
- style tab: Stile
- keywords tab: Keywords
- stats tab: Statistiche
- random pack tab: Buste
-
- # symbol editor
- store symbol: Usa
-
- grid: Griglia
- snap: Allinea
-
- select: Seleziona
- rotate: Ruota
- points: Punti
- basic shapes: Forme Base
- symmetry: Simmetria
- paint: Disegna
-
- merge: Unisci
- subtract: Sottrai
- intersect: Interseca
- difference: Differenza
- overlap: Sovrapponi
- border: Bordi
-
- ellipse: Ellisse
- rectangle: Rettangolo
- polygon: Poligono
- star: Stella
-
- rotation: Rotazione
- reflection: Riflesso
- add symmetry: Aggiungi
- remove symmetry: Rimuovi
-
- line segment: Linea
- curve segment: Curva
- free point: Libero
- smooth point: Ammorbidisci
- symmetric point: Simmetrico
-
-############################################################## Toolbar help text
-tooltip:
- cards tab:
- set info tab: Informazioni set
- style tab:
- keywords tab:
- stats tab:
- random pack tab: Buste casuali
-
- new set: Nuovo set
- open set: Apri set
- save set: Salva set
- export: Esporta set
-
- cut: Taglia
- copy: Copia
- paste: Incolla
- undo: Annulla%s
- redo: Ripeti%s
-
- add card: Aggiungi carta
- remove card: Rimuovi carta selezionata
- rotate card: Ruota carta
-
- add keyword: Aggiungi parola-chiave
- remove keyword: Rimuovi parola-chiave
-
- bold: Grassetto
- italic: Corsivo
- symbols: Simboli
- reminder text: Promemoria
-
- pie: Grafico a torta
- bar: Grafico a barre
- stack: Grafico con barre sovrapposte
- scatter: Grafico dispersione
- scatter pie: Grafico torte dispersione
-
- cards tab:
- set info tab: Informazioni set
- style tab: Stile Carta
- keywords tab:
- stats tab:
-
- # symbol editor
- store symbol: Usa il simbolo nel set
-
- grid: Mostra griglia
- snap: Allinea alla griglia
-
- select: Seleziona (F5)
- rotate: Ruota (F6)
- points: Punti (F7)
- basic shapes: Forme Base (F8)
- symmetry: Simmetria (F9)
- paint: Disegna (F10)
-
- merge: Unisci alle figure sottostanti
- subtract: Sottrai dalle figure sottostanti
- intersect: Interseca con le figure sottostanti
- difference: Differenza dalle figure sottostanti
- overlap: Posiziona sopra altre figure
- border: Disegna come bordo
-
- ellipse: Cerchio / Ellisse
- rectangle: Quadrato / Rettangolo
- polygon: Poligono
- star: Stella
-
- rotation: Ruota simmetricamente (ruota)
- reflection: Rifletti simmetricamente (specchia)
- add symmetry: Aggiunge simmetria agli elementi selezionati
- remove symmetry: Rimuovi simmetria
-
- line segment: Linea retta
- curve segment: Curva
- free point: Posizionamento libero
- smooth point: Rendi punto morbido
- symmetric point: Rendi punto simmetrico
-
-############################################################## Labels in the GUI
-label:
- # Cards tab
- card notes: Note carta:
- # Keywords tab
- keyword: Parole chiave
- match: Nome
- mode: Tipo
- uses: Usi
- reminder: Promemoria
- rules: Regole aggiuntive
- standard keyword:
- questa è una parola-chiave standard di %s, non puoi modificarla.
- Se crei una copia della parola-chiave, la tua copia avrà la precedenza.
-
- # Style tab
- styling options: Opzioni stile
-
- # Random pack panel
- pack selection: Selezione Buste
- pack totals: Totale
- pack name: Nome busta
- seed: Seme
- total cards: Totale
-
- # Open dialogs
- all files Tutti i file
-
- # Other set window dialogs
- save changes:
- Il set '%s' è stato modificato.
-
- Vuoi salvare le modifiche?
-
- # New set window
- game type: &Tipo di gioco:
- style type: &Stile carte:
-
- stylesheet not found:
- Il set che stai cercando di aprire usa lo stile "%s".
- Questo stile non è stato trovato sul tuo sistema, scegli un'alternativa.
-
- # Preferences
- language: Lingua
- windows: Set aperti
- app language: Lingua dell'interfaccia:
- card display: Visualizza Carta
- zoom: &Zoom:
- percent of normal: % della grandezza originale
- external programs: Programmi esterni
- apprentice: &Apprentice:
- apprentice exe: Eseguibile di Apprentice
- check at startup: Controlla aggiornamenti all'avvio
- checking requires internet:
- Controllare gli aggiornamenti richiede una connessione a Internet.
- Se non viene trovata nessuna connessione a Internet gli aggiornamenti non vengono controllati.
-
- Non sono raccolte informazioni quando si controllano gli aggiornamenti.
-
- # Column select
- select columns: Scegli le colonne che vuoi visualizzare
- columns: Colonne:
-
- # Card select / images export
- select cards: Carte da esportare
- selected card count: %s carte saranno esportate.
- select cards print: Seleziona le carte che vuoi stampare
- filename format: &Formato:
- filename conflicts: &Handle duplicating filenames:
- export filenames: Filenames
- filename is ignored: (il filename è ignorato)
-
- # apprentice export
- set code: Imposta &Codice:
- apprentice export cancelled: L'esportazione ad Apprentice è stata cancellata
-
- # Html export
- html template: Template:
- html export options:Opzioni esportazione
-
- # Image slicer
- original: Originale:
- result: Risultato:
- size: Dimensioni
- original size: &Dimensioni originali
- size to fit: Adatta alla &Finestra
- force to fit: A&datta all'immagine
- custom size: &Manuali
- selection: Selezione
- selection left: &Sinistra
- selection top: A<o
- selection width: &Larghezza
- selection height: Al&tezza
- zoom: Zoom
- fix aspect ratio: Mantieni proporzioni (larghezza/altezza)
- zoom amount: Zoom
- zoom amount x: Zoom &X
- zoom amount y: Zoom &Y
- zoom %: %
- filter: Filtro
- sharpen filter: &Contrasta
-
- # Auto replace
- auto match: Trova
- auto replace: Rimpiazza
-
- # Symbol editor
- sides: facce
-
- # Packages window
- package name: Pacchetto
- package status: Stato
- package action: Azione
-
- package conflicts: conflitto modifiche
- package modified: modifiche locali
- package updates: aggiornamenti disponibili
- package installed: installato
- package installable: non installato
- install package: installare
- reinstall package: reinstallare
- upgrade package: aggiornamento
- remove package: rimuovere
-
- installed version: Versione installata:
- installable version: Ultima versione:
- installer size: Dimesioni:
- installer status: Stato:
- no version: -
-
-############################################################## Buttons/checkboxes/choices in the GUI
-button:
- # Editor
- edit symbol: Modifica
- symbol gallery: Galleria
-
- # Style panel
- use for all cards: Usa per tutte le c&arte
- use custom styling options: Opzioni &specifiche per questa carta
-
- # Keywords panel
- insert parameter: Inserisci Parametro...
- refer parameter: Usa Parametro...
-
- # Random pack panel
- generate pack: &Genera Busta
- random seed: Seme casuale (&R)
- fixed seed: Seme &fisso
- add custom pack: Aggiungi Busta personalizzata... (&C)
-
- # Welcome
- new set: Nuovo set
- open set: Apri set
- check updates: Cerca aggiornamenti
- last opened set: Ultimo aperto
-
- # Preferences
- open sets in new window: Apre tutti i set in una nuova finestra (&W)
- select: &Seleziona...
- browse: Sfoglia... (&B)
- high quality: Rendering ad alta qualità (&H)
- show lines: Mostra &linee attorno ai campi
- show editing hints: Mostra suggerimenti per le &modifiche
- zoom export: usa le impostazioni di zoom e rotazione quando e&sporti
- check now: Controlla ora (&N)
- always: Sempre
- if internet connection exists: Se è presente una connessione a Internet
- never: Mai
-
- # Column select
- move up: Muovi S&u
- move down: Muovi Giù (&D)
- show: &Mostra
- hide: &Nascondi
-
- # Card select
- export entire set: Intero set
- export generated packs: Buste generate
- export custom cards selection: Selezione manuale
- select cards: &Seleziona carte...
- select all: Seleziona &Tutto
- select none: Annulla &Selezione
- overwrite: Sovrascrivi vecchi file
- keep old: Mantieni vecchi file
- number: Aggiungi un numero al nome file
- number overwrite: Aggiungi un numero al nome file, sovrascrive esportazioni precedenti
-
- # Auto replace
- use auto replace: Rimpiazza automaticamente
- add item: &Aggiungi
- remove item: &Rimuovi
- defaults: Ripristina &predefiniti
- enabled: Abilitato
- whole word: Trova solo parola intera
-
- # Old style update checker (NOTE: this will be removed in a feature version)
- close: &Chiudi
-
- # Packages window
- keep package: &Non modificare
- don't install package: &Non installare
- install package: &Installa
- upgrade package: Aggiorna (&U)
- reinstall package: Re&installa
- remove package: &Rimuovi
- install group: &Installa Tutto
- upgrade group: &Upgrade Tutto
- remove group: &Rimuovi Tutto
-
-############################################################## Titles in the GUI
-title:
- magic set editor: Magic Set Editor
- %s - magic set editor: %s - Magic Set Editor
- untitled: Senza titolo
- about: About Magic Set Editor
- symbol editor: Editor di Simboli
- # dialogs
- new set: Nuovo Set
- open set: Apri set
- save set: Salva set come
- save image: Salva immagine
- updates available: Aggiornamenti disponibili
- save changes: Salvare modifiche?
- select stylesheet: Seleziona stile
- #preferences
- preferences: Preferenze
- global: Globali
- display: Visualizza
- directories: Cartelle
- updates: Aggiornamenti
- update check: Controlla aggiornamenti
- locate apprentice: Localizza Apprentice
- # select
- select columns: Seleziona colonne
- select cards: Seleziona carte
- select cards export: Seleziona carte da esportare
- # slice
- slice image: Ritaglia figura
- # pack
- custom pack: Tipo Busta personalizzata
- # print
- print preview: Anteprima di stampa
- # export
- export images: Esporta immagini
- export cancelled: Esportazione cancellata
- export html: Esporta in HTML
- save html: Esporta in HTML
- # auto replace
- auto replaces: Rimpiazza automaticamente
-
- # Package Update Window
- packages window: Package Manager
- installing updates: Installazione di aggiornamenti
-
- cannot create file: Impossibile creare il file
-
-############################################################## Action (undo/redo) names
-action:
- # List boxes
- add item: Aggiungi %s
- remove item: Rimuovi %s
-
- # Text editor
- typing: Inserimento testo
- enter: Invio
- soft line break: Soft line break
- insert symbol: Inserisci simbolo
- backspace: Backspace
- delete: Cancella
- cut: Taglia
- paste: Incolla
- auto replace: Rimpiazza automaticamente
- correct: Correzione ortografica
- # Choice/color editors
- change: Cambia %s
-
- # Symbol Actions
- move: Muovi %s
- rotate: Ruota %s
- shear: Taglia %s
- scale: Ridimensiona %s
- duplicate: Duplica %s
- reorder parts: Riordina
- change combine mode:Cambia combinazione
- change shape name: Cambia nome figura
- group parts: Raggruppa
- ungroup parts: Sgruppa
-
- # Symbol Part Actions
- convert to line: Trasforma in linea
- convert to curve: Trasforma in curva
- lock point: Blocca punto
- move handle: Muovi maniglia
- move curve: Muovi curva
- add control point: Aggiungi punto di controllo
- delete point: Cancella punto
- delete points: Cancella punti
-
- # Symmetry
- add symmetry: Aggiungi Simmetria
- #remove symmetry: Rimuovi simmetria
- move symmetry center: Muovi centro di simmetria
- move symmetry handle: Cambia orientamento simmetria
- change symmetry type: Cambia tipo di simmetria
- change symmetry copies: Numero di riflessi
-
-############################################################## Error messages
-error:
- # File related
- file not found: File non trovato: '%s' nel pacchetto '%s'
- file not found package like:
- File non trovato: '%s' nel pacchetto '%s'
- Se si sta tentando di aprire un file da un altro pacchetto, utilizzare "/package/filename"
- file parse error:
- Errore analizzando il file: '%s'
- %s
- package not found: Pacchetto non trovato: '%s'
- package out of date: Il pacchetto '%s' (versione %s) è obsoleto, e' richiesta la versione %s.
- package too new: Il pacchetto '%s' (versione %s) non è compatibile con la versione %s, richieste di '%s'
- unable to open output file: Errore nel salvataggio, incapace di aprire il file prodotto
- unable to store file: Errore nel salvataggio, incapace di salvare il file
- dependency not given:
- Il pacchetto '%s' utilizza file dal pacchetto '%s', a non ha una dipendenza.
- Per risolvere questo problema, aggiungere:
- depends on: %s %s
-
- # Script stuff
- has no member: %s non ha membri '%s'
- can't convert: Impossibile convertire da %s a %s
- has no member value: La stringa "%s" non ha membri '%s'
- can't convert value: Impossibile convertire "%s" da %s a %s
- unsupported format: Formato stringa non valido: '%s'
- in function:
- %s
- in function %s
- in parameter:
- Parameter %s: %s
- in keyword reminder:
- %s
- in reminder text of keyword '%s'
-
- # Image stuff
- coordinates for blending overlap: Coordinate per sovrapposizione
- images used for blending must have the same size: Le immagini sovrapposte devono avere le stesse misure
-
- # Error from files
- no game specified: Nessun gioco specificato per il %s
- no stylesheet specified for the set: Nessuno stile specificato per il set
- stylesheet and set refer to different game:
- lo stile ed il set non si riferiscono allo stesso gioco, questo è un errore nel file dello stile
- unsupported field type: Tipo di campo non supportato: '%s'
- unsupported fill type: Tipo di riempimento non supportato: '%s'
- unrecognized value: Valore non riconosciuto: '%s'
- expected key: Prevista key: '%s'
- aborting parsing: Fatal errors encountered, aborting reading.
- newer version:
- %s
- Questo file è stato creato con una versione più recente di Magic Set Editor (%s)
- Aprendolo, alcuni dati del file possono essere perduti.
- Si raccomanda di aggiornare il programma alla versione più recente.
- Visita http:://magicseteditor.sourceforge.net/
- word list type not found: The word list type %s was not found (from a tag)
- pack item not found: Oggetto "%s" non trovato (da un pacchetto)
- pack type not found: Tipo "%s" non trovato (da un pacchetto)
-
- # Update checking
- checking updates failed: Controllo degli aggiornamenti fallito.
- no updates: Non ci sono aggiornamenti disponibili.
-
- # Stats panel
- dimension not found: Non c'è dimensione di statistiche '%s'
-
- # Random packs
- pack type duplicate name:
- C'e' gia' un tipo di buste dal nome '%s'.
- Scegli un nome differente.
-
- # Package update window
- can't download installer:
- Impossibile scaricare l'installatore del pacchetto %s da %s.
- Installazione non riuscita.
-
- downloading updates: Scarico gli aggiornamenti(%d di %d)
- installing updates: Aggiorno i pacchetti (%d di %d)
-
- remove packages:
- Saranno rimossi %s pacchetti, vuoi continuare?
- remove packages modified:
- Saranno rimossi %s pacchetti, %s di questi modificati dopo l'installazione.
- Non sara' possibile annullare.
-
- Vuoi continuare?
- install packages successful: sono stati installati %s pacchetti.
- remove packages successful: sono stati rimossi %s pacchetti.
- change packages successful: sono stati modificati %s pacchetti.
-
- cannot create file: Impossibile creare file '%s', continuare con l'installazione?
-
-############################################################## Types used in scripts / shape names
-type:
- function: funzione
- collection: collezione
- collection of: collezione di %ss
- object: oggetto
- double: numero reale
- integer: numero intero
- string: stringa
- boolean: booleano
- color: colore
- image: immagine
- date: date
- nil: nil
-
- # Object types
- package: pacchetto
- locale: traduzione
- game: gioco
- set: set
- stylesheet: stile
- export template:modello di esportazione
- symbol: simbolo
- card: carta
- cards: carte
- field: campo
- style: stile
- value: valore
- keyword: parola-chiave
- keywords: parole chiave
- pack: tipo busta
-
- # Symbol editor shapes
- shape: forma
- shapes: forme
- circle: cerchio
- ellipse: ellisse
- square: quadrato
- rectangle: rettangolo
- triangle: triangolo
- rhombus: rombo
- pentagon: pentagono
- hexagon: esagono
- polygon: poligono
- star: stella
-
- rotation: rotazione
- reflection: riflesso
- group: gruppo
-
- point: punto
- points: punti
-
-############################################################## Magic
-package:
- magic.mse-game:
- # Card fields
- name: Nome
- cc: CC
- type: Tipo
- p/t: F/C
- rarity: Rarità
- card name: Nome Carta
-
- # Set info
- set information: Informazioni set
- title: Titolo
- description: Descrizione
- artist: Artista
- symbol: Simbolo
- defaults and automation: Predefiniti e Automatici
- border color: Colore bordo
- automatic reminder text: Promemoria automatico
- automatic card numbers: Numerazione automatica
- sort special rarity: Ordina rarità speciali
- mark errors: Segna errori
- use gradient multicolor: Usa gradienti per multicolori
-
- # Style
- colored mana symbols: Simboli mana colorati
- artifact style: Stile artefatti
- grey hybrid name: Nome in grigio per gli ibridi
- use guild mana symbols: Usa simboli gilde per mana
- popup mana symbols: Simboli mana in rilievo
- tap symbol: Simbolo TAP
- center text: Testo centrato
- inverted common symbol: Inverti simbolo comune
- image size: Dimensioni immagine
-
-
- # descriptions/help text
-
- magic-mana-*.mse-symbol-font:
- # note: reminder/shortcut must start with a space, otherwise it is used as a shortcut
- # so typing T *anywhere* would insert a symbol (which would be bad)
- menu item T: &Simbolo TAP T
- menu item Q: &Simbolo UNTAP Q
- menu item W: &Mana Bianco W
- menu item U: Ma&na Blu U
- menu item B: &Mana Nero B
- menu item R: &Mana Rosso R
- menu item G: &Mana Verde G
- menu item S: &Mana Neve S
- menu item X: Variable mana &X X
- menu item Y: Variable mana &Y Y
- menu item Z: Variable mana &Z Z
- menu item I: Mana &Infinito I
- menu item colorless: &Mana Incolore...
- title colorless: Mana Incolore
- message colorless: Inserisci quantità di mana incolore:
- menu item half: &Mezzo mana
- menu item |W: &Bianco |W
- menu item |U: Bl&u |U
- menu item |B: &Nero |B
- menu item |R: &Rosso |R
- menu item |G: &Verde |G
- menu item |S: &Neve |S
- menu item 1/2: &Incolore 1/2
- menu item hybrid: M&ana ibrido (due colori)
- menu item W/U: Mana Bianco/Blu W/U
- menu item U/B: Mana Blu/Nero U/B
- menu item B/R: Mana Nero/Rosso B/R
- menu item R/G: Mana Rosso/Verde R/G
- menu item G/W: Mana Verde/Bianco G/W
- menu item W/B: Mana Bianco/Nero W/B
- menu item U/R: Mana Blu/Rosso U/R
- menu item B/G: Mana Nero/Verde B/G
- menu item R/W: Mana Rosso/Bianco R/W
- menu item G/U: Mana Verde/Blu G/U
- menu item hybrid 3: Mana Ibrido (tre colori)
- menu item W/U/B: Mana Bianco/Blu/Nero W/U/B
- menu item U/B/R: Mana Blu/Nero/Rosso U/B/R
- menu item B/R/G: Mana Nero/Rosso/Verde B/R/G
- menu item R/G/W: Mana Rosso/Verde/Bianco R/G/W
- menu item G/W/U: Mana Verde/Bianco/Blu G/W/U
- menu item W/B/R: Mana Bianco/Nero/Rosso W/B/R
- menu item U/R/G: Mana Blu/Rosso/Verde U/R/G
- menu item B/G/W: Mana Nero/Verde/Bianco B/G/W
- menu item R/W/U: Mana Rosso/Bianco/Blu R/W/U
- menu item G/U/B: Mana Verde/Blu/Nero G/U/B
+mse version: 0.3.8
+installer group: translations/Italiano
+full name: Italiano
+version: 2009-02-02
+icon: it.png
+
+############################################################## Menu items
+menu:
+ file: &File
+ new set: &Nuovo... Ctrl+N
+ open set: &Apri... Ctrl+O
+ save set: &Salva Ctrl+S
+ save set as: Salva &come... F12
+ export: &Esporta
+ export html: &HTML...
+ export image: Immagine &Carta...
+ export images: I&mmagini Carte...
+ export apprentice: &Apprentice...
+ export mws: Magic &Workstation...
+ check updates: Cerca aggiornamenti...
+ print preview: Anteprima di S&tampa...
+ print: &Stampa... Ctrl+P
+ reload data: Ricarica dati Ctrl+F5
+ exit: E&sci Alt+F4
+
+ edit: &Modifica
+ undo: &Annulla%s Ctrl+Z
+ redo: &Ripristina%s Ctrl+Y
+ cut: &Taglia Ctrl+X
+ copy: &Copia Ctrl+C
+ paste: &Incolla Ctrl+V
+ find: &Trova Ctrl+F
+ find next: Trova &successivo F3
+ replace: S&ostituisci Ctrl+H
+ auto replace: Sostituzione automatica...
+ preferences: &Preferenze...
+
+ cards: &Carte
+ previous card: Seleziona &carta precedente PgUp
+ next card: Seleziona &carta successiva PgDn
+ add card: &Aggiungi carta Ctrl+Enter
+ add cards: Aggiungi &carte Multiple...
+ remove card: &Rimuovi carta Del
+ orientation: &Orientamento
+ rotate 0: &Normale
+ rotate 270: Ruota 90° &Orario
+ rotate 90: Ruota 90° A&ntiorario
+ rotate 180: Ruota 180°
+ card list columns: C&olonne...
+
+ keywords: &Parole chiave
+ previous keyword: Seleziona &parola-chiave precedente PgUp
+ next keyword: Seleziona &parola-chiave seguente PgDn
+ add keyword: &Aggiungi parola-chiave Ctrl+Enter
+ remove keyword: &Rimuovi parola-chiave selezionata Del
+
+ format: F&ormato
+ bold: &Grassetto Ctrl+B
+ italic: &Corsivo Ctrl+I
+ symbols: &Simboli Ctrl+M
+ reminder text: &Promemoria Ctrl+R
+ insert symbol: I&nserisci Simbolo
+ # spelling
+ no spelling suggestions: (no suggestions)
+
+ graph: &Grafico
+ pie: &Torta 1
+ bar: &Barre 2
+ stack: Barre &Sovrapposte 3
+ scatter: &Dispersione 4
+ scatter pie: D&ispersione Torta 5
+
+ window: &Finestre
+ new window: &Nuova Finestra
+ cards tab: &Carte F5
+ set info tab: &Informazioni F6
+ style tab: St&ile F7
+ keywords tab: &Parole chiave F8
+ stats tab: S&tatistiche F9
+ random pack tab: &Buste casuali
+
+ help: &Aiuto
+ index: &Indice... F1
+ website: &Sito web...
+ about: &About Magic Set Editor...
+
+ # symbol editor
+
+ new symbol: &Nuovo... Ctrl+N
+ open symbol: &Apri... Ctrl+O
+ save symbol: &Salva Ctrl+S
+ save symbol as: Salva &Come... F12
+ store symbol: Usa &simbolo Ctrl+Enter
+ close symbol editor:Close Alt+F4
+
+ duplicate: Duplica Ctrl+D
+ group: &Raggruppa Ctrl+G
+ ungroup: &Sgruppa Ctrl+U
+
+ tool: &Strumenti
+ select: &Seleziona F5
+ rotate: &Ruota F6
+ points: &Punti F7
+ basic shapes: &Forme Base F8
+ symmetry: S&immetria F9
+ paint: Disegn&a F9
+
+############################################################## Menu help texts
+help:
+ welcome: Benvenuto in Magic Set Editor
+
+ file:
+ new set: Crea un nuovo set
+ open set: Apri un set esistente
+ last opened set: Apri '%s'
+ save set: Salva set
+ save set as: Save set con nome
+ export: Esporta il set...
+ export html: Esporta il set in una pagina web
+ export image: Esporta la carta selezionata come immagine
+ export images: Esporta tutte le carte come immagini
+ export apprentice: Esporta il set per essere usato in Apprentice
+ export mws: Esporta il set per essere usato in Magic Workstation
+ check updates: Apre la finestra di aggiornamento per scaricare nuovi pacchetti, come giochi, stili e file locale.
+ print preview: Anteprima di stampa
+ print: Stampa carte da questo set
+ reload data: Ricarica tutti i template e il set.
+ exit: Esce da Magic Set Editor; chiede se salvare il set
+
+ edit:
+ undo: Annulla l'ultima azione
+ redo: Ripristina l'ultima azione
+ cut: Muovi il testo selezionato negli appunti
+ cut card: Muovi la carta selezionata negli appunti
+ cut keyword: Muovi la parola-chiave selezionata negli appunti
+ copy: Copia il testo selezionato negli appunti
+ copy card: Copia la carta selezionata negli appunti
+ copy keyword: Copia la parola-chiave selezionata negli appunti
+ paste: Inserisci il testo dagli appunti
+ paste card: Inserisci la carta dagli appunti
+ paste keyword: Inserisci la parola-chiave dagli appunti
+ find: Cerca nel testo delle carte
+ find next: Trova successivo
+ replace: Rimpiazza nel testo della carta
+ auto replace: Rimpiazza il testo automaticamente
+ preferences: Cambia la configurazione di Magic Set Editor
+
+ cards:
+ previous card: Seleziona la carta precedente della lista
+ next card: Seleziona la prossima carta della lista
+ add card: Aggiunge una nuova carta vuota al set
+ add cards: Aggiunge carte multiple al set
+ remove card: Cancella la carta selezionata dal set
+ orientation: Orientamento della carta visualizzata
+ rotate card: Ruota la carta di 90° in senso orario
+ rotate 0: Visualizza la carta nella giusta direzione
+ rotate 270: Visualizza la carta ruotata in senso orario
+ rotate 90: Visualizza la carta ruotata in senso antiorario
+ rotate 180: Visualizza la carta capovolta
+ card list columns: Seleziona quali colonne visualizzare e in quale ordine.
+
+ keywords:
+ previous keyword: Seleziona la parola-chiave precedente
+ next keyword: Seleziona la parola-chiave seguente
+ add keyword: Aggiungi una nuova parola-chiave
+ remove keyword: Cancella la parola-chiave selezionata
+
+ format:
+ bold: Applica il grassetto al testo selezionato
+ italic: Applica il corsivo al testo selezionato
+ symbols: Trasforma il testo selezionato in simboli
+ reminder text: Mostra promemoria per la parola-chiave selezionata
+ # spelling
+ no spelling suggestions: Nessun suggerimento di correzione
+
+ graph:
+ pie: Un grafico a torta, la dimensione della fetta indica il numero di carte.
+ bar: Un grafico a barre, l'altezza della colonna indica il numero di carte.
+ stack: Un grafico con barre sovrapposte.
+ scatter: Una grafico dispersione, la dimensione indica il numero di carte.
+ scatter pie: Una grafico dispersione in cui ogni elemento è un piccolo grafico a torta.
+
+ window:
+ new window: Apri un'altra finestra contenente lo stesso set
+ cards tab: Modifica le carte nel set
+ set info tab: Modifica le informazioni su set, autore, ecc.
+ style tab: Cambia lo stile delle carte
+ keywords tab: Definisci parole chiave aggiuntive per questo set
+ stats tab: Mostra le statistiche delle carte del set
+ random pack tab: Controlla se il set funziona nella pratica generando buste casuali.
+
+ help:
+ index:
+ website:
+ about:
+
+ # Cards panel
+ collapse notes: Nascondi il campo 'Note carta'
+ expand notes: Mpstra il campo 'Note carta'
+ # Random pack panel
+ random seed: Ogni volta saranno generate buste diverse.
+ fixed seed: Usando lo stesso seme si ottengono le stesse buste 'casuali'.
+ seed: Numero del seme per il generatore casuale. Usando lo stesso seme si ottengono le stesse buste 'casuali'.
+ edit pack type: Doppio clic per modificare il tipo di busta
+ number of packs: Il numero di %ss per generare
+
+ # Preferences
+ app language:
+ Nota: Devi riavviare MSE perchè le modifiche abbiano effetto.
+ zoom export:
+ (Se disattivato, le carte sono esportate e copiate al 100% della grandezza e con orientamento normale)
+
+ # apprentice export
+ set code: Un set code è un codice di due caratteri usato da Apprentice come riferimento ad un set.
+
+ # Symbol editor
+ new symbol: Crea un nuovo simbolo
+ open symbol: Apri un simbolo
+ save symbol: Salva il simbolo
+ save symbol as: Salva il simbolo con nome
+ store symbol: Assegna il simbolo al set
+ close symbol editor:Chiude l'editor di simboli
+
+ duplicate: Duplica le forme selezionate
+ group: Raggruppa le forme selezionate
+ ungroup: Divide le forme selezionate
+
+ grid: Mostra griglia
+ snap: Allinea figure e punti alla griglia
+
+ tool:
+ select: Seleziona e muovi le figure
+ rotate: Ruota e taglia le figure
+ points: Modifica i punti di controllo di una figura nel simbolo
+ basic shapes: Disegna figure base, come rettangoli e cerchi
+ symmetry: Aggiunge simmetria al simbolo
+ paint: Disegna sulla figura con un pennello
+
+ select editor:
+ merge: Unisce la figura con quelle sottostanti
+ subtract: Sottrae questa figura da quelle sottostanti, lasciando solo l'area che non le appartiene
+ intersect: Interseca questa figura con quelle sottostanti, lasciando solo l'area in comune
+ difference: Crea la differenza fra questa figura e quelle sottostanti, lasciando intatta l'area non condivisa da altre figure
+ overlap: Posiziona questa figura e i suoi bordi sopra le altre
+ border: Lascia solo il bordo della figura
+
+ drag to shear: Trascina per tagliare il/la %s selezionato/a
+ drag to rotate: Trascina per ruotare il %s selezionato, Ctrl mantiene gli angoli a multipli di 15 gradi
+ drag to resize: Ridimensiona il %s selezionato, Ctrl mantiene le proporzioni
+ click to select shape: Clicca per selezionare una figura, trascina per muoverla, doppio clic per modificarla
+
+ ellipse: Disegna cerchi ed ellissi
+ rectangle: Disegna quadrati e rettangoli
+ polygon: Disegna triangoli, pentagoni ed altri poligoni regolari
+ star: Disegna stelle
+ sides: Il numero delle facce del poligono o dei punti della stella
+ drag to draw shape: Trascina per ridimensionare la figura, Ctrl mantiene le proporzioni, Shift centra la figura
+ draw ellipse: Clicca e trascina per disegnare un'ellisse, tieni premuto Ctrl per un cerchio
+ draw rectangle: Clicca e trascina per disegnare un rettangolo, tieni premuto Ctrl per un quadrato
+ draw polygon: Clicca e trascina epr disegnare un poligono
+ draw star: Clicca e trascina per disegnare una stella
+
+ line segment: Rende diritto il segmento selezionato
+ curve segment: Rende curvo il segmento selezionato
+ free point: Permette di muovere liberamente i due punti di controllo di un punto
+ smooth point: Ammorbidisce il punto selezionato posizionando i due punti di controllo uno opposto all'altro
+ symmetric point: Rende simmetrico il punto selezionato
+ drag to move curve: Trascina per muovere la curva
+ drag to move line: Alt + strascina per muovere la curva; doppio clic per aggiungere un punto su questa linea
+ drag to move point: Clicca e trascina per muovere il punto di controllo; doppio clic per rimuovere il punto
+
+ rotation: Ruota simmetricamente (ruota)
+ reflection: Rifletti simmetricamente (specchia)
+ add symmetry: Aggiunge simmetria agli elementi selezionati
+ remove symmetry: Rimuovi simmetria
+ copies: Numero di copie riflesse (incluso l'originale)
+
+ # Card select
+ filename format: (Usa {card.name} per il nome della carta ; il tipo di file è determinato dall'estensione)
+
+############################################################## Toolbar
+tool:
+ undo: Annulla
+ redo: Ripeti
+
+ cards tab: Carte
+ set info tab: Info set
+ style tab: Stile
+ keywords tab: Keywords
+ stats tab: Statistiche
+ random pack tab: Buste
+
+ # symbol editor
+ store symbol: Usa
+
+ grid: Griglia
+ snap: Allinea
+
+ select: Seleziona
+ rotate: Ruota
+ points: Punti
+ basic shapes: Forme Base
+ symmetry: Simmetria
+ paint: Disegna
+
+ merge: Unisci
+ subtract: Sottrai
+ intersect: Interseca
+ difference: Differenza
+ overlap: Sovrapponi
+ border: Bordi
+
+ ellipse: Ellisse
+ rectangle: Rettangolo
+ polygon: Poligono
+ star: Stella
+
+ rotation: Rotazione
+ reflection: Riflesso
+ add symmetry: Aggiungi
+ remove symmetry: Rimuovi
+
+ line segment: Linea
+ curve segment: Curva
+ free point: Libero
+ smooth point: Ammorbidisci
+ symmetric point: Simmetrico
+
+############################################################## Toolbar help text
+tooltip:
+ cards tab:
+ set info tab: Informazioni set
+ style tab:
+ keywords tab:
+ stats tab:
+ random pack tab: Buste casuali
+
+ new set: Nuovo set
+ open set: Apri set
+ save set: Salva set
+ export: Esporta set
+
+ cut: Taglia
+ copy: Copia
+ paste: Incolla
+ undo: Annulla%s
+ redo: Ripeti%s
+
+ add card: Aggiungi carta
+ remove card: Rimuovi carta selezionata
+ rotate card: Ruota carta
+
+ add keyword: Aggiungi parola-chiave
+ remove keyword: Rimuovi parola-chiave
+
+ bold: Grassetto
+ italic: Corsivo
+ symbols: Simboli
+ reminder text: Promemoria
+
+ pie: Grafico a torta
+ bar: Grafico a barre
+ stack: Grafico con barre sovrapposte
+ scatter: Grafico dispersione
+ scatter pie: Grafico torte dispersione
+
+ cards tab:
+ set info tab: Informazioni set
+ style tab: Stile Carta
+ keywords tab:
+ stats tab:
+
+ # symbol editor
+ store symbol: Usa il simbolo nel set
+
+ grid: Mostra griglia
+ snap: Allinea alla griglia
+
+ select: Seleziona (F5)
+ rotate: Ruota (F6)
+ points: Punti (F7)
+ basic shapes: Forme Base (F8)
+ symmetry: Simmetria (F9)
+ paint: Disegna (F10)
+
+ merge: Unisci alle figure sottostanti
+ subtract: Sottrai dalle figure sottostanti
+ intersect: Interseca con le figure sottostanti
+ difference: Differenza dalle figure sottostanti
+ overlap: Posiziona sopra altre figure
+ border: Disegna come bordo
+
+ ellipse: Cerchio / Ellisse
+ rectangle: Quadrato / Rettangolo
+ polygon: Poligono
+ star: Stella
+
+ rotation: Ruota simmetricamente (ruota)
+ reflection: Rifletti simmetricamente (specchia)
+ add symmetry: Aggiunge simmetria agli elementi selezionati
+ remove symmetry: Rimuovi simmetria
+
+ line segment: Linea retta
+ curve segment: Curva
+ free point: Posizionamento libero
+ smooth point: Rendi punto morbido
+ symmetric point: Rendi punto simmetrico
+
+############################################################## Labels in the GUI
+label:
+ # Cards tab
+ card notes: Note carta:
+ # Keywords tab
+ keyword: Parole chiave
+ match: Nome
+ mode: Tipo
+ uses: Usi
+ reminder: Promemoria
+ rules: Regole aggiuntive
+ standard keyword:
+ questa è una parola-chiave standard di %s, non puoi modificarla.
+ Se crei una copia della parola-chiave, la tua copia avrà la precedenza.
+
+ # Style tab
+ styling options: Opzioni stile
+
+ # Random pack panel
+ pack selection: Selezione Buste
+ pack totals: Totale
+ pack name: Nome busta
+ seed: Seme
+ total cards: Totale
+
+ # Open dialogs
+ all files Tutti i file
+
+ # Other set window dialogs
+ save changes:
+ Il set '%s' è stato modificato.
+
+ Vuoi salvare le modifiche?
+
+ # New set window
+ game type: &Tipo di gioco:
+ style type: &Stile carte:
+
+ stylesheet not found:
+ Il set che stai cercando di aprire usa lo stile "%s".
+ Questo stile non è stato trovato sul tuo sistema, scegli un'alternativa.
+
+ # Preferences
+ language: Lingua
+ windows: Set aperti
+ app language: Lingua dell'interfaccia:
+ card display: Visualizza Carta
+ zoom: &Zoom:
+ percent of normal: % della grandezza originale
+ external programs: Programmi esterni
+ apprentice: &Apprentice:
+ apprentice exe: Eseguibile di Apprentice
+ check at startup: Controlla aggiornamenti all'avvio
+ checking requires internet:
+ Controllare gli aggiornamenti richiede una connessione a Internet.
+ Se non viene trovata nessuna connessione a Internet gli aggiornamenti non vengono controllati.
+
+ Non sono raccolte informazioni quando si controllano gli aggiornamenti.
+
+ # Column select
+ select columns: Scegli le colonne che vuoi visualizzare
+ columns: Colonne:
+
+ # Card select / images export
+ select cards: Carte da esportare
+ selected card count: %s carte saranno esportate.
+ select cards print: Seleziona le carte che vuoi stampare
+ filename format: &Formato:
+ filename conflicts: &Handle duplicating filenames:
+ export filenames: Filenames
+ filename is ignored: (il filename è ignorato)
+
+ # apprentice export
+ set code: Imposta &Codice:
+ apprentice export cancelled: L'esportazione ad Apprentice è stata cancellata
+
+ # Html export
+ html template: Template:
+ html export options:Opzioni esportazione
+
+ # Image slicer
+ original: Originale:
+ result: Risultato:
+ size: Dimensioni
+ original size: &Dimensioni originali
+ size to fit: Adatta alla &Finestra
+ force to fit: A&datta all'immagine
+ custom size: &Manuali
+ selection: Selezione
+ selection left: &Sinistra
+ selection top: A<o
+ selection width: &Larghezza
+ selection height: Al&tezza
+ zoom: Zoom
+ fix aspect ratio: Mantieni proporzioni (larghezza/altezza)
+ zoom amount: Zoom
+ zoom amount x: Zoom &X
+ zoom amount y: Zoom &Y
+ zoom %: %
+ filter: Filtro
+ sharpen filter: &Contrasta
+
+ # Auto replace
+ auto match: Trova
+ auto replace: Rimpiazza
+
+ # Symbol editor
+ sides: facce
+
+ # Packages window
+ package name: Pacchetto
+ package status: Stato
+ package action: Azione
+
+ package conflicts: conflitto modifiche
+ package modified: modifiche locali
+ package updates: aggiornamenti disponibili
+ package installed: installato
+ package installable: non installato
+ install package: installare
+ reinstall package: reinstallare
+ upgrade package: aggiornamento
+ remove package: rimuovere
+
+ installed version: Versione installata:
+ installable version: Ultima versione:
+ installer size: Dimesioni:
+ installer status: Stato:
+ no version: -
+
+############################################################## Buttons/checkboxes/choices in the GUI
+button:
+ # Editor
+ edit symbol: Modifica
+ symbol gallery: Galleria
+
+ # Style panel
+ use for all cards: Usa per tutte le c&arte
+ use custom styling options: Opzioni &specifiche per questa carta
+
+ # Keywords panel
+ insert parameter: Inserisci Parametro...
+ refer parameter: Usa Parametro...
+
+ # Random pack panel
+ generate pack: &Genera Busta
+ random seed: Seme casuale (&R)
+ fixed seed: Seme &fisso
+ add custom pack: Aggiungi Busta personalizzata... (&C)
+
+ # Welcome
+ new set: Nuovo set
+ open set: Apri set
+ check updates: Cerca aggiornamenti
+ last opened set: Ultimo aperto
+
+ # Preferences
+ open sets in new window: Apre tutti i set in una nuova finestra (&W)
+ select: &Seleziona...
+ browse: Sfoglia... (&B)
+ high quality: Rendering ad alta qualità (&H)
+ show lines: Mostra &linee attorno ai campi
+ show editing hints: Mostra suggerimenti per le &modifiche
+ zoom export: usa le impostazioni di zoom e rotazione quando e&sporti
+ check now: Controlla ora (&N)
+ always: Sempre
+ if internet connection exists: Se è presente una connessione a Internet
+ never: Mai
+
+ # Column select
+ move up: Muovi S&u
+ move down: Muovi Giù (&D)
+ show: &Mostra
+ hide: &Nascondi
+
+ # Card select
+ export entire set: Intero set
+ export generated packs: Buste generate
+ export custom cards selection: Selezione manuale
+ select cards: &Seleziona carte...
+ select all: Seleziona &Tutto
+ select none: Annulla &Selezione
+ overwrite: Sovrascrivi vecchi file
+ keep old: Mantieni vecchi file
+ number: Aggiungi un numero al nome file
+ number overwrite: Aggiungi un numero al nome file, sovrascrive esportazioni precedenti
+
+ # Auto replace
+ use auto replace: Rimpiazza automaticamente
+ add item: &Aggiungi
+ remove item: &Rimuovi
+ defaults: Ripristina &predefiniti
+ enabled: Abilitato
+ whole word: Trova solo parola intera
+
+ # Old style update checker (NOTE: this will be removed in a feature version)
+ close: &Chiudi
+
+ # Packages window
+ keep package: &Non modificare
+ don't install package: &Non installare
+ install package: &Installa
+ upgrade package: Aggiorna (&U)
+ reinstall package: Re&installa
+ remove package: &Rimuovi
+ install group: &Installa Tutto
+ upgrade group: &Upgrade Tutto
+ remove group: &Rimuovi Tutto
+
+############################################################## Titles in the GUI
+title:
+ magic set editor: Magic Set Editor
+ %s - magic set editor: %s - Magic Set Editor
+ untitled: Senza titolo
+ about: About Magic Set Editor
+ symbol editor: Editor di Simboli
+ # dialogs
+ new set: Nuovo Set
+ open set: Apri set
+ save set: Salva set come
+ save image: Salva immagine
+ updates available: Aggiornamenti disponibili
+ save changes: Salvare modifiche?
+ select stylesheet: Seleziona stile
+ #preferences
+ preferences: Preferenze
+ global: Globali
+ display: Visualizza
+ directories: Cartelle
+ updates: Aggiornamenti
+ update check: Controlla aggiornamenti
+ locate apprentice: Localizza Apprentice
+ # select
+ select columns: Seleziona colonne
+ select cards: Seleziona carte
+ select cards export: Seleziona carte da esportare
+ # slice
+ slice image: Ritaglia figura
+ # pack
+ custom pack: Tipo Busta personalizzata
+ # print
+ print preview: Anteprima di stampa
+ # export
+ export images: Esporta immagini
+ export cancelled: Esportazione cancellata
+ export html: Esporta in HTML
+ save html: Esporta in HTML
+ # auto replace
+ auto replaces: Rimpiazza automaticamente
+
+ # Package Update Window
+ packages window: Package Manager
+ installing updates: Installazione di aggiornamenti
+
+ cannot create file: Impossibile creare il file
+
+############################################################## Action (undo/redo) names
+action:
+ # List boxes
+ add item: Aggiungi %s
+ remove item: Rimuovi %s
+
+ # Text editor
+ typing: Inserimento testo
+ enter: Invio
+ soft line break: Soft line break
+ insert symbol: Inserisci simbolo
+ backspace: Backspace
+ delete: Cancella
+ cut: Taglia
+ paste: Incolla
+ auto replace: Rimpiazza automaticamente
+ correct: Correzione ortografica
+ # Choice/color editors
+ change: Cambia %s
+
+ # Symbol Actions
+ move: Muovi %s
+ rotate: Ruota %s
+ shear: Taglia %s
+ scale: Ridimensiona %s
+ duplicate: Duplica %s
+ reorder parts: Riordina
+ change combine mode:Cambia combinazione
+ change shape name: Cambia nome figura
+ group parts: Raggruppa
+ ungroup parts: Sgruppa
+
+ # Symbol Part Actions
+ convert to line: Trasforma in linea
+ convert to curve: Trasforma in curva
+ lock point: Blocca punto
+ move handle: Muovi maniglia
+ move curve: Muovi curva
+ add control point: Aggiungi punto di controllo
+ delete point: Cancella punto
+ delete points: Cancella punti
+
+ # Symmetry
+ add symmetry: Aggiungi Simmetria
+ #remove symmetry: Rimuovi simmetria
+ move symmetry center: Muovi centro di simmetria
+ move symmetry handle: Cambia orientamento simmetria
+ change symmetry type: Cambia tipo di simmetria
+ change symmetry copies: Numero di riflessi
+
+############################################################## Error messages
+error:
+ # File related
+ file not found: File non trovato: '%s' nel pacchetto '%s'
+ file not found package like:
+ File non trovato: '%s' nel pacchetto '%s'
+ Se si sta tentando di aprire un file da un altro pacchetto, utilizzare "/package/filename"
+ file parse error:
+ Errore analizzando il file: '%s'
+ %s
+ package not found: Pacchetto non trovato: '%s'
+ package out of date: Il pacchetto '%s' (versione %s) è obsoleto, e' richiesta la versione %s.
+ package too new: Il pacchetto '%s' (versione %s) non è compatibile con la versione %s, richieste di '%s'
+ unable to open output file: Errore nel salvataggio, incapace di aprire il file prodotto
+ unable to store file: Errore nel salvataggio, incapace di salvare il file
+ dependency not given:
+ Il pacchetto '%s' utilizza file dal pacchetto '%s', a non ha una dipendenza.
+ Per risolvere questo problema, aggiungere:
+ depends on: %s %s
+
+ # Script stuff
+ has no member: %s non ha membri '%s'
+ can't convert: Impossibile convertire da %s a %s
+ has no member value: La stringa "%s" non ha membri '%s'
+ can't convert value: Impossibile convertire "%s" da %s a %s
+ unsupported format: Formato stringa non valido: '%s'
+ in function:
+ %s
+ in function %s
+ in parameter:
+ Parameter %s: %s
+ in keyword reminder:
+ %s
+ in reminder text of keyword '%s'
+
+ # Image stuff
+ coordinates for blending overlap: Coordinate per sovrapposizione
+ images used for blending must have the same size: Le immagini sovrapposte devono avere le stesse misure
+
+ # Error from files
+ no game specified: Nessun gioco specificato per il %s
+ no stylesheet specified for the set: Nessuno stile specificato per il set
+ stylesheet and set refer to different game:
+ lo stile ed il set non si riferiscono allo stesso gioco, questo è un errore nel file dello stile
+ unsupported field type: Tipo di campo non supportato: '%s'
+ unsupported fill type: Tipo di riempimento non supportato: '%s'
+ unrecognized value: Valore non riconosciuto: '%s'
+ expected key: Prevista key: '%s'
+ aborting parsing: Fatal errors encountered, aborting reading.
+ newer version:
+ %s
+ Questo file è stato creato con una versione più recente di Magic Set Editor (%s)
+ Aprendolo, alcuni dati del file possono essere perduti.
+ Si raccomanda di aggiornare il programma alla versione più recente.
+ Visita http:://magicseteditor.sourceforge.net/
+ word list type not found: The word list type %s was not found (from a tag)
+ pack item not found: Oggetto "%s" non trovato (da un pacchetto)
+ pack type not found: Tipo "%s" non trovato (da un pacchetto)
+
+ # Update checking
+ checking updates failed: Controllo degli aggiornamenti fallito.
+ no updates: Non ci sono aggiornamenti disponibili.
+
+ # Stats panel
+ dimension not found: Non c'è dimensione di statistiche '%s'
+
+ # Random packs
+ pack type duplicate name:
+ C'e' gia' un tipo di buste dal nome '%s'.
+ Scegli un nome differente.
+
+ # Package update window
+ can't download installer:
+ Impossibile scaricare l'installatore del pacchetto %s da %s.
+ Installazione non riuscita.
+
+ downloading updates: Scarico gli aggiornamenti(%d di %d)
+ installing updates: Aggiorno i pacchetti (%d di %d)
+
+ remove packages:
+ Saranno rimossi %s pacchetti, vuoi continuare?
+ remove packages modified:
+ Saranno rimossi %s pacchetti, %s di questi modificati dopo l'installazione.
+ Non sara' possibile annullare.
+
+ Vuoi continuare?
+ install packages successful: sono stati installati %s pacchetti.
+ remove packages successful: sono stati rimossi %s pacchetti.
+ change packages successful: sono stati modificati %s pacchetti.
+
+ cannot create file: Impossibile creare file '%s', continuare con l'installazione?
+
+############################################################## Types used in scripts / shape names
+type:
+ function: funzione
+ collection: collezione
+ collection of: collezione di %ss
+ object: oggetto
+ double: numero reale
+ integer: numero intero
+ string: stringa
+ boolean: booleano
+ color: colore
+ image: immagine
+ date: date
+ nil: nil
+
+ # Object types
+ package: pacchetto
+ locale: traduzione
+ game: gioco
+ set: set
+ stylesheet: stile
+ export template:modello di esportazione
+ symbol: simbolo
+ card: carta
+ cards: carte
+ field: campo
+ style: stile
+ value: valore
+ keyword: parola-chiave
+ keywords: parole chiave
+ pack: tipo busta
+
+ # Symbol editor shapes
+ shape: forma
+ shapes: forme
+ circle: cerchio
+ ellipse: ellisse
+ square: quadrato
+ rectangle: rettangolo
+ triangle: triangolo
+ rhombus: rombo
+ pentagon: pentagono
+ hexagon: esagono
+ polygon: poligono
+ star: stella
+
+ rotation: rotazione
+ reflection: riflesso
+ group: gruppo
+
+ point: punto
+ points: punti
+
+############################################################## Magic
+package:
+ magic.mse-game:
+ # Card fields
+ name: Nome
+ cc: CC
+ type: Tipo
+ p/t: F/C
+ rarity: Rarità
+ card name: Nome Carta
+
+ # Set info
+ set information: Informazioni set
+ title: Titolo
+ description: Descrizione
+ artist: Artista
+ symbol: Simbolo
+ defaults and automation: Predefiniti e Automatici
+ border color: Colore bordo
+ automatic reminder text: Promemoria automatico
+ automatic card numbers: Numerazione automatica
+ sort special rarity: Ordina rarità speciali
+ mark errors: Segna errori
+ use gradient multicolor: Usa gradienti per multicolori
+
+ # Style
+ colored mana symbols: Simboli mana colorati
+ artifact style: Stile artefatti
+ grey hybrid name: Nome in grigio per gli ibridi
+ use guild mana symbols: Usa simboli gilde per mana
+ popup mana symbols: Simboli mana in rilievo
+ tap symbol: Simbolo TAP
+ center text: Testo centrato
+ inverted common symbol: Inverti simbolo comune
+ image size: Dimensioni immagine
+
+
+ # descriptions/help text
+
+ magic-mana-*.mse-symbol-font:
+ # note: reminder/shortcut must start with a space, otherwise it is used as a shortcut
+ # so typing T *anywhere* would insert a symbol (which would be bad)
+ menu item T: &Simbolo TAP T
+ menu item Q: &Simbolo UNTAP Q
+ menu item W: &Mana Bianco W
+ menu item U: Ma&na Blu U
+ menu item B: &Mana Nero B
+ menu item R: &Mana Rosso R
+ menu item G: &Mana Verde G
+ menu item S: &Mana Neve S
+ menu item X: Variable mana &X X
+ menu item Y: Variable mana &Y Y
+ menu item Z: Variable mana &Z Z
+ menu item I: Mana &Infinito I
+ menu item colorless: &Mana Incolore...
+ title colorless: Mana Incolore
+ message colorless: Inserisci quantità di mana incolore:
+ menu item half: &Mezzo mana
+ menu item |W: &Bianco |W
+ menu item |U: Bl&u |U
+ menu item |B: &Nero |B
+ menu item |R: &Rosso |R
+ menu item |G: &Verde |G
+ menu item |S: &Neve |S
+ menu item 1/2: &Incolore 1/2
+ menu item hybrid: M&ana ibrido (due colori)
+ menu item W/U: Mana Bianco/Blu W/U
+ menu item U/B: Mana Blu/Nero U/B
+ menu item B/R: Mana Nero/Rosso B/R
+ menu item R/G: Mana Rosso/Verde R/G
+ menu item G/W: Mana Verde/Bianco G/W
+ menu item W/B: Mana Bianco/Nero W/B
+ menu item U/R: Mana Blu/Rosso U/R
+ menu item B/G: Mana Nero/Verde B/G
+ menu item R/W: Mana Rosso/Bianco R/W
+ menu item G/U: Mana Verde/Blu G/U
+ menu item hybrid 3: Mana Ibrido (tre colori)
+ menu item W/U/B: Mana Bianco/Blu/Nero W/U/B
+ menu item U/B/R: Mana Blu/Nero/Rosso U/B/R
+ menu item B/R/G: Mana Nero/Rosso/Verde B/R/G
+ menu item R/G/W: Mana Rosso/Verde/Bianco R/G/W
+ menu item G/W/U: Mana Verde/Bianco/Blu G/W/U
+ menu item W/B/R: Mana Bianco/Nero/Rosso W/B/R
+ menu item U/R/G: Mana Blu/Rosso/Verde U/R/G
+ menu item B/G/W: Mana Nero/Verde/Bianco B/G/W
+ menu item R/W/U: Mana Rosso/Bianco/Blu R/W/U
+ menu item G/U/B: Mana Verde/Blu/Nero G/U/B
diff --git a/data/jp.mse-locale/locale b/data/jp.mse-locale/locale
index 99b00af4..c5024fba 100644
--- a/data/jp.mse-locale/locale
+++ b/data/jp.mse-locale/locale
@@ -1,923 +1,923 @@
-mse version: 0.3.8
-installer group: translations/Japanese
-full name: 日本語 (Japanese)
-version: 2009-01-15
-icon: jp.png
-
-############################################################## Menu items
-menu:
- file: &ファイル
- new set: &新規作成... Ctrl+N
- open set: &開く... Ctrl+O
- save set: &上書き保存 Ctrl+S
- save set as: 名前をつけて保存... F12
- export: &輸出
- export html: &HTML...
- export image: カード&イメージ...
- export images: 全てのカードイ&メージ...
- export apprentice: &Apprentice...
- export mws: Magic Workstation...
- check updates: 更新の確認...
- print preview: 印刷プレビュー...
- print: &印刷... Ctrl+P
- reload data: 再読込 Ctrl+F5
- exit: 終了 Alt+F4
-
- edit: &編集
- undo: &元に戻す%s Ctrl+Z
- redo: &やり直し%s Ctrl+Y
- cut: 切り取り Ctrl+X
- copy: &コピー Ctrl+C
- paste: &貼り付け Ctrl+V
- find: &検索 Ctrl+F
- find next: 次を検索 F3
- replace: 置換 Ctrl+H
- auto replace: 自動置換...
- preferences: &設定...
-
- cards: &カード
- previous card: 前のカードを選択 PgUp
- next card: 次のカードを選択 PgDn
- add card: &カードを追加 Ctrl+Enter
- add cards: &複数のカードを追加...
- remove card: &選択したカードを削除
- orientation: &カードの向き
- rotate 0: &標準
- rotate 270: &右回りに90°回転
- rotate 90: 左回りに90°回転
- rotate 180: 180°回転
- card list columns: カードリスト表示設定...
-
- keywords: &キーワード
- previous keyword: 前のキーワードを選択 PgUp
- next keyword: 次のキーワードを選択 PgDn
- add keyword: &キーワードを追加 Ctrl+Enter
- remove keyword: &キーワードを削除 Del
-
- format: &書式
- bold: &太字 Ctrl+B
- italic: &斜体 Ctrl+I
- symbols: &記号 Ctrl+M
- reminder text: &注釈文 Ctrl+R
- insert symbol: 記号の挿入
-#_ADD # spelling
-#_ADD no spelling suggestions: (no suggestions)
-
- graph: &グラフ
- pie: &パイ 1
- bar: &バー 2
- stack: &積層バー 3
- scatter: &散布図 4
- scatter pie: &散乱-パイ 5
-
- window: &ウィンドウ
- new window: &新しいウィンドウ
- cards tab: &カード F5
- set info tab: &セットの情報 F6
- style tab: スタイル F7
- keywords tab: &キーワード F8
- stats tab: 統計 F9
-#_ADD random pack tab: &Random Packs
-
- help: &ヘルプ
- index: &索引... F1
- website: &Magic Set Editorのウェブサイトを開く...
- about: &Magic Set Editorについて...
-
- # symbol editor
-
- new symbol: &新規作成... Ctrl+N
- open symbol: &開く... Ctrl+O
- save symbol: &上書き保存 Ctrl+S
- save symbol as: 名前をつけて保存... F12
- store symbol: 適用 Ctrl+Enter
- close symbol editor:閉じる Alt+F4
-
- duplicate: &複製 Ctrl+D
- group: &グループ化 Ctrl+G
- ungroup: &グループ化を解除 Ctrl+U
-
- tool: &ツール
- select: &選択 F5
- rotate: &回転 F6
- points: &ポイント F7
- basic shapes: &基本的な図形 F8
- symmetry: 対称 F9
- paint: ペイント F10
-
-############################################################## Menu help texts
-help:
- welcome: Magic Set Editor 2 へようこそ
-
- file:
- new set: 新しいセットを作成します。
- open set: 既存のセットを開きます。
- last opened set: 直前に '%s' を開く。
- save set: 現在のセットを保存します。
- save set as: 現在のセットを新しい名前で保存します。
- export: エクスポート...
- export html: 現在のセットをHTML形式で出力します。
- export image: 選択したカードの画像を出力します。
- export images: すべてのカードの画像の出力します。
- export apprentice: 現在のセットをApprentice32形式で出力します。
- export mws: 現在のセットをMagic Workstation形式で出力します。
- check updates: 新しいスタイルや言語ファイル等をダウンロードするためのウィンドウを開きます。
- print preview: 印刷のプレビュー画面を表示します。
- print: このセットを印刷します。
- reload data: 全てのテンプレートファイルと現在のセットを再読み込みします。
- exit: Magic Set Editorを終了します。
-
- edit:
- undo: 直前に行った操作を元に戻します。
- redo: 直前に行った操作をやり直します。
- cut: 選択したテキストをクリップボードに移動します。
- cut card: 選択したカードをクリップボードに移動します。
- cut keyword: 選択したキーワード能力をクリップボードに移動します。
- copy: 選択したテキストをクリップボードにコピーします。
- copy card: 選択したカードをクリップボードにコピーします。
- copy keyword: 選択したキーワード能力をクリップボードにコピーします。
- paste: クリップボードのテキストを挿入します。
- paste card: クリップボードのカードを挿入します。
- paste keyword: クリップボードのキーワード能力を挿入します。
- find: カードテキストから指定したテキストを検索します。
- find next: 次に適合するテキストを検索します。
- replace: カードテキストから指定したテキストを置換します。
- auto replace: どのテキストが自動的に置き換えられるべきですか?
- preferences: Magic Set Editorの設定を変更します。
-
- cards:
- previous card: リストの前のカードを選択します。
- next card: リストの次のカードを選択します。
- add card: 新しいカードを現在のセットに加えます。
- add cards: 複数のカードを現在のセットに加えます。
- remove card: 現在のセットから選ばれたカードを削除します。
- orientation: 表示されるカードの向きを変更します。
- rotate card: カードを右回りに90°回転させて表示します。
- rotate 0: カードを回転させずに表示します。
- rotate 270: カードを右回りに90°回転させて表示します。
- rotate 90: カードを左回りに90°回転させて表示します。
- rotate 180: カードを180°回転させて表示します。
- card list columns: 表示させる列の設定を行います。
-
- keywords:
- previous keyword: リストの前のキーワード能力を選択します。
- next keyword: リストの次のキーワード能力を選択します。
- add keyword: 新しいキーワード能力を現在のセットに加えます。
- remove keyword: 現在のセットから選ばれたキーワード能力を削除します。
-
- format:
- bold: 選択したテキストを太字(ボールド体)にします。
- italic: 選択したテキストを斜体(イタリック体)にします。
- symbols: 選択したテキストをマナ・シンボルなどのシンボルにします。
- reminder text: 選ばれたキーワード能力のための注釈文を表示させます。
-#_ADD # spelling
-#_ADD no spelling suggestions: There are no suggestions for correcting this error
-
- graph:
- pie: を円グラフ、スライスのサイズのカードの数を示します
- bar: バーグラフは、バーの高さをカードの数を示します
- stack: バーグラフを積み重ねバー
- scatter: 散布図は、カードの大きさの数を示します
- scatter pie: 各アイテムを散布図では、小さなパイグラフ
-
- window:
- new window: 同じセットを編集するために、もう一つのウィンドウを表示します。
- cards tab: 現在のセットのカードを編集します。
- set info tab: 現在のセットについての情報を表示します。
- style tab: 現在のカードのスタイルを変更します。
- keywords tab: 現在のセットのためのキーワード能力を定義します。
- stats tab: 現在のセットの統計を表示します。
-#_ADD random pack tab: Try how the set works out in practice by generating random booster packs.
-
- help:
- index:
- website:
- about:
-
- # Cards panel
-#_ADD collapse notes: Hide the card notes box
-#_ADD expand notes: Show the card notes box
- # Random pack panel
-#_ADD random seed: Different packs will be generated each time.
-#_ADD fixed seed: Using the same seed number gives the same 'random' packs.
-#_ADD seed: Seed number for the random generator. Using the same seed number gives the same 'random' packs.
-#_ADD edit pack type: Double click to edit pack type
-#_ADD number of packs: The number of %ss to generate
-
- # Preferences
- app language:
- 注: 変更を適用するためにはMagic Set Editorを再起動する必要があります。
- zoom export:
- (このチェック・ボックスがオフの場合、
- エクスポートされる画像に回転やズームは適用されません)
-
- # apprentice export
- set code: セットされたコードは、Apprenticeによってセットを参照することに使われる2キャラクターのコードです。
-
- # Symbol editor
- new symbol: 新しいセット・シンボルを作成します。
- open symbol: 既存のセット・シンボルを開きます。
- save symbol: 現在のセット・シンボルを保存します。
- save symbol as: 現在のセット・シンボルを新しい名前で保存します。
- store symbol: 現在のセット・シンボルを、現在のセットで使用します。
- close symbol editor:シンボル・エディタを終了します。
-
- duplicate: 選択した図形を複製します。
- group: 選択した図形をグループにします。
- ungroup: 選択したグループを解除します。
-
- grid: グリッドの表示/非表示を変更します。
- snap: 図形とポイントをグリッドに合わせるかどうか選択します。
-
- tool:
- select: 図形を選択します。
- rotate: 図形を回転させます。
- points: 図形を編集するためのポイントを設置します。
- basic shapes: 長方形や円などの、基本的な図形を描写します。
- symmetry: 対象線を加えます。
- paint: ペイントブラシツールを使って図形をペイントします。
-
- select editor:
- merge: それの下でこの形をそれらと合併させます
- subtract: それの下の形からこの形を引いて、すなわちこの形でエリアだけをその形に残します
- intersect: それ、両方のエリアだけが形成する葉の下の形でのこの形を横切ります
- difference: 異なってそれの下の形からのこの形、エリアだけを少しの他の形にも残します
- overlap: それの下の形の上にこの形と、その縁を置いてください
- border: 縁としてのこの形を引きます
-
- drag to shear: 刈るべき牽引は選ばれています %s
- drag to rotate: 回転させるべき牽引は選ばれています %s, Ctrlは15度の倍数に角度を制限します
- drag to resize: サイズを変更すべき牽引選ばれて %s、Ctrlがサイズを制限します
- click to select shape: 形を選ぶクリック、形を動かす牽引、形を編集する二重のクリック
-
- ellipse: 円と長円を引いてください
- rectangle: 広場と長方形を引いてください
- polygon: 三角形、五角形、及び他の通常の多角形を引いてください
- star: 星を引いてください
- sides: 多角形あるいは星の点の側面の数
- drag to draw shape: 形のサイズを変更するために引きずられてください、Ctrlが形を制限して、シフトが形を中心に置きます
- draw ellipse: クリック及び長円を引く牽引、円のためのCtrlを開いてください
- draw rectangle: クリック及び長方形を引く牽引、広場のためのCtrlを開いてください
- draw polygon: クリック及び多角形を引く牽引
- draw star: クリック及びスターのために引くべき牽引
-
- line segment: 選ばれたラインセグメントをまっすぐにします
- curve segment: 選ばれたラインセグメントが曲げた型式
- free point: ポイントの2つのコントロールポイントが自由に動かされることを許します
- smooth point: お互いの反対側に2つのコントロールポイントを置くことによって選ばれたポイント〔点〕を滑らかにします
- symmetric point: 選ばれたポイント映した型式
- drag to move curve: カーブを動かす牽引
- drag to move line: Alt +変えるべき牽引は曲がります; このラインの上の1ポイントを加えるためにダブルクリックしてください
- drag to move point: クリック及び変えるべき牽引コントロールポイント; ポイントを取り除くためにダブルクリックしてください
-
- rotation: 対称(車輪〔ハンドル〕)を回転させること
- reflection: 対称(鏡)を反映すること
- add symmetry: 対称をシンボル〔記号〕に加えてください
- remove symmetry: この対称を取り除いてください
- copies: (オリジナルを含む)数の反映
-
- # Card select
- filename format: (カードの名前のための使用{card.name}; ファイルフォーマットが決定される 延長に基づいて )
-
-############################################################## Toolbar
-tool:
- undo: 元に戻す
- redo: やり直し
-
- cards tab: カード
- set info tab: セットの情報
- style tab: スタイル
- keywords tab: キーワード
- stats tab: 統計値
-#_ADD random pack tab: Random
-
- # symbol editor
- store symbol: 使います
-
- grid: 格子〔グリッド〕
- snap: 楽な仕事
-
- select: 選びます
- rotate: 回転します
- points: ポイント〔点〕
- basic shapes: 基本的な形
- symmetry: 対称
- paint: ペイント
-
- merge: 結合
- subtract: 引きます
- intersect: 相交わります
- difference: 相違
- overlap: オーバーラップ
- border: 縁
-
- ellipse: 長円
- rectangle: 長方形
- polygon: 多角形
- star: 星形
-
- rotation: 回転
- reflection: 反射
- add symmetry: 加えます
- remove symmetry: 削除
-
- line segment: ライン
- curve segment: カーブ
- free point: 解放します
- smooth point: 滑らかにします
- symmetric point: 対称的です
-
-############################################################## Toolbar help text
-tooltip:
- cards tab:
- set info tab: セットの情報
- style tab:
- keywords tab:
- stats tab:
-#_ADD random pack tab: Random packs
-
- new set: 新規作成
- open set: 開く
- save set: 上書き保存
- export: エクスポート
-
- cut: 切り取り
- copy: コピー
- paste: 貼り付け
- undo: 元に戻す%s
- redo: やり直す%s
-
- add card: カードを追加
- remove card: 選択したカードを削除
- rotate card: カードの向き
-
- add keyword: キーワードを追加
- remove keyword: キーワードを削除
-
- bold: 太字
- italic: 斜体
- symbols: シンボル
- reminder text: 注釈文
-
- pie: 円グラフ
- bar: バーグラフ
- stack: 積み重ね棒グラフ
- scatter: 散布図
- scatter pie: 散乱-パイプロット
-
- cards tab:
- set info tab: セットの情報
- style tab: スタイル
- keywords tab:
- stats tab:
-
- # symbol editor
- store symbol: 使用セットの記号
-
- grid: グリッド
- snap: グリッドへ合わせる
-
- select: 選びます (F5)
- rotate: 回転します (F6)
- points: Points (F7)
- basic shapes: 基本的な形 (F8)
- symmetry: 対称 (F9)
- paint: 形の上の塗料 (F10)
-
- merge: 下の形と合併してください
- subtract: 下の形から引き算をしてください
- intersect: 下の形で相交わってください
- difference: 下の形と異なってください
- overlap: 他の形の上の場所
- border: 縁としての引き分け
-
- ellipse: 長円
- rectangle: 長方形
- polygon: 多角形
- star: 星
-
- rotation: 対称を回転させること
- reflection: 対称を反映すること
- add symmetry: 対称を選ばれた部分に加えてください
- remove symmetry: この対称を取り除いてください
-
- line segment: 直線部分にライン
- curve segment: 曲がるために
- free point: 鍵を開けること意味
- smooth point: ポイントを滑らかにしてください
- symmetric point: ポイントを対称的にしてください
-
-############################################################## Labels in the GUI
-label:
- # Cards tab
- card notes: カードメモ:
- # Keywords tab
- keyword: キーワード
- match: 適合
- mode: モード
- uses: 使用
- reminder: 注釈文
- rules: 追加のルール
- standard keyword:
- これは標準%sのキーワード能力であるため編集できません。
- あなたがこれのキーワードのコピーを作ったとしても、こちらが優先されます。
-
- # Style tab
- styling options: スタイル・オプション
-
- # Random pack panel
-#_ADD pack selection: Pack selection
-#_ADD pack totals: Totals
-#_ADD pack name: Pack name
-#_ADD seed: Seed
-#_ADD total cards: Total
-
- # Open dialogs
- all files 全てのファイル
-
- # Other set window dialogs
- save changes:
- セット'%s'は変わりました。
-
- あなたは変更内容を保存したいですか?
-
- # New set window
- game type: &ゲームタイプ:
- style type: &カードスタイル:
-
- stylesheet not found:
- あなたが始めようとしているセットがスタイルシートを使う "%s"。
- このstylesheetがあなたのシステムで見つからないで、選択肢を選んでください。
-
- # Preferences
- language: 言語
-#_ADD windows: Open sets
- app language: ユーザー・インタフェースの言語:
- card display: カード表示
- zoom: &ズーム:
- percent of normal: 正常なサイズのパーセント値
- external programs: 外部のプログラム
- apprentice: &Apprentice:
- apprentice exe: Apprenticeを起動できます
- check at startup: 起動ごとのバージョン・チェック
- checking requires internet:
- アップデートを調べることはインターネット接続を必要とします。
- インターネット接続が利用可能でない時、これはチェックされません。
-
- 情報はアップデートを調べる時、集められません。
-
- # Column select
- select columns: あなたが表示したい列を選んでください
- columns: 列:
-
- # Card select / images export
-#_ADD select cards: Cards to export
-#_ADD selected card count: %s cards will be exported.
- select cards print: あなたが印刷したいカードを選んでください
- filename format: &フォーマット:
- filename conflicts: &取っ手を複写することのファイル名:
- export filenames: ファイル名
- filename is ignored: (ファイル名は無視されます)
-
- # apprentice export
- set code: セット・コード:
- apprentice export cancelled: Apprenticeへのエクスポートを取り消す
-
- # Html export
- html template: テンプレート:
- html export options:エクスポート・オプション
-
- # Image slicer
- original: オリジナル:
- result: 結果:
- size: サイズ
-#_ADD original size: &Original Size
-#_ADD size to fit: Size to &Fit
-#_ADD force to fit: F&orce to Fit
-#_ADD custom size: &Custom Size
- selection: 選択
-#_ADD selection left: &Left
-#_ADD selection top: &Top
-#_ADD selection width: &Width
-#_ADD selection height: &Height
- zoom: ズーム
-#_ADD fix aspect ratio: Fix aspect ratio (width/height)
-#_ADD zoom amount: Zoom
-#_ADD zoom amount x: Zoom &X
-#_ADD zoom amount y: Zoom &Y
-#_ADD zoom %: %
- filter: フィルター
-#_ADD sharpen filter: &Sharpen filter
-
- # Auto replace
- auto match: 適合
- auto replace: 置換
-
- # Symbol editor
- sides: 側
-
- # Packages window
- package name: パッケージ
- package status: 地位
- package action: アクション
-
- package conflicts: 競合する変更
- package modified: ローカルの変更
- package updates: 利用可能な更新プログラム
- package installed: インストール
- package installable: 正しくインストール
- install package: インストール
-#_ADD reinstall package: reinstall
- upgrade package: アップグレード
- remove package: 取り外す
-
-#_ADD installed version: Installed version:
-#_ADD installable version: Latest version:
-#_ADD installer size: Size:
-#_ADD installer status: Status:
-#_ADD no version: -
-#_ADD
-############################################################## Buttons/checkboxes/choices in the GUI
-button:
- # Editor
- edit symbol: 編集します
- symbol gallery: ギャラリー
-
- # Style panel
- use for all cards: &全てのカードにこのスタイルを使用
- use custom styling options: 現在のオプションをこのカードにのみ適用する
-
- # Keywords panel
- insert parameter: パラメータの挿入...
- refer parameter: パラメータを使用する...
-
- # Random pack panel
-#_ADD generate pack: &Generate Pack
-#_ADD random seed: &Random Seed
-#_ADD fixed seed: &Fixed Seed
-#_ADD add custom pack: Add &Custom Pack...
-
- # Welcome
- new set: 新規作成
- open set: セットを開く
- check updates: 更新チェック
- last opened set: 直前のセット
-
- # Preferences
-#_ADD open sets in new window: Open all sets in a new &window
- select: &選択...
- browse: &参照...
- high quality: &高品質の画像
- show lines: 編集フィールドの線を表示する
- show editing hints: 編集の際にボックスとヒントを表示する
- zoom export: エクスポートする際にズームと回転の設定を使用する。
- check now: &今のチェック
- always: 常に行う
- if internet connection exists: インターネットに接続していれば
- never: 行わない
-
- # Column select
- move up: 上へ移動
- move down: 下へ移動
- show: &表示
- hide: &非表示
-
- # Card select
-#_ADD export entire set: Entire set
-#_ADD export generated packs: Generated packs
-#_ADD export custom cards selection: Custom selection
-#_ADD select cards: &Select Cards...
- select all: &すべてを選択
- select none: &選択の解除
- overwrite: 古いファイルを上書き
- keep old: 古いファイルを保持する
- number: 番号をファイル名に加える
- number overwrite: 以前にエクスポートしたファイルに上書き、番号をファイル名に加える
-
- # Auto replace
- use auto replace: 自動置換を使用する
- add item: &追加
- remove item: &削除
- defaults: &デフォルト
- enabled: 可能なもの
- whole word: 適合するものだけ
-
- # Old style update checker (NOTE: this will be removed in a feature version)
- close: &閉じる
-
- # Packages window
- keep package: &は変更しないで
- don't install package: &はインストールしないで
- install package: &インストール
- upgrade package: &アップグレード
-#_ADD reinstall package: Re&install
- remove package: &取り外す
-#_ADD install group: &Install All
-#_ADD upgrade group: &Upgrade All
-#_ADD remove group: &Remove All
-
-############################################################## Titles in the GUI
-title:
- magic set editor: Magic Set Editor
- %s - magic set editor: %s - Magic Set Editor
- untitled: Untitled
- about: Magic Set Editorについて
- symbol editor: シンボル・エディタ
- # dialogs
- new set: 新規作成
- open set: 開く
- save set: 上書き保存
- save image: 画像の保存
- updates available: アップデートが利用可能です。
- save changes: 変更を保存しますか?
- select stylesheet: スタイルシートの選択
- #preferences
- preferences: 設定
- global: 地域設定
- display: 表示設定
- directories: ディレクトリ設定
- updates: アップデート
- update check: アップデート・チェック
- locate apprentice: Apprentice捜し
- # select
- select columns: 列の選択
- select cards: カードの選択
- select cards export:選択したカードのエクスポート
- # slice
- slice image: 画像編集
-#_ADD # pack
-#_ADD custom pack: Custom Pack Type
- # print
- print preview: 印刷プレビュー
- # export
- export images: 画像のエクスポート
- export cancelled: エクスポートの取り消し
- export html: HTMLへのエクスポート
- save html: HTMLへの保存
- # auto replace
- auto replaces: 自動置換
-
- # Package Update Window
- packages window: パッケージマネージャ
- installing updates: 更新プログラムのインストール
-
- cannot create file: ファイルを作成することはできません。
-
-############################################################## Action (undo/redo) names
-action:
- # List boxes
- add item: 追加する %s
- remove item: 取り外す %s
-
- # Text editor
- typing: タイピング
- enter: 入れます
- soft line break: 柔軟路線中断
- insert symbol: 挿入物シンボル〔記号〕
- backspace: バックスペース
- delete: 削除します
- cut: カット
- paste: ペースト
- auto replace: オートマチックな取って代わること
-#_ADD correct: Spelling Correction
- # Choice/color editors
- change: 変化 %s
-
- # Symbol Actions
- move: 動き %s
- rotate: 回転します %s
- shear: せん断 %s
- scale: サイズを変更します %s
- duplicate: 写し %s
- reorder parts: 再注文
- change combine mode:変化連合体モード
- change shape name: 変化形名
- group parts: グループ
- ungroup parts: 分かれます
-
- # Symbol Part Actions
- convert to line: 線を引くべき転向者
- convert to curve: 曲げるべき転向者
- lock point: ロック・ポイント
- move handle: 動き取っ手
- move curve: 動き曲線
- add control point: 足し算をすることコントロールポイント
- delete point: ポイントを削除する
- delete points: ポイントを削除してください
-
- # Symmetry
- add symmetry: 対称を加えてください
- #remove symmetry: 対称を取り除いてください
- move symmetry center: 動き対称センター
- move symmetry handle: 変化対称オリエンテーション
- change symmetry type: 変化対称タイプ
- change symmetry copies: 数の反映
-
-############################################################## Error messages
-error:
- # File related
- file not found: 見つかっていないファイル: '%s' パッケージで '%s'
- file not found package like:
- ファイルが見つかりません '%s' パッケージの '%s'
- しようとしている場合は、別のパッケージからファイルを開くには、使用する "/パッケージ/ファイル名"
- file parse error:
- ファイルをパースし誤り: '%s'
- %s
- package not found: 見つかっていないパッケージ: '%s'
- package out of date: パッケージ '%s' (バージョン %s) 時代遅れであることがそうである バージョン %s が必要とされる。
- package too new: パッケージe '%s' (バージョン %s) バージョンと互換性がない %s, 要求される '%s'
- unable to open output file: 蓄えながらの誤りは出力ファイルを開けることができないです
- unable to store file: 蓄えながらの誤りはファイルを蓄えることができないです
- dependency not given:
- パッケージ '%s' ファイルを使用して、パッケージの '%s', しかし、依存関係が表示されないことです。
- を解決するには、追加:
- に依存して: %s %s
-
- # Script stuff
- has no member: %s メンバーを持っていません '%s'
- can't convert: 転向できない %s に '%s'
- has no member value: 紐 "%s" メンバーを持っていない '%s'
- can't convert value: 転向できない "%s" から %s に %s
- unsupported format: 無効なフォーマット: '%s'
- in function:
- %s
- の関数 %s
- in parameter:
- パラメータ %s: %s
- in keyword reminder:
- %s
- キーワードでのテキストを思い出させる '%s'
-
- # Image stuff
- coordinates for blending overlap: オーバーラップを混ぜることのための座標
- images used for blending must have the same size: 混ざることのために使われたイメージは同じサイズを持たなければなりません
-
- # Error from files
- no game specified: のゲームに指定された %s
- no stylesheet specified for the set: セットのために指定されたスタイルシートはありません
- stylesheet and set refer to different game:
- スタイルシート及びセットは同じゲームを参照しないで、これはスタイルシートファイルのエラー〔誤り〕です
- unsupported field type: サポートされていないフィールドタイプ: '%s'
- unsupported fill type: サポートされていないいっぱいタイプ: '%s'
- unrecognized value: 認識されていない価値〔価格〕: '%s'
- expected key: 期待されているキー: '%s'
- aborting parsing: 読書を流産させて、遭われた致命的エラー
- newer version:
- %s
- このファイルがMagic Set Editorのより新しいバージョンで作られる (%s) あなたがそれを開けて、ファイルのいくつかの局面が紛失しているかもしれない時
- あなたは最新のバージョンにアップグレードするように勧められます。
- http::を訪問してください / magicseteditor.sourceforge.net /
- word list type not found: リストタイプという語 %s (タグから)見つからなかった
-#_ADD pack item not found: The pack item "%s" was not found (from a pack type)
-#_ADD pack type not found: The pack type "%s" was not found (from a pack type)
-
- # Update checking
- checking updates failed: アップデートが失敗したか調べます。
- no updates: 利用可能なアップデートはありません。
-
- # Stats panel
- dimension not found: ディメンションはありません '%s'
-
-#_ADD # Random packs
-#_ADD pack type duplicate name:
- There is already a pack type named '%s'.
- Please choose a different name.
-#_ADD
- # Package update window
-# checking updates: アップデートを調べます。
- can't download installer:
- インストーラのパッケージをダウンロードできませんでした。 %s 〜から %s.
- 何もがインストールされています。
-
- downloading updates: 更新プログラムのダウンロード (%d of %d)
- installing updates: パッケージのアップデート (%d of %d)
-
- remove packages:
- これが削除さ %s パッケージを続行するようにしたいですか?
- remove packages modified:
- これが削除さ %s パッケージは、 %s それらをインストールした後が変更されています。
- 削除して元に戻すことはできません。
- install packages successful: %s パッケージが正常にインストールします。
- remove packages successful: %s パッケージが正常に削除されます。
- change packages successful: %s パッケージが正常に変更されました。
-
- cannot create file: ファイルを作成することはできません。 '%s', は、インストールを続けるですか?
-
-############################################################## Types used in scripts / shape names
-type:
- function: 機能
- collection: 収集
- collection of: 収集 %ss
- object: 物〔対象/目的〕
- double: 実数
- integer: 整数数
- string: 紐〔文字列〕
- boolean: ブールです
- color: 色
- image: イメージ
-#_ADD date: date
- nil: 何も
-
- # Object types
-#_ADD package: package
-#_ADD locale: translation
- game: ゲーム
- set: セット
- stylesheet: スタイルシート
- export template:輸出テンプレート
-#_ADD symbol: symbol
- card: カード
- cards: カード
- field: フィールド
- style: スタイル
- value: 値
- keyword: キーワード
- keywords: キーワード
-#_ADD pack: pack type
-
- # Symbol editor shapes
- shape: 形
- shapes: 形
- circle: 円
- ellipse: 長円
- square: 方形
- rectangle: 長方形
- triangle: 三角形
- rhombus: 菱形
- pentagon: 五角形
- hexagon: 六角形
- polygon: 多角形
- star: 星形
-
- rotation: 回転
- reflection: 反射
- group: グループ
-
- point: ポイント
- points: ポイント
-
-
-############################################################## Magic
-package:
- magic.mse-game:
- # Card fields
- name: 名前
- cc: マナ・コスト
- type: カード・タイプ
- p/t: パワー/タフネス
- rarity: レアリティ
- card name: カード名
-
- # Set info
-
- # descriptions/help text
-
- magic-mana-*.mse-symbol-font:
- # note: reminder/shortcut must start with a space, otherwise it is used as a shortcut
- # so typing T *anywhere* would insert a symbol (which would be bad)
- menu item T: タップ・シンボル(&T) T
-#_ADD menu item Q: &Untap symbol Q
- menu item W: 白マナ(&W) W
- menu item U: 青マナ(&U) U
- menu item B: 黒マナ(&B) B
- menu item R: 赤マナ(&R) R
- menu item G: 緑マナ(&G) G
- menu item S: 氷雪マナ(&S) S
- menu item X: 不特定マナ・シンボル(&X) X
- menu item Y: 不特定マナ・シンボル(&Y) Y
- menu item Z: 不特定マナ・シンボル(&Z) Z
-#_ADD menu item I: &Infinite mana I
- menu item colorless: 無色マナ(&C)...
- title colorless: 無色マナ(&C)
- message colorless: 任意の数の無色マナ
- menu item half: 半分のマナ・シンボル(&H)
- menu item |W: 白マナ(&W) |W
- menu item |U: 青マナ(&U) |U
- menu item |B: 黒マナ(&B) |B
- menu item |R: 赤マナ(&R) |R
- menu item |G: 緑マナ(&G) |G
- menu item |S: 氷雪マナ(&S) |S
- menu item 1/2: 無色マナ(&C) 1/2
- menu item hybrid: 2色の混成マナ・シンボル(&Y)
- menu item W/U: 白/青 マナ W/U
- menu item U/B: 青/黒 マナ U/B
- menu item B/R: 黒/赤 マナ B/R
- menu item R/G: 赤/緑 マナ R/G
- menu item G/W: 緑/白 マナ G/W
- menu item W/B: 白/黒 マナ W/B
- menu item U/R: 青/赤 マナ U/R
- menu item B/G: 黒/緑 マナ B/G
- menu item R/W: 赤/白 マナ R/W
- menu item G/U: 緑/青 マナ G/U
- menu item hybrid 3: 3色の混成マナ・シンボル(&Y)
- menu item W/U/B: 白/青/黒 マナ W/U/B
- menu item U/B/R: 青/黒/赤 マナ U/B/R
- menu item B/R/G: 黒/赤/緑 マナ B/R/G
- menu item R/G/W: 赤/緑/白 マナ R/G/W
- menu item G/W/U: 緑/白/青 マナ G/W/U
- menu item W/B/R: 白/黒/赤 マナ W/B/R
- menu item U/R/G: 青/赤/緑 マナ U/R/G
- menu item B/G/W: 黒/緑/白 マナ B/G/W
- menu item R/W/U: 赤/白/青 マナ R/W/U
- menu item G/U/B: 緑/青/黒 マナ G/U/B
-
+mse version: 0.3.8
+installer group: translations/Japanese
+full name: 日本語 (Japanese)
+version: 2009-01-15
+icon: jp.png
+
+############################################################## Menu items
+menu:
+ file: &ファイル
+ new set: &新規作成... Ctrl+N
+ open set: &開く... Ctrl+O
+ save set: &上書き保存 Ctrl+S
+ save set as: 名前をつけて保存... F12
+ export: &輸出
+ export html: &HTML...
+ export image: カード&イメージ...
+ export images: 全てのカードイ&メージ...
+ export apprentice: &Apprentice...
+ export mws: Magic Workstation...
+ check updates: 更新の確認...
+ print preview: 印刷プレビュー...
+ print: &印刷... Ctrl+P
+ reload data: 再読込 Ctrl+F5
+ exit: 終了 Alt+F4
+
+ edit: &編集
+ undo: &元に戻す%s Ctrl+Z
+ redo: &やり直し%s Ctrl+Y
+ cut: 切り取り Ctrl+X
+ copy: &コピー Ctrl+C
+ paste: &貼り付け Ctrl+V
+ find: &検索 Ctrl+F
+ find next: 次を検索 F3
+ replace: 置換 Ctrl+H
+ auto replace: 自動置換...
+ preferences: &設定...
+
+ cards: &カード
+ previous card: 前のカードを選択 PgUp
+ next card: 次のカードを選択 PgDn
+ add card: &カードを追加 Ctrl+Enter
+ add cards: &複数のカードを追加...
+ remove card: &選択したカードを削除
+ orientation: &カードの向き
+ rotate 0: &標準
+ rotate 270: &右回りに90°回転
+ rotate 90: 左回りに90°回転
+ rotate 180: 180°回転
+ card list columns: カードリスト表示設定...
+
+ keywords: &キーワード
+ previous keyword: 前のキーワードを選択 PgUp
+ next keyword: 次のキーワードを選択 PgDn
+ add keyword: &キーワードを追加 Ctrl+Enter
+ remove keyword: &キーワードを削除 Del
+
+ format: &書式
+ bold: &太字 Ctrl+B
+ italic: &斜体 Ctrl+I
+ symbols: &記号 Ctrl+M
+ reminder text: &注釈文 Ctrl+R
+ insert symbol: 記号の挿入
+#_ADD # spelling
+#_ADD no spelling suggestions: (no suggestions)
+
+ graph: &グラフ
+ pie: &パイ 1
+ bar: &バー 2
+ stack: &積層バー 3
+ scatter: &散布図 4
+ scatter pie: &散乱-パイ 5
+
+ window: &ウィンドウ
+ new window: &新しいウィンドウ
+ cards tab: &カード F5
+ set info tab: &セットの情報 F6
+ style tab: スタイル F7
+ keywords tab: &キーワード F8
+ stats tab: 統計 F9
+#_ADD random pack tab: &Random Packs
+
+ help: &ヘルプ
+ index: &索引... F1
+ website: &Magic Set Editorのウェブサイトを開く...
+ about: &Magic Set Editorについて...
+
+ # symbol editor
+
+ new symbol: &新規作成... Ctrl+N
+ open symbol: &開く... Ctrl+O
+ save symbol: &上書き保存 Ctrl+S
+ save symbol as: 名前をつけて保存... F12
+ store symbol: 適用 Ctrl+Enter
+ close symbol editor:閉じる Alt+F4
+
+ duplicate: &複製 Ctrl+D
+ group: &グループ化 Ctrl+G
+ ungroup: &グループ化を解除 Ctrl+U
+
+ tool: &ツール
+ select: &選択 F5
+ rotate: &回転 F6
+ points: &ポイント F7
+ basic shapes: &基本的な図形 F8
+ symmetry: 対称 F9
+ paint: ペイント F10
+
+############################################################## Menu help texts
+help:
+ welcome: Magic Set Editor 2 へようこそ
+
+ file:
+ new set: 新しいセットを作成します。
+ open set: 既存のセットを開きます。
+ last opened set: 直前に '%s' を開く。
+ save set: 現在のセットを保存します。
+ save set as: 現在のセットを新しい名前で保存します。
+ export: エクスポート...
+ export html: 現在のセットをHTML形式で出力します。
+ export image: 選択したカードの画像を出力します。
+ export images: すべてのカードの画像の出力します。
+ export apprentice: 現在のセットをApprentice32形式で出力します。
+ export mws: 現在のセットをMagic Workstation形式で出力します。
+ check updates: 新しいスタイルや言語ファイル等をダウンロードするためのウィンドウを開きます。
+ print preview: 印刷のプレビュー画面を表示します。
+ print: このセットを印刷します。
+ reload data: 全てのテンプレートファイルと現在のセットを再読み込みします。
+ exit: Magic Set Editorを終了します。
+
+ edit:
+ undo: 直前に行った操作を元に戻します。
+ redo: 直前に行った操作をやり直します。
+ cut: 選択したテキストをクリップボードに移動します。
+ cut card: 選択したカードをクリップボードに移動します。
+ cut keyword: 選択したキーワード能力をクリップボードに移動します。
+ copy: 選択したテキストをクリップボードにコピーします。
+ copy card: 選択したカードをクリップボードにコピーします。
+ copy keyword: 選択したキーワード能力をクリップボードにコピーします。
+ paste: クリップボードのテキストを挿入します。
+ paste card: クリップボードのカードを挿入します。
+ paste keyword: クリップボードのキーワード能力を挿入します。
+ find: カードテキストから指定したテキストを検索します。
+ find next: 次に適合するテキストを検索します。
+ replace: カードテキストから指定したテキストを置換します。
+ auto replace: どのテキストが自動的に置き換えられるべきですか?
+ preferences: Magic Set Editorの設定を変更します。
+
+ cards:
+ previous card: リストの前のカードを選択します。
+ next card: リストの次のカードを選択します。
+ add card: 新しいカードを現在のセットに加えます。
+ add cards: 複数のカードを現在のセットに加えます。
+ remove card: 現在のセットから選ばれたカードを削除します。
+ orientation: 表示されるカードの向きを変更します。
+ rotate card: カードを右回りに90°回転させて表示します。
+ rotate 0: カードを回転させずに表示します。
+ rotate 270: カードを右回りに90°回転させて表示します。
+ rotate 90: カードを左回りに90°回転させて表示します。
+ rotate 180: カードを180°回転させて表示します。
+ card list columns: 表示させる列の設定を行います。
+
+ keywords:
+ previous keyword: リストの前のキーワード能力を選択します。
+ next keyword: リストの次のキーワード能力を選択します。
+ add keyword: 新しいキーワード能力を現在のセットに加えます。
+ remove keyword: 現在のセットから選ばれたキーワード能力を削除します。
+
+ format:
+ bold: 選択したテキストを太字(ボールド体)にします。
+ italic: 選択したテキストを斜体(イタリック体)にします。
+ symbols: 選択したテキストをマナ・シンボルなどのシンボルにします。
+ reminder text: 選ばれたキーワード能力のための注釈文を表示させます。
+#_ADD # spelling
+#_ADD no spelling suggestions: There are no suggestions for correcting this error
+
+ graph:
+ pie: を円グラフ、スライスのサイズのカードの数を示します
+ bar: バーグラフは、バーの高さをカードの数を示します
+ stack: バーグラフを積み重ねバー
+ scatter: 散布図は、カードの大きさの数を示します
+ scatter pie: 各アイテムを散布図では、小さなパイグラフ
+
+ window:
+ new window: 同じセットを編集するために、もう一つのウィンドウを表示します。
+ cards tab: 現在のセットのカードを編集します。
+ set info tab: 現在のセットについての情報を表示します。
+ style tab: 現在のカードのスタイルを変更します。
+ keywords tab: 現在のセットのためのキーワード能力を定義します。
+ stats tab: 現在のセットの統計を表示します。
+#_ADD random pack tab: Try how the set works out in practice by generating random booster packs.
+
+ help:
+ index:
+ website:
+ about:
+
+ # Cards panel
+#_ADD collapse notes: Hide the card notes box
+#_ADD expand notes: Show the card notes box
+ # Random pack panel
+#_ADD random seed: Different packs will be generated each time.
+#_ADD fixed seed: Using the same seed number gives the same 'random' packs.
+#_ADD seed: Seed number for the random generator. Using the same seed number gives the same 'random' packs.
+#_ADD edit pack type: Double click to edit pack type
+#_ADD number of packs: The number of %ss to generate
+
+ # Preferences
+ app language:
+ 注: 変更を適用するためにはMagic Set Editorを再起動する必要があります。
+ zoom export:
+ (このチェック・ボックスがオフの場合、
+ エクスポートされる画像に回転やズームは適用されません)
+
+ # apprentice export
+ set code: セットされたコードは、Apprenticeによってセットを参照することに使われる2キャラクターのコードです。
+
+ # Symbol editor
+ new symbol: 新しいセット・シンボルを作成します。
+ open symbol: 既存のセット・シンボルを開きます。
+ save symbol: 現在のセット・シンボルを保存します。
+ save symbol as: 現在のセット・シンボルを新しい名前で保存します。
+ store symbol: 現在のセット・シンボルを、現在のセットで使用します。
+ close symbol editor:シンボル・エディタを終了します。
+
+ duplicate: 選択した図形を複製します。
+ group: 選択した図形をグループにします。
+ ungroup: 選択したグループを解除します。
+
+ grid: グリッドの表示/非表示を変更します。
+ snap: 図形とポイントをグリッドに合わせるかどうか選択します。
+
+ tool:
+ select: 図形を選択します。
+ rotate: 図形を回転させます。
+ points: 図形を編集するためのポイントを設置します。
+ basic shapes: 長方形や円などの、基本的な図形を描写します。
+ symmetry: 対象線を加えます。
+ paint: ペイントブラシツールを使って図形をペイントします。
+
+ select editor:
+ merge: それの下でこの形をそれらと合併させます
+ subtract: それの下の形からこの形を引いて、すなわちこの形でエリアだけをその形に残します
+ intersect: それ、両方のエリアだけが形成する葉の下の形でのこの形を横切ります
+ difference: 異なってそれの下の形からのこの形、エリアだけを少しの他の形にも残します
+ overlap: それの下の形の上にこの形と、その縁を置いてください
+ border: 縁としてのこの形を引きます
+
+ drag to shear: 刈るべき牽引は選ばれています %s
+ drag to rotate: 回転させるべき牽引は選ばれています %s, Ctrlは15度の倍数に角度を制限します
+ drag to resize: サイズを変更すべき牽引選ばれて %s、Ctrlがサイズを制限します
+ click to select shape: 形を選ぶクリック、形を動かす牽引、形を編集する二重のクリック
+
+ ellipse: 円と長円を引いてください
+ rectangle: 広場と長方形を引いてください
+ polygon: 三角形、五角形、及び他の通常の多角形を引いてください
+ star: 星を引いてください
+ sides: 多角形あるいは星の点の側面の数
+ drag to draw shape: 形のサイズを変更するために引きずられてください、Ctrlが形を制限して、シフトが形を中心に置きます
+ draw ellipse: クリック及び長円を引く牽引、円のためのCtrlを開いてください
+ draw rectangle: クリック及び長方形を引く牽引、広場のためのCtrlを開いてください
+ draw polygon: クリック及び多角形を引く牽引
+ draw star: クリック及びスターのために引くべき牽引
+
+ line segment: 選ばれたラインセグメントをまっすぐにします
+ curve segment: 選ばれたラインセグメントが曲げた型式
+ free point: ポイントの2つのコントロールポイントが自由に動かされることを許します
+ smooth point: お互いの反対側に2つのコントロールポイントを置くことによって選ばれたポイント〔点〕を滑らかにします
+ symmetric point: 選ばれたポイント映した型式
+ drag to move curve: カーブを動かす牽引
+ drag to move line: Alt +変えるべき牽引は曲がります; このラインの上の1ポイントを加えるためにダブルクリックしてください
+ drag to move point: クリック及び変えるべき牽引コントロールポイント; ポイントを取り除くためにダブルクリックしてください
+
+ rotation: 対称(車輪〔ハンドル〕)を回転させること
+ reflection: 対称(鏡)を反映すること
+ add symmetry: 対称をシンボル〔記号〕に加えてください
+ remove symmetry: この対称を取り除いてください
+ copies: (オリジナルを含む)数の反映
+
+ # Card select
+ filename format: (カードの名前のための使用{card.name}; ファイルフォーマットが決定される 延長に基づいて )
+
+############################################################## Toolbar
+tool:
+ undo: 元に戻す
+ redo: やり直し
+
+ cards tab: カード
+ set info tab: セットの情報
+ style tab: スタイル
+ keywords tab: キーワード
+ stats tab: 統計値
+#_ADD random pack tab: Random
+
+ # symbol editor
+ store symbol: 使います
+
+ grid: 格子〔グリッド〕
+ snap: 楽な仕事
+
+ select: 選びます
+ rotate: 回転します
+ points: ポイント〔点〕
+ basic shapes: 基本的な形
+ symmetry: 対称
+ paint: ペイント
+
+ merge: 結合
+ subtract: 引きます
+ intersect: 相交わります
+ difference: 相違
+ overlap: オーバーラップ
+ border: 縁
+
+ ellipse: 長円
+ rectangle: 長方形
+ polygon: 多角形
+ star: 星形
+
+ rotation: 回転
+ reflection: 反射
+ add symmetry: 加えます
+ remove symmetry: 削除
+
+ line segment: ライン
+ curve segment: カーブ
+ free point: 解放します
+ smooth point: 滑らかにします
+ symmetric point: 対称的です
+
+############################################################## Toolbar help text
+tooltip:
+ cards tab:
+ set info tab: セットの情報
+ style tab:
+ keywords tab:
+ stats tab:
+#_ADD random pack tab: Random packs
+
+ new set: 新規作成
+ open set: 開く
+ save set: 上書き保存
+ export: エクスポート
+
+ cut: 切り取り
+ copy: コピー
+ paste: 貼り付け
+ undo: 元に戻す%s
+ redo: やり直す%s
+
+ add card: カードを追加
+ remove card: 選択したカードを削除
+ rotate card: カードの向き
+
+ add keyword: キーワードを追加
+ remove keyword: キーワードを削除
+
+ bold: 太字
+ italic: 斜体
+ symbols: シンボル
+ reminder text: 注釈文
+
+ pie: 円グラフ
+ bar: バーグラフ
+ stack: 積み重ね棒グラフ
+ scatter: 散布図
+ scatter pie: 散乱-パイプロット
+
+ cards tab:
+ set info tab: セットの情報
+ style tab: スタイル
+ keywords tab:
+ stats tab:
+
+ # symbol editor
+ store symbol: 使用セットの記号
+
+ grid: グリッド
+ snap: グリッドへ合わせる
+
+ select: 選びます (F5)
+ rotate: 回転します (F6)
+ points: Points (F7)
+ basic shapes: 基本的な形 (F8)
+ symmetry: 対称 (F9)
+ paint: 形の上の塗料 (F10)
+
+ merge: 下の形と合併してください
+ subtract: 下の形から引き算をしてください
+ intersect: 下の形で相交わってください
+ difference: 下の形と異なってください
+ overlap: 他の形の上の場所
+ border: 縁としての引き分け
+
+ ellipse: 長円
+ rectangle: 長方形
+ polygon: 多角形
+ star: 星
+
+ rotation: 対称を回転させること
+ reflection: 対称を反映すること
+ add symmetry: 対称を選ばれた部分に加えてください
+ remove symmetry: この対称を取り除いてください
+
+ line segment: 直線部分にライン
+ curve segment: 曲がるために
+ free point: 鍵を開けること意味
+ smooth point: ポイントを滑らかにしてください
+ symmetric point: ポイントを対称的にしてください
+
+############################################################## Labels in the GUI
+label:
+ # Cards tab
+ card notes: カードメモ:
+ # Keywords tab
+ keyword: キーワード
+ match: 適合
+ mode: モード
+ uses: 使用
+ reminder: 注釈文
+ rules: 追加のルール
+ standard keyword:
+ これは標準%sのキーワード能力であるため編集できません。
+ あなたがこれのキーワードのコピーを作ったとしても、こちらが優先されます。
+
+ # Style tab
+ styling options: スタイル・オプション
+
+ # Random pack panel
+#_ADD pack selection: Pack selection
+#_ADD pack totals: Totals
+#_ADD pack name: Pack name
+#_ADD seed: Seed
+#_ADD total cards: Total
+
+ # Open dialogs
+ all files 全てのファイル
+
+ # Other set window dialogs
+ save changes:
+ セット'%s'は変わりました。
+
+ あなたは変更内容を保存したいですか?
+
+ # New set window
+ game type: &ゲームタイプ:
+ style type: &カードスタイル:
+
+ stylesheet not found:
+ あなたが始めようとしているセットがスタイルシートを使う "%s"。
+ このstylesheetがあなたのシステムで見つからないで、選択肢を選んでください。
+
+ # Preferences
+ language: 言語
+#_ADD windows: Open sets
+ app language: ユーザー・インタフェースの言語:
+ card display: カード表示
+ zoom: &ズーム:
+ percent of normal: 正常なサイズのパーセント値
+ external programs: 外部のプログラム
+ apprentice: &Apprentice:
+ apprentice exe: Apprenticeを起動できます
+ check at startup: 起動ごとのバージョン・チェック
+ checking requires internet:
+ アップデートを調べることはインターネット接続を必要とします。
+ インターネット接続が利用可能でない時、これはチェックされません。
+
+ 情報はアップデートを調べる時、集められません。
+
+ # Column select
+ select columns: あなたが表示したい列を選んでください
+ columns: 列:
+
+ # Card select / images export
+#_ADD select cards: Cards to export
+#_ADD selected card count: %s cards will be exported.
+ select cards print: あなたが印刷したいカードを選んでください
+ filename format: &フォーマット:
+ filename conflicts: &取っ手を複写することのファイル名:
+ export filenames: ファイル名
+ filename is ignored: (ファイル名は無視されます)
+
+ # apprentice export
+ set code: セット・コード:
+ apprentice export cancelled: Apprenticeへのエクスポートを取り消す
+
+ # Html export
+ html template: テンプレート:
+ html export options:エクスポート・オプション
+
+ # Image slicer
+ original: オリジナル:
+ result: 結果:
+ size: サイズ
+#_ADD original size: &Original Size
+#_ADD size to fit: Size to &Fit
+#_ADD force to fit: F&orce to Fit
+#_ADD custom size: &Custom Size
+ selection: 選択
+#_ADD selection left: &Left
+#_ADD selection top: &Top
+#_ADD selection width: &Width
+#_ADD selection height: &Height
+ zoom: ズーム
+#_ADD fix aspect ratio: Fix aspect ratio (width/height)
+#_ADD zoom amount: Zoom
+#_ADD zoom amount x: Zoom &X
+#_ADD zoom amount y: Zoom &Y
+#_ADD zoom %: %
+ filter: フィルター
+#_ADD sharpen filter: &Sharpen filter
+
+ # Auto replace
+ auto match: 適合
+ auto replace: 置換
+
+ # Symbol editor
+ sides: 側
+
+ # Packages window
+ package name: パッケージ
+ package status: 地位
+ package action: アクション
+
+ package conflicts: 競合する変更
+ package modified: ローカルの変更
+ package updates: 利用可能な更新プログラム
+ package installed: インストール
+ package installable: 正しくインストール
+ install package: インストール
+#_ADD reinstall package: reinstall
+ upgrade package: アップグレード
+ remove package: 取り外す
+
+#_ADD installed version: Installed version:
+#_ADD installable version: Latest version:
+#_ADD installer size: Size:
+#_ADD installer status: Status:
+#_ADD no version: -
+#_ADD
+############################################################## Buttons/checkboxes/choices in the GUI
+button:
+ # Editor
+ edit symbol: 編集します
+ symbol gallery: ギャラリー
+
+ # Style panel
+ use for all cards: &全てのカードにこのスタイルを使用
+ use custom styling options: 現在のオプションをこのカードにのみ適用する
+
+ # Keywords panel
+ insert parameter: パラメータの挿入...
+ refer parameter: パラメータを使用する...
+
+ # Random pack panel
+#_ADD generate pack: &Generate Pack
+#_ADD random seed: &Random Seed
+#_ADD fixed seed: &Fixed Seed
+#_ADD add custom pack: Add &Custom Pack...
+
+ # Welcome
+ new set: 新規作成
+ open set: セットを開く
+ check updates: 更新チェック
+ last opened set: 直前のセット
+
+ # Preferences
+#_ADD open sets in new window: Open all sets in a new &window
+ select: &選択...
+ browse: &参照...
+ high quality: &高品質の画像
+ show lines: 編集フィールドの線を表示する
+ show editing hints: 編集の際にボックスとヒントを表示する
+ zoom export: エクスポートする際にズームと回転の設定を使用する。
+ check now: &今のチェック
+ always: 常に行う
+ if internet connection exists: インターネットに接続していれば
+ never: 行わない
+
+ # Column select
+ move up: 上へ移動
+ move down: 下へ移動
+ show: &表示
+ hide: &非表示
+
+ # Card select
+#_ADD export entire set: Entire set
+#_ADD export generated packs: Generated packs
+#_ADD export custom cards selection: Custom selection
+#_ADD select cards: &Select Cards...
+ select all: &すべてを選択
+ select none: &選択の解除
+ overwrite: 古いファイルを上書き
+ keep old: 古いファイルを保持する
+ number: 番号をファイル名に加える
+ number overwrite: 以前にエクスポートしたファイルに上書き、番号をファイル名に加える
+
+ # Auto replace
+ use auto replace: 自動置換を使用する
+ add item: &追加
+ remove item: &削除
+ defaults: &デフォルト
+ enabled: 可能なもの
+ whole word: 適合するものだけ
+
+ # Old style update checker (NOTE: this will be removed in a feature version)
+ close: &閉じる
+
+ # Packages window
+ keep package: &は変更しないで
+ don't install package: &はインストールしないで
+ install package: &インストール
+ upgrade package: &アップグレード
+#_ADD reinstall package: Re&install
+ remove package: &取り外す
+#_ADD install group: &Install All
+#_ADD upgrade group: &Upgrade All
+#_ADD remove group: &Remove All
+
+############################################################## Titles in the GUI
+title:
+ magic set editor: Magic Set Editor
+ %s - magic set editor: %s - Magic Set Editor
+ untitled: Untitled
+ about: Magic Set Editorについて
+ symbol editor: シンボル・エディタ
+ # dialogs
+ new set: 新規作成
+ open set: 開く
+ save set: 上書き保存
+ save image: 画像の保存
+ updates available: アップデートが利用可能です。
+ save changes: 変更を保存しますか?
+ select stylesheet: スタイルシートの選択
+ #preferences
+ preferences: 設定
+ global: 地域設定
+ display: 表示設定
+ directories: ディレクトリ設定
+ updates: アップデート
+ update check: アップデート・チェック
+ locate apprentice: Apprentice捜し
+ # select
+ select columns: 列の選択
+ select cards: カードの選択
+ select cards export:選択したカードのエクスポート
+ # slice
+ slice image: 画像編集
+#_ADD # pack
+#_ADD custom pack: Custom Pack Type
+ # print
+ print preview: 印刷プレビュー
+ # export
+ export images: 画像のエクスポート
+ export cancelled: エクスポートの取り消し
+ export html: HTMLへのエクスポート
+ save html: HTMLへの保存
+ # auto replace
+ auto replaces: 自動置換
+
+ # Package Update Window
+ packages window: パッケージマネージャ
+ installing updates: 更新プログラムのインストール
+
+ cannot create file: ファイルを作成することはできません。
+
+############################################################## Action (undo/redo) names
+action:
+ # List boxes
+ add item: 追加する %s
+ remove item: 取り外す %s
+
+ # Text editor
+ typing: タイピング
+ enter: 入れます
+ soft line break: 柔軟路線中断
+ insert symbol: 挿入物シンボル〔記号〕
+ backspace: バックスペース
+ delete: 削除します
+ cut: カット
+ paste: ペースト
+ auto replace: オートマチックな取って代わること
+#_ADD correct: Spelling Correction
+ # Choice/color editors
+ change: 変化 %s
+
+ # Symbol Actions
+ move: 動き %s
+ rotate: 回転します %s
+ shear: せん断 %s
+ scale: サイズを変更します %s
+ duplicate: 写し %s
+ reorder parts: 再注文
+ change combine mode:変化連合体モード
+ change shape name: 変化形名
+ group parts: グループ
+ ungroup parts: 分かれます
+
+ # Symbol Part Actions
+ convert to line: 線を引くべき転向者
+ convert to curve: 曲げるべき転向者
+ lock point: ロック・ポイント
+ move handle: 動き取っ手
+ move curve: 動き曲線
+ add control point: 足し算をすることコントロールポイント
+ delete point: ポイントを削除する
+ delete points: ポイントを削除してください
+
+ # Symmetry
+ add symmetry: 対称を加えてください
+ #remove symmetry: 対称を取り除いてください
+ move symmetry center: 動き対称センター
+ move symmetry handle: 変化対称オリエンテーション
+ change symmetry type: 変化対称タイプ
+ change symmetry copies: 数の反映
+
+############################################################## Error messages
+error:
+ # File related
+ file not found: 見つかっていないファイル: '%s' パッケージで '%s'
+ file not found package like:
+ ファイルが見つかりません '%s' パッケージの '%s'
+ しようとしている場合は、別のパッケージからファイルを開くには、使用する "/パッケージ/ファイル名"
+ file parse error:
+ ファイルをパースし誤り: '%s'
+ %s
+ package not found: 見つかっていないパッケージ: '%s'
+ package out of date: パッケージ '%s' (バージョン %s) 時代遅れであることがそうである バージョン %s が必要とされる。
+ package too new: パッケージe '%s' (バージョン %s) バージョンと互換性がない %s, 要求される '%s'
+ unable to open output file: 蓄えながらの誤りは出力ファイルを開けることができないです
+ unable to store file: 蓄えながらの誤りはファイルを蓄えることができないです
+ dependency not given:
+ パッケージ '%s' ファイルを使用して、パッケージの '%s', しかし、依存関係が表示されないことです。
+ を解決するには、追加:
+ に依存して: %s %s
+
+ # Script stuff
+ has no member: %s メンバーを持っていません '%s'
+ can't convert: 転向できない %s に '%s'
+ has no member value: 紐 "%s" メンバーを持っていない '%s'
+ can't convert value: 転向できない "%s" から %s に %s
+ unsupported format: 無効なフォーマット: '%s'
+ in function:
+ %s
+ の関数 %s
+ in parameter:
+ パラメータ %s: %s
+ in keyword reminder:
+ %s
+ キーワードでのテキストを思い出させる '%s'
+
+ # Image stuff
+ coordinates for blending overlap: オーバーラップを混ぜることのための座標
+ images used for blending must have the same size: 混ざることのために使われたイメージは同じサイズを持たなければなりません
+
+ # Error from files
+ no game specified: のゲームに指定された %s
+ no stylesheet specified for the set: セットのために指定されたスタイルシートはありません
+ stylesheet and set refer to different game:
+ スタイルシート及びセットは同じゲームを参照しないで、これはスタイルシートファイルのエラー〔誤り〕です
+ unsupported field type: サポートされていないフィールドタイプ: '%s'
+ unsupported fill type: サポートされていないいっぱいタイプ: '%s'
+ unrecognized value: 認識されていない価値〔価格〕: '%s'
+ expected key: 期待されているキー: '%s'
+ aborting parsing: 読書を流産させて、遭われた致命的エラー
+ newer version:
+ %s
+ このファイルがMagic Set Editorのより新しいバージョンで作られる (%s) あなたがそれを開けて、ファイルのいくつかの局面が紛失しているかもしれない時
+ あなたは最新のバージョンにアップグレードするように勧められます。
+ http::を訪問してください / magicseteditor.sourceforge.net /
+ word list type not found: リストタイプという語 %s (タグから)見つからなかった
+#_ADD pack item not found: The pack item "%s" was not found (from a pack type)
+#_ADD pack type not found: The pack type "%s" was not found (from a pack type)
+
+ # Update checking
+ checking updates failed: アップデートが失敗したか調べます。
+ no updates: 利用可能なアップデートはありません。
+
+ # Stats panel
+ dimension not found: ディメンションはありません '%s'
+
+#_ADD # Random packs
+#_ADD pack type duplicate name:
+ There is already a pack type named '%s'.
+ Please choose a different name.
+#_ADD
+ # Package update window
+# checking updates: アップデートを調べます。
+ can't download installer:
+ インストーラのパッケージをダウンロードできませんでした。 %s 〜から %s.
+ 何もがインストールされています。
+
+ downloading updates: 更新プログラムのダウンロード (%d of %d)
+ installing updates: パッケージのアップデート (%d of %d)
+
+ remove packages:
+ これが削除さ %s パッケージを続行するようにしたいですか?
+ remove packages modified:
+ これが削除さ %s パッケージは、 %s それらをインストールした後が変更されています。
+ 削除して元に戻すことはできません。
+ install packages successful: %s パッケージが正常にインストールします。
+ remove packages successful: %s パッケージが正常に削除されます。
+ change packages successful: %s パッケージが正常に変更されました。
+
+ cannot create file: ファイルを作成することはできません。 '%s', は、インストールを続けるですか?
+
+############################################################## Types used in scripts / shape names
+type:
+ function: 機能
+ collection: 収集
+ collection of: 収集 %ss
+ object: 物〔対象/目的〕
+ double: 実数
+ integer: 整数数
+ string: 紐〔文字列〕
+ boolean: ブールです
+ color: 色
+ image: イメージ
+#_ADD date: date
+ nil: 何も
+
+ # Object types
+#_ADD package: package
+#_ADD locale: translation
+ game: ゲーム
+ set: セット
+ stylesheet: スタイルシート
+ export template:輸出テンプレート
+#_ADD symbol: symbol
+ card: カード
+ cards: カード
+ field: フィールド
+ style: スタイル
+ value: 値
+ keyword: キーワード
+ keywords: キーワード
+#_ADD pack: pack type
+
+ # Symbol editor shapes
+ shape: 形
+ shapes: 形
+ circle: 円
+ ellipse: 長円
+ square: 方形
+ rectangle: 長方形
+ triangle: 三角形
+ rhombus: 菱形
+ pentagon: 五角形
+ hexagon: 六角形
+ polygon: 多角形
+ star: 星形
+
+ rotation: 回転
+ reflection: 反射
+ group: グループ
+
+ point: ポイント
+ points: ポイント
+
+
+############################################################## Magic
+package:
+ magic.mse-game:
+ # Card fields
+ name: 名前
+ cc: マナ・コスト
+ type: カード・タイプ
+ p/t: パワー/タフネス
+ rarity: レアリティ
+ card name: カード名
+
+ # Set info
+
+ # descriptions/help text
+
+ magic-mana-*.mse-symbol-font:
+ # note: reminder/shortcut must start with a space, otherwise it is used as a shortcut
+ # so typing T *anywhere* would insert a symbol (which would be bad)
+ menu item T: タップ・シンボル(&T) T
+#_ADD menu item Q: &Untap symbol Q
+ menu item W: 白マナ(&W) W
+ menu item U: 青マナ(&U) U
+ menu item B: 黒マナ(&B) B
+ menu item R: 赤マナ(&R) R
+ menu item G: 緑マナ(&G) G
+ menu item S: 氷雪マナ(&S) S
+ menu item X: 不特定マナ・シンボル(&X) X
+ menu item Y: 不特定マナ・シンボル(&Y) Y
+ menu item Z: 不特定マナ・シンボル(&Z) Z
+#_ADD menu item I: &Infinite mana I
+ menu item colorless: 無色マナ(&C)...
+ title colorless: 無色マナ(&C)
+ message colorless: 任意の数の無色マナ
+ menu item half: 半分のマナ・シンボル(&H)
+ menu item |W: 白マナ(&W) |W
+ menu item |U: 青マナ(&U) |U
+ menu item |B: 黒マナ(&B) |B
+ menu item |R: 赤マナ(&R) |R
+ menu item |G: 緑マナ(&G) |G
+ menu item |S: 氷雪マナ(&S) |S
+ menu item 1/2: 無色マナ(&C) 1/2
+ menu item hybrid: 2色の混成マナ・シンボル(&Y)
+ menu item W/U: 白/青 マナ W/U
+ menu item U/B: 青/黒 マナ U/B
+ menu item B/R: 黒/赤 マナ B/R
+ menu item R/G: 赤/緑 マナ R/G
+ menu item G/W: 緑/白 マナ G/W
+ menu item W/B: 白/黒 マナ W/B
+ menu item U/R: 青/赤 マナ U/R
+ menu item B/G: 黒/緑 マナ B/G
+ menu item R/W: 赤/白 マナ R/W
+ menu item G/U: 緑/青 マナ G/U
+ menu item hybrid 3: 3色の混成マナ・シンボル(&Y)
+ menu item W/U/B: 白/青/黒 マナ W/U/B
+ menu item U/B/R: 青/黒/赤 マナ U/B/R
+ menu item B/R/G: 黒/赤/緑 マナ B/R/G
+ menu item R/G/W: 赤/緑/白 マナ R/G/W
+ menu item G/W/U: 緑/白/青 マナ G/W/U
+ menu item W/B/R: 白/黒/赤 マナ W/B/R
+ menu item U/R/G: 青/赤/緑 マナ U/R/G
+ menu item B/G/W: 黒/緑/白 マナ B/G/W
+ menu item R/W/U: 赤/白/青 マナ R/W/U
+ menu item G/U/B: 緑/青/黒 マナ G/U/B
+
diff --git a/data/magic-forum.mse-export-template/export-template b/data/magic-forum.mse-export-template/export-template
index ac594a13..8299f4fe 100644
--- a/data/magic-forum.mse-export-template/export-template
+++ b/data/magic-forum.mse-export-template/export-template
@@ -1,433 +1,433 @@
-mse version: 0.3.8
-short name: Forum
-full name: Spoiler Exporter
-position hint: 006
-icon: icon.png
-version: 2010-06-06
-installer group: magic/Export/forum
-
-depends on:
- package: magic.mse-game
- version: 2009-07-23
-
-game: magic
-file type: *.txt|*.txt|*.*|*.*
-
-# By Pichoro
-# Based on code by Idle Muse, Innuendo and Seeonee
-
-option field:
- type: choice
- name: forum
- choice: mse
- choice: mtgsalvation
- description: What forum should the spoiler be formatted for?
-option field:
- type: boolean
- name: text costs
- initial: yes
- description: Should mana costs be plain text? Symbols usually can't be copied and pasted.
-option field:
- type: text
- name: creator
- description: The creator of the set.
-option field:
- type: boolean
- name: include notes
- description: Should card notes be included?
- initial: no
-option field:
- type: boolean
- name: color rarities
- description: Should rarities be colored?
- initial: yes
-script:
- # Formats mana costs. MSE and mtgsally use same bbcode tags.
- mtgsally_mse_forum_cost := replace@(match:"2/W", replace:":sym2w:")+
- replace@(match:"2/U", replace:":sym2u:")+
- replace@(match:"2/B", replace:":sym2b:")+
- replace@(match:"2/R", replace:":sym2r:")+
- replace@(match:"2/G", replace:":sym2g:")+
- replace@(match:"S", replace:":snow:")+
- replace@(match:"W/U", replace:":symwu:")+
- replace@(match:"W/B", replace:":symwb:")+
- replace@(match:"U/B", replace:":symub:")+
- replace@(match:"U/R", replace:":symur:")+
- replace@(match:"B/R", replace:":symbr:")+
- replace@(match:"B/G", replace:":symbg:")+
- replace@(match:"R/G", replace:":symrg:")+
- replace@(match:"R/W", replace:":symrw:")+
- replace@(match:"G/W", replace:":symgw:")+
- replace@(match:"G/U", replace:":symgu:")+
- replace@(match:"X", replace:":symx:")+
- replace@(match:"Y", replace:":symy:")+
- replace@(match:"W", replace:":symw:")+
- replace@(match:"U", replace:":symu:")+
- replace@(match:"B", replace:":symb:")+
- replace@(match:"R", replace:":symr:")+
- replace@(match:"G", replace:":symg:")+
- replace@(match:"20", replace:":20mana:")+
- replace@(match:"19", replace:":19mana:")+
- replace@(match:"18", replace:":18mana:")+
- replace@(match:"17", replace:":17mana:")+
- replace@(match:"16", replace:":16mana:")+
- replace@(match:"15", replace:":15mana:")+
- replace@(match:"14", replace:":14mana:")+
- replace@(match:"13", replace:":13mana:")+
- replace@(match:"12", replace:":12mana:")+
- replace@(match:"11", replace:":11mana:")+
- replace@(match:"10", replace:":10mana:")+
- replace@(match:"9", replace:":9mana:")+
- replace@(match:"8", replace:":8mana:")+
- replace@(match:"7", replace:":7mana:")+
- replace@(match:"6", replace:":6mana:")+
- replace@(match:"5", replace:":5mana:")+
- replace@(match:"4", replace:":4mana:")+
- replace@(match:"3", replace:":3mana:")+
- replace@(match:"2", replace:":2mana:")+
- replace@(match:"1", replace:":1mana:")+
- replace@(match:"0", replace:":0mana:")
- # Determine which style of colored rarities to use.
- rarity_color := {
- if options.forum == "mse" then rarity_color_mse()
- else if options.forum == "mtgsalvation" then rarity_color_mtgs()
- }
- # Colored rarity markers for MTGS forum.
- rarity_color_mtgs := {
- if card.rarity == "basic land" then " (C)"
- else if card.rarity == "common" then " (C)"
- else if card.rarity == "uncommon" then " [color=silver](U)[/color]"
- else if card.rarity == "rare" then " [color=gold](R)[/color]"
- else if card.rarity == "mythic rare" then " [color=orange](M)[/color]"
- else if card.rarity == "special" then " [color=purple](S)[/color]"
- else " (C)"
- }
- # Colored rarity markers for MSE forum.
- rarity_color_mse := {
- if card.rarity == "basic land" then " :common:"
- else if card.rarity == "common" then " :common:"
- else if card.rarity == "uncommon" then " :uncommon:"
- else if card.rarity == "rare" then " :rare:"
- else if card.rarity == "mythic rare" then " :mythic:"
- else if card.rarity == "special" then " :special:"
- else " :common:"
- }
- # Non colored rarity markers.
- rarity_uncolor := {
- if card.rarity == "basic land" then " (C)"
- else if card.rarity == "common" then " (C)"
- else if card.rarity == "uncommon" then " (U)"
- else if card.rarity == "rare" then " (R)"
- else if card.rarity == "mythic rare" then " (M)"
- else if card.rarity == "special" then " (S)"
- else " (C)"
- }
- # Formats rules text w/ only italic tags.
- forum_rules_filter_plain := replace@(match:"[(]", replace:"[i](")+
- replace@(match:"[)]", replace: ")[/i]")
- # Formats rules text w/ mana symbols. MSE and mtgsally use same bbcode tags for mana.
- forum_rules_filter_mtgsally_mse :=
- # Italics around parenthesis.
- replace@(match:"[(]", replace:"[i](")+
- replace@(match:"[)]", replace: ")[/i]")+
- # 2/C's don't appear in regular english, format them all.
- replace@(match:"2/W", replace:":sym2w:")+
- replace@(match:"2/U", replace:":sym2u:")+
- replace@(match:"2/B", replace:":sym2b:")+
- replace@(match:"2/R", replace:":sym2r:")+
- replace@(match:"2/G", replace:":sym2g:")+
- # C/D's don't appear in regular english, format them all.
- replace@(match:"W/U", replace:":symwu:")+
- replace@(match:"W/B", replace:":symwb:")+
- replace@(match:"U/B", replace:":symub:")+
- replace@(match:"U/R", replace:":symur:")+
- replace@(match:"B/R", replace:":symbr:")+
- replace@(match:"B/G", replace:":symbg:")+
- replace@(match:"R/G", replace:":symrg:")+
- replace@(match:"R/W", replace:":symrw:")+
- replace@(match:"G/W", replace:":symgw:")+
- replace@(match:"G/U", replace:":symgu:")+
- # Various positions for taps, untaps and chaos symbols.
- replace@(match:" T ", replace:" :symtap: ")+
- replace@(match:" Q ", replace:" :symq: ")+
- replace@(match:" C ", replace:" :symch: ")+
- replace@(match:"T,", replace:":symtap:,")+
- replace@(match:"Q,", replace:":symq:,")+
- replace@(match:"C,", replace:":symch:,")+
- replace@(match:"T:", replace:":symtap::")+
- replace@(match:"Q:", replace:":symq::")+
- replace@(match:"C:", replace:":symch::")+
- # Mana right before a space.
- replace@(match:"G ", replace:":symg: ")+
- replace@(match:"R ", replace:":symr: ")+
- replace@(match:"B ", replace:":symb: ")+
- replace@(match:"U ", replace:":symu: ")+
- replace@(match:"W ", replace:":symw: ")+
- replace@(match:"S ", replace:":snow: ")+
- # Mana right before a comma.
- replace@(match:"G,", replace:":symg:,")+
- replace@(match:"R,", replace:":symr:,")+
- replace@(match:"B,", replace:":symb:,")+
- replace@(match:"U,", replace:":symu:,")+
- replace@(match:"W,", replace:":symw:,")+
- replace@(match:"S,", replace:":snow:,")+
- # Mana right before a colon.
- replace@(match:"G:", replace:":symg::")+
- replace@(match:"R:", replace:":symr::")+
- replace@(match:"B:", replace:":symb::")+
- replace@(match:"U:", replace:":symu::")+
- replace@(match:"W:", replace:":symw::")+
- # Drag rules text to search for more mana characters. Reverse color wheel order works better. Repeat several times.
- replace@(match:"G:", replace:":symg::")+
- replace@(match:"R:", replace:":symr::")+
- replace@(match:"B:", replace:":symb::")+
- replace@(match:"U:", replace:":symu::")+
- replace@(match:"W:", replace:":symw::")+
- replace@(match:"G:", replace:":symg::")+
- replace@(match:"R:", replace:":symr::")+
- replace@(match:"B:", replace:":symb::")+
- replace@(match:"U:", replace:":symu::")+
- replace@(match:"W:", replace:":symw::")+
- replace@(match:"G:", replace:":symg::")+
- replace@(match:"R:", replace:":symr::")+
- replace@(match:"B:", replace:":symb::")+
- replace@(match:"U:", replace:":symu::")+
- replace@(match:"W:", replace:":symw::")+
- # Symbolize snow.
- replace@(match:"S:", replace:":snow::")+
- replace@(match:"S:", replace:":snow::")+
- replace@(match:"S:", replace:":snow::")+
- # Symbolize numbers from 20-0 when before a comma.
- replace@(match:"20,", replace:":20mana:,")+
- replace@(match:"19,", replace:":19mana:,")+
- replace@(match:"18,", replace:":18mana:,")+
- replace@(match:"17,", replace:":17mana:,")+
- replace@(match:"16,", replace:":16mana:,")+
- replace@(match:"15,", replace:":15mana:,")+
- replace@(match:"14,", replace:":14mana:,")+
- replace@(match:"13,", replace:":13mana:,")+
- replace@(match:"12,", replace:":12mana:,")+
- replace@(match:"11,", replace:":11mana:,")+
- replace@(match:"10,", replace:":10mana:,")+
- replace@(match:"9,", replace:":9mana:,")+
- replace@(match:"8,", replace:":8mana:,")+
- replace@(match:"7,", replace:":7mana:,")+
- replace@(match:"6,", replace:":6mana:,")+
- replace@(match:"5,", replace:":5mana:,")+
- replace@(match:"4,", replace:":4mana:,")+
- replace@(match:"3,", replace:":3mana:,")+
- replace@(match:"2,", replace:":2mana:,")+
- replace@(match:"1,", replace:":1mana:,")+
- replace@(match:"0,", replace:":0mana:,")+
- # Symbolize numbers from 20-0 when before another symbol or a colon.
- replace@(match:"20:", replace:":20mana::")+
- replace@(match:"19:", replace:":19mana::")+
- replace@(match:"18:", replace:":18mana::")+
- replace@(match:"17:", replace:":17mana::")+
- replace@(match:"16:", replace:":16mana::")+
- replace@(match:"15:", replace:":15mana::")+
- replace@(match:"14:", replace:":14mana::")+
- replace@(match:"13:", replace:":13mana::")+
- replace@(match:"12:", replace:":12mana::")+
- replace@(match:"11:", replace:":11mana::")+
- replace@(match:"10:", replace:":10mana::")+
- replace@(match:"9:", replace:":9mana::")+
- replace@(match:"8:", replace:":8mana::")+
- replace@(match:"7:", replace:":7mana::")+
- replace@(match:"6:", replace:":6mana::")+
- replace@(match:"5:", replace:":5mana::")+
- replace@(match:"4:", replace:":4mana::")+
- replace@(match:"3:", replace:":3mana::")+
- replace@(match:"2:", replace:":2mana::")+
- replace@(match:"1:", replace:":1mana::")+
- replace@(match:"0:", replace:":0mana::")+
- # Symbolize X and Y when before a comma.
- replace@(match:"Y,", replace:":symy:,")+
- replace@(match:"X,", replace:":symx:,")+
- # Symbolize X and Y when before another symbol or a colon.
- replace@(match:"Y:", replace:":symy::")+
- replace@(match:"X:", replace:":symx::")
- # Count the number of paragraphs to detect number of walker abilities.
- paragraph_count := replace@(match:"\n", replace:"•")+
- filter_text@(match:"•")
- write_normal := {
- # The Name and Casting Cost
- "\n[b]"+card.name+"[/b] "
- +(if not options.text_costs then mtgsally_mse_forum_cost(card.casting_cost))
- +(if options.text_costs then card.casting_cost)
- # The Type and Rarity
- +"\n"+card.type+(if options.color_rarities then rarity_color() else rarity_uncolor())
- # The Rules Text
- +(if card.rule_text != "" then "\n")
- +(if not options.text_costs then forum_rules_filter_mtgsally_mse(remove_tags(card.rule_text)))
- +(if options.text_costs then forum_rules_filter_plain(card.rule_text))
- # The Flavor Text
- +(if card.flavor_text != "" then "\n[i]")
- +card.flavor_text
- +(if card.flavor_text != "" then "[/i]")
- # The P/T
- +(if contains(card.type, match:"Creature") then "\n")
- +(if contains(card.type, match:"Creature") then card.pt)
- # The Notes
- +(if options.include_notes and card.notes !="" then "\n[spoiler]Card Notes: ")
- +(if options.include_notes and card.notes !="" then card.notes)
- +(if options.include_notes and card.notes !="" then "[/spoiler]")
- +"\n"
- }
- write_split := {
- # The Name and Casting Cost
- "\n[b]"+card.name+"[/b] "
- +(if not options.text_costs then mtgsally_mse_forum_cost(card.casting_cost))
- +(if options.text_costs then card.casting_cost)
- # The Type and Rarity
- +"\n"+card.type+(if options.color_rarities then rarity_color() else rarity_uncolor())
- # The Rules Text
- +(if card.rule_text != "" then "\n")
- +(if not options.text_costs then forum_rules_filter_mtgsally_mse(remove_tags(card.rule_text)))
- +(if options.text_costs then forum_rules_filter_plain(card.rule_text))
- # The Flavor Text
- +(if card.flavor_text != "" then "\n[i]")
- +card.flavor_text
- +(if card.flavor_text != "" then "[/i]")
- # The P/T
- +(if contains(card.type, match:"Creature") then "\n")
- +(if contains(card.type, match:"Creature") then card.pt)
- +"\n /// "
- # The Second Name and Casting Cost
- +"\n[b]"+card.name_2+"[/b] "
- +(if not options.text_costs then mtgsally_mse_forum_cost(card.casting_cost_2))
- +(if options.text_costs then card.casting_cost_2)
- # The Second Type and Rarity
- +"\n"+card.type_2+(if options.color_rarities then rarity_color() else rarity_uncolor())
- # The Second Rules Text
- +(if card.rule_text_2 != "" then "\n")
- +(if not options.text_costs then forum_rules_filter_mtgsally_mse(remove_tags(card.rule_text_2)))
- +(if options.text_costs then forum_rules_filter_plain(card.rule_text_2))
- # The Second Flavor Text
- +(if card.flavor_text_2 != "" then "\n[i]")
- +card.flavor_text_2
- +(if card.flavor_text_2 != "" then "[/i]")
- # The Second P/T
- +(if contains(card.type_2, match:"Creature") then "\n")
- +(if contains(card.type_2, match:"Creature") then card.pt_2)
- # The Notes
- +(if options.include_notes and card.notes !="" then "\n[spoiler]Card Notes: ")
- +(if options.include_notes and card.notes !="" then card.notes)
- +(if options.include_notes and card.notes !="" then "[/spoiler]")
- +"\n"
- }
- write_flip := {
- # The Name and Casting Cost
- "\n[b]"+card.name+"[/b] "
- +(if not options.text_costs then mtgsally_mse_forum_cost(card.casting_cost))
- +(if options.text_costs then card.casting_cost)
- # The Type and Rarity
- +"\n"+card.type+(if options.color_rarities then rarity_color() else rarity_uncolor())
- # The Rules Text
- +(if card.rule_text != "" then "\n")
- +(if not options.text_costs then forum_rules_filter_mtgsally_mse(remove_tags(card.rule_text)))
- +(if options.text_costs then forum_rules_filter_plain(card.rule_text))
- # The Flavor Text
- +(if card.flavor_text != "" then "\n[i]")
- +card.flavor_text
- +(if card.flavor_text != "" then "[/i]")
- # The P/T
- +(if contains(card.type, match:"Creature") then "\n")
- +(if contains(card.type, match:"Creature") then card.pt)
- +"\n ---Flip--- "
- # The Flip Name and Casting Cost
- +"\n[b]"+card.name_2+"[/b] "
- +(if not options.text_costs then mtgsally_mse_forum_cost(card.casting_cost_2))
- +(if options.text_costs then card.casting_cost_2)
- # The Flip Rules Text
- +(if card.rule_text_2 != "" then "\n")
- +(if not options.text_costs then forum_rules_filter_mtgsally_mse(remove_tags(card.rule_text_2)))
- +(if options.text_costs then forum_rules_filter_plain(card.rule_text_2))
- # The Flip Flavor Text
- +(if card.flavor_text_2 != "" then "\n[i]")
- +card.flavor_text_2
- +(if card.flavor_text_2 != "" then "[/i]")
- # The Flip P/T
- +(if contains(card.type_2, match:"Creature") then "\n")
- +(if contains(card.type_2, match:"Creature") then card.pt_2)
- # The Notes
- +(if options.include_notes and card.notes !="" then "\n[spoiler]Card Notes: ")
- +(if options.include_notes and card.notes !="" then card.notes)
- +(if options.include_notes and card.notes !="" then "[/spoiler]")
- +"\n"
- }
- write_walker := {
- # The Name and Casting Cost
- "\n[b]"+card.name+"[/b] "
- +(if not options.text_costs then mtgsally_mse_forum_cost(card.casting_cost))
- +(if options.text_costs then card.casting_cost)
- # The Type and Rarity
- +"\n"+card.type+(if options.color_rarities then rarity_color() else rarity_uncolor())
- # The Starting Loyalty
- +"\nStarting Loyalty: "+card.loyalty
- # The First Ability
- +"\n"+card.loyalty_cost_1
- +(if card.loyalty_cost_1 !="" then ": ")
- +forum_rules_filter_plain(split_text(match:"\n", card.rule_text).0)
- # The Second Ability
- +(if contains(paragraph_count(card.rule_text), match:"•") then "\n")
- +card.loyalty_cost_2
- +(if card.loyalty_cost_2 !="" then ": ")
- +(if contains(paragraph_count(card.rule_text), match:"•") then forum_rules_filter_plain(split_text(match:"\n", card.rule_text).1))
- # The Third Ability
- +(if contains(paragraph_count(card.rule_text), match:"••") then "\n")
- +card.loyalty_cost_3
- +(if card.loyalty_cost_3 !="" then ": ")
- +(if contains(paragraph_count(card.rule_text), match:"••") then forum_rules_filter_plain(split_text(match:"\n", card.rule_text).2))
- # The Fourth Ability
- +(if contains(paragraph_count(card.rule_text), match:"•••") then "\n")
- +card.loyalty_cost_4
- +(if card.loyalty_cost_4 !="" then ": ")
- +(if contains(paragraph_count(card.rule_text), match:"•••") then forum_rules_filter_plain(split_text(match:"\n", card.rule_text).3))
- # The Flavor Text
- +(if card.flavor_text != "" then "\n[i]")
- +card.flavor_text
- +(if card.flavor_text != "" then "[/i]")
- # The Notes
- +(if options.include_notes and card.notes !="" then "\n[spoiler]Card Notes: ")
- +(if options.include_notes and card.notes !="" then card.notes)
- +(if options.include_notes and card.notes !="" then "[/spoiler]")
- +"\n"
- }
- write_leveler := {
- # The Name and Casting Cost
- "\n[b]"+card.name+"[/b] "
- +(if not options.text_costs then mtgsally_mse_forum_cost(card.casting_cost))
- +(if options.text_costs then card.casting_cost)
- # The Type and Rarity
- +"\n"+card.type+(if options.color_rarities then rarity_color() else rarity_uncolor())
- # The First Textbox
- +"\n"+forum_rules_filter_plain(card.rule_text)
- +(if card.pt !="" then " (")+card.pt+")"
- # The Second Textbox
- +"\n[LEVEL "+card.level_1+"]: "
- +forum_rules_filter_plain(card.rule_text_2)
- +(if card.pt_2 !="" then " (")+card.pt_2+")"
- # The Third Textbox
- +"\n"+(if card.level_2 !="" then "[LEVEL "+card.level_2+"]: ")
- +forum_rules_filter_plain(card.rule_text_3)
- +(if card.pt_3 !="" then " (")+card.pt_3+")"
- # The Flavor Text
- +(if card.flavor_text != "" then "\n[i]")
- +card.flavor_text
- +(if card.flavor_text != "" then "[/i]")
- # The Notes
- +(if options.include_notes and card.notes !="" then "\n[spoiler]Card Notes: ")
- +(if options.include_notes and card.notes !="" then card.notes)
- +(if options.include_notes and card.notes !="" then "[/spoiler]")
- +"\n"
- }
- write_card := { if contains(card.shape, match:"token") or contains(card.shape, match:"rulestip") then ""
- else if contains(card.shape, match:"split") then write_split()
- else if card.name_2 != "" then write_flip()
- else if card.loyalty != "" then write_walker()
- else if contains(card.shape, match:"leveler") then write_leveler()
- else write_normal()
- }
- write_cards := to_text(for each card in sort_list(cards, order_by: {input.card_number}) do write_card())
- to_string("Full Spoiler List for "+set.title+"\nSet by "+options.creator+"\n"+set.description+"\n"+write_cards)
+mse version: 0.3.8
+short name: Forum
+full name: Spoiler Exporter
+position hint: 006
+icon: icon.png
+version: 2010-06-06
+installer group: magic/Export/forum
+
+depends on:
+ package: magic.mse-game
+ version: 2009-07-23
+
+game: magic
+file type: *.txt|*.txt|*.*|*.*
+
+# By Pichoro
+# Based on code by Idle Muse, Innuendo and Seeonee
+
+option field:
+ type: choice
+ name: forum
+ choice: mse
+ choice: mtgsalvation
+ description: What forum should the spoiler be formatted for?
+option field:
+ type: boolean
+ name: text costs
+ initial: yes
+ description: Should mana costs be plain text? Symbols usually can't be copied and pasted.
+option field:
+ type: text
+ name: creator
+ description: The creator of the set.
+option field:
+ type: boolean
+ name: include notes
+ description: Should card notes be included?
+ initial: no
+option field:
+ type: boolean
+ name: color rarities
+ description: Should rarities be colored?
+ initial: yes
+script:
+ # Formats mana costs. MSE and mtgsally use same bbcode tags.
+ mtgsally_mse_forum_cost := replace@(match:"2/W", replace:":sym2w:")+
+ replace@(match:"2/U", replace:":sym2u:")+
+ replace@(match:"2/B", replace:":sym2b:")+
+ replace@(match:"2/R", replace:":sym2r:")+
+ replace@(match:"2/G", replace:":sym2g:")+
+ replace@(match:"S", replace:":snow:")+
+ replace@(match:"W/U", replace:":symwu:")+
+ replace@(match:"W/B", replace:":symwb:")+
+ replace@(match:"U/B", replace:":symub:")+
+ replace@(match:"U/R", replace:":symur:")+
+ replace@(match:"B/R", replace:":symbr:")+
+ replace@(match:"B/G", replace:":symbg:")+
+ replace@(match:"R/G", replace:":symrg:")+
+ replace@(match:"R/W", replace:":symrw:")+
+ replace@(match:"G/W", replace:":symgw:")+
+ replace@(match:"G/U", replace:":symgu:")+
+ replace@(match:"X", replace:":symx:")+
+ replace@(match:"Y", replace:":symy:")+
+ replace@(match:"W", replace:":symw:")+
+ replace@(match:"U", replace:":symu:")+
+ replace@(match:"B", replace:":symb:")+
+ replace@(match:"R", replace:":symr:")+
+ replace@(match:"G", replace:":symg:")+
+ replace@(match:"20", replace:":20mana:")+
+ replace@(match:"19", replace:":19mana:")+
+ replace@(match:"18", replace:":18mana:")+
+ replace@(match:"17", replace:":17mana:")+
+ replace@(match:"16", replace:":16mana:")+
+ replace@(match:"15", replace:":15mana:")+
+ replace@(match:"14", replace:":14mana:")+
+ replace@(match:"13", replace:":13mana:")+
+ replace@(match:"12", replace:":12mana:")+
+ replace@(match:"11", replace:":11mana:")+
+ replace@(match:"10", replace:":10mana:")+
+ replace@(match:"9", replace:":9mana:")+
+ replace@(match:"8", replace:":8mana:")+
+ replace@(match:"7", replace:":7mana:")+
+ replace@(match:"6", replace:":6mana:")+
+ replace@(match:"5", replace:":5mana:")+
+ replace@(match:"4", replace:":4mana:")+
+ replace@(match:"3", replace:":3mana:")+
+ replace@(match:"2", replace:":2mana:")+
+ replace@(match:"1", replace:":1mana:")+
+ replace@(match:"0", replace:":0mana:")
+ # Determine which style of colored rarities to use.
+ rarity_color := {
+ if options.forum == "mse" then rarity_color_mse()
+ else if options.forum == "mtgsalvation" then rarity_color_mtgs()
+ }
+ # Colored rarity markers for MTGS forum.
+ rarity_color_mtgs := {
+ if card.rarity == "basic land" then " (C)"
+ else if card.rarity == "common" then " (C)"
+ else if card.rarity == "uncommon" then " [color=silver](U)[/color]"
+ else if card.rarity == "rare" then " [color=gold](R)[/color]"
+ else if card.rarity == "mythic rare" then " [color=orange](M)[/color]"
+ else if card.rarity == "special" then " [color=purple](S)[/color]"
+ else " (C)"
+ }
+ # Colored rarity markers for MSE forum.
+ rarity_color_mse := {
+ if card.rarity == "basic land" then " :common:"
+ else if card.rarity == "common" then " :common:"
+ else if card.rarity == "uncommon" then " :uncommon:"
+ else if card.rarity == "rare" then " :rare:"
+ else if card.rarity == "mythic rare" then " :mythic:"
+ else if card.rarity == "special" then " :special:"
+ else " :common:"
+ }
+ # Non colored rarity markers.
+ rarity_uncolor := {
+ if card.rarity == "basic land" then " (C)"
+ else if card.rarity == "common" then " (C)"
+ else if card.rarity == "uncommon" then " (U)"
+ else if card.rarity == "rare" then " (R)"
+ else if card.rarity == "mythic rare" then " (M)"
+ else if card.rarity == "special" then " (S)"
+ else " (C)"
+ }
+ # Formats rules text w/ only italic tags.
+ forum_rules_filter_plain := replace@(match:"[(]", replace:"[i](")+
+ replace@(match:"[)]", replace: ")[/i]")
+ # Formats rules text w/ mana symbols. MSE and mtgsally use same bbcode tags for mana.
+ forum_rules_filter_mtgsally_mse :=
+ # Italics around parenthesis.
+ replace@(match:"[(]", replace:"[i](")+
+ replace@(match:"[)]", replace: ")[/i]")+
+ # 2/C's don't appear in regular english, format them all.
+ replace@(match:"2/W", replace:":sym2w:")+
+ replace@(match:"2/U", replace:":sym2u:")+
+ replace@(match:"2/B", replace:":sym2b:")+
+ replace@(match:"2/R", replace:":sym2r:")+
+ replace@(match:"2/G", replace:":sym2g:")+
+ # C/D's don't appear in regular english, format them all.
+ replace@(match:"W/U", replace:":symwu:")+
+ replace@(match:"W/B", replace:":symwb:")+
+ replace@(match:"U/B", replace:":symub:")+
+ replace@(match:"U/R", replace:":symur:")+
+ replace@(match:"B/R", replace:":symbr:")+
+ replace@(match:"B/G", replace:":symbg:")+
+ replace@(match:"R/G", replace:":symrg:")+
+ replace@(match:"R/W", replace:":symrw:")+
+ replace@(match:"G/W", replace:":symgw:")+
+ replace@(match:"G/U", replace:":symgu:")+
+ # Various positions for taps, untaps and chaos symbols.
+ replace@(match:" T ", replace:" :symtap: ")+
+ replace@(match:" Q ", replace:" :symq: ")+
+ replace@(match:" C ", replace:" :symch: ")+
+ replace@(match:"T,", replace:":symtap:,")+
+ replace@(match:"Q,", replace:":symq:,")+
+ replace@(match:"C,", replace:":symch:,")+
+ replace@(match:"T:", replace:":symtap::")+
+ replace@(match:"Q:", replace:":symq::")+
+ replace@(match:"C:", replace:":symch::")+
+ # Mana right before a space.
+ replace@(match:"G ", replace:":symg: ")+
+ replace@(match:"R ", replace:":symr: ")+
+ replace@(match:"B ", replace:":symb: ")+
+ replace@(match:"U ", replace:":symu: ")+
+ replace@(match:"W ", replace:":symw: ")+
+ replace@(match:"S ", replace:":snow: ")+
+ # Mana right before a comma.
+ replace@(match:"G,", replace:":symg:,")+
+ replace@(match:"R,", replace:":symr:,")+
+ replace@(match:"B,", replace:":symb:,")+
+ replace@(match:"U,", replace:":symu:,")+
+ replace@(match:"W,", replace:":symw:,")+
+ replace@(match:"S,", replace:":snow:,")+
+ # Mana right before a colon.
+ replace@(match:"G:", replace:":symg::")+
+ replace@(match:"R:", replace:":symr::")+
+ replace@(match:"B:", replace:":symb::")+
+ replace@(match:"U:", replace:":symu::")+
+ replace@(match:"W:", replace:":symw::")+
+ # Drag rules text to search for more mana characters. Reverse color wheel order works better. Repeat several times.
+ replace@(match:"G:", replace:":symg::")+
+ replace@(match:"R:", replace:":symr::")+
+ replace@(match:"B:", replace:":symb::")+
+ replace@(match:"U:", replace:":symu::")+
+ replace@(match:"W:", replace:":symw::")+
+ replace@(match:"G:", replace:":symg::")+
+ replace@(match:"R:", replace:":symr::")+
+ replace@(match:"B:", replace:":symb::")+
+ replace@(match:"U:", replace:":symu::")+
+ replace@(match:"W:", replace:":symw::")+
+ replace@(match:"G:", replace:":symg::")+
+ replace@(match:"R:", replace:":symr::")+
+ replace@(match:"B:", replace:":symb::")+
+ replace@(match:"U:", replace:":symu::")+
+ replace@(match:"W:", replace:":symw::")+
+ # Symbolize snow.
+ replace@(match:"S:", replace:":snow::")+
+ replace@(match:"S:", replace:":snow::")+
+ replace@(match:"S:", replace:":snow::")+
+ # Symbolize numbers from 20-0 when before a comma.
+ replace@(match:"20,", replace:":20mana:,")+
+ replace@(match:"19,", replace:":19mana:,")+
+ replace@(match:"18,", replace:":18mana:,")+
+ replace@(match:"17,", replace:":17mana:,")+
+ replace@(match:"16,", replace:":16mana:,")+
+ replace@(match:"15,", replace:":15mana:,")+
+ replace@(match:"14,", replace:":14mana:,")+
+ replace@(match:"13,", replace:":13mana:,")+
+ replace@(match:"12,", replace:":12mana:,")+
+ replace@(match:"11,", replace:":11mana:,")+
+ replace@(match:"10,", replace:":10mana:,")+
+ replace@(match:"9,", replace:":9mana:,")+
+ replace@(match:"8,", replace:":8mana:,")+
+ replace@(match:"7,", replace:":7mana:,")+
+ replace@(match:"6,", replace:":6mana:,")+
+ replace@(match:"5,", replace:":5mana:,")+
+ replace@(match:"4,", replace:":4mana:,")+
+ replace@(match:"3,", replace:":3mana:,")+
+ replace@(match:"2,", replace:":2mana:,")+
+ replace@(match:"1,", replace:":1mana:,")+
+ replace@(match:"0,", replace:":0mana:,")+
+ # Symbolize numbers from 20-0 when before another symbol or a colon.
+ replace@(match:"20:", replace:":20mana::")+
+ replace@(match:"19:", replace:":19mana::")+
+ replace@(match:"18:", replace:":18mana::")+
+ replace@(match:"17:", replace:":17mana::")+
+ replace@(match:"16:", replace:":16mana::")+
+ replace@(match:"15:", replace:":15mana::")+
+ replace@(match:"14:", replace:":14mana::")+
+ replace@(match:"13:", replace:":13mana::")+
+ replace@(match:"12:", replace:":12mana::")+
+ replace@(match:"11:", replace:":11mana::")+
+ replace@(match:"10:", replace:":10mana::")+
+ replace@(match:"9:", replace:":9mana::")+
+ replace@(match:"8:", replace:":8mana::")+
+ replace@(match:"7:", replace:":7mana::")+
+ replace@(match:"6:", replace:":6mana::")+
+ replace@(match:"5:", replace:":5mana::")+
+ replace@(match:"4:", replace:":4mana::")+
+ replace@(match:"3:", replace:":3mana::")+
+ replace@(match:"2:", replace:":2mana::")+
+ replace@(match:"1:", replace:":1mana::")+
+ replace@(match:"0:", replace:":0mana::")+
+ # Symbolize X and Y when before a comma.
+ replace@(match:"Y,", replace:":symy:,")+
+ replace@(match:"X,", replace:":symx:,")+
+ # Symbolize X and Y when before another symbol or a colon.
+ replace@(match:"Y:", replace:":symy::")+
+ replace@(match:"X:", replace:":symx::")
+ # Count the number of paragraphs to detect number of walker abilities.
+ paragraph_count := replace@(match:"\n", replace:"•")+
+ filter_text@(match:"•")
+ write_normal := {
+ # The Name and Casting Cost
+ "\n[b]"+card.name+"[/b] "
+ +(if not options.text_costs then mtgsally_mse_forum_cost(card.casting_cost))
+ +(if options.text_costs then card.casting_cost)
+ # The Type and Rarity
+ +"\n"+card.type+(if options.color_rarities then rarity_color() else rarity_uncolor())
+ # The Rules Text
+ +(if card.rule_text != "" then "\n")
+ +(if not options.text_costs then forum_rules_filter_mtgsally_mse(remove_tags(card.rule_text)))
+ +(if options.text_costs then forum_rules_filter_plain(card.rule_text))
+ # The Flavor Text
+ +(if card.flavor_text != "" then "\n[i]")
+ +card.flavor_text
+ +(if card.flavor_text != "" then "[/i]")
+ # The P/T
+ +(if contains(card.type, match:"Creature") then "\n")
+ +(if contains(card.type, match:"Creature") then card.pt)
+ # The Notes
+ +(if options.include_notes and card.notes !="" then "\n[spoiler]Card Notes: ")
+ +(if options.include_notes and card.notes !="" then card.notes)
+ +(if options.include_notes and card.notes !="" then "[/spoiler]")
+ +"\n"
+ }
+ write_split := {
+ # The Name and Casting Cost
+ "\n[b]"+card.name+"[/b] "
+ +(if not options.text_costs then mtgsally_mse_forum_cost(card.casting_cost))
+ +(if options.text_costs then card.casting_cost)
+ # The Type and Rarity
+ +"\n"+card.type+(if options.color_rarities then rarity_color() else rarity_uncolor())
+ # The Rules Text
+ +(if card.rule_text != "" then "\n")
+ +(if not options.text_costs then forum_rules_filter_mtgsally_mse(remove_tags(card.rule_text)))
+ +(if options.text_costs then forum_rules_filter_plain(card.rule_text))
+ # The Flavor Text
+ +(if card.flavor_text != "" then "\n[i]")
+ +card.flavor_text
+ +(if card.flavor_text != "" then "[/i]")
+ # The P/T
+ +(if contains(card.type, match:"Creature") then "\n")
+ +(if contains(card.type, match:"Creature") then card.pt)
+ +"\n /// "
+ # The Second Name and Casting Cost
+ +"\n[b]"+card.name_2+"[/b] "
+ +(if not options.text_costs then mtgsally_mse_forum_cost(card.casting_cost_2))
+ +(if options.text_costs then card.casting_cost_2)
+ # The Second Type and Rarity
+ +"\n"+card.type_2+(if options.color_rarities then rarity_color() else rarity_uncolor())
+ # The Second Rules Text
+ +(if card.rule_text_2 != "" then "\n")
+ +(if not options.text_costs then forum_rules_filter_mtgsally_mse(remove_tags(card.rule_text_2)))
+ +(if options.text_costs then forum_rules_filter_plain(card.rule_text_2))
+ # The Second Flavor Text
+ +(if card.flavor_text_2 != "" then "\n[i]")
+ +card.flavor_text_2
+ +(if card.flavor_text_2 != "" then "[/i]")
+ # The Second P/T
+ +(if contains(card.type_2, match:"Creature") then "\n")
+ +(if contains(card.type_2, match:"Creature") then card.pt_2)
+ # The Notes
+ +(if options.include_notes and card.notes !="" then "\n[spoiler]Card Notes: ")
+ +(if options.include_notes and card.notes !="" then card.notes)
+ +(if options.include_notes and card.notes !="" then "[/spoiler]")
+ +"\n"
+ }
+ write_flip := {
+ # The Name and Casting Cost
+ "\n[b]"+card.name+"[/b] "
+ +(if not options.text_costs then mtgsally_mse_forum_cost(card.casting_cost))
+ +(if options.text_costs then card.casting_cost)
+ # The Type and Rarity
+ +"\n"+card.type+(if options.color_rarities then rarity_color() else rarity_uncolor())
+ # The Rules Text
+ +(if card.rule_text != "" then "\n")
+ +(if not options.text_costs then forum_rules_filter_mtgsally_mse(remove_tags(card.rule_text)))
+ +(if options.text_costs then forum_rules_filter_plain(card.rule_text))
+ # The Flavor Text
+ +(if card.flavor_text != "" then "\n[i]")
+ +card.flavor_text
+ +(if card.flavor_text != "" then "[/i]")
+ # The P/T
+ +(if contains(card.type, match:"Creature") then "\n")
+ +(if contains(card.type, match:"Creature") then card.pt)
+ +"\n ---Flip--- "
+ # The Flip Name and Casting Cost
+ +"\n[b]"+card.name_2+"[/b] "
+ +(if not options.text_costs then mtgsally_mse_forum_cost(card.casting_cost_2))
+ +(if options.text_costs then card.casting_cost_2)
+ # The Flip Rules Text
+ +(if card.rule_text_2 != "" then "\n")
+ +(if not options.text_costs then forum_rules_filter_mtgsally_mse(remove_tags(card.rule_text_2)))
+ +(if options.text_costs then forum_rules_filter_plain(card.rule_text_2))
+ # The Flip Flavor Text
+ +(if card.flavor_text_2 != "" then "\n[i]")
+ +card.flavor_text_2
+ +(if card.flavor_text_2 != "" then "[/i]")
+ # The Flip P/T
+ +(if contains(card.type_2, match:"Creature") then "\n")
+ +(if contains(card.type_2, match:"Creature") then card.pt_2)
+ # The Notes
+ +(if options.include_notes and card.notes !="" then "\n[spoiler]Card Notes: ")
+ +(if options.include_notes and card.notes !="" then card.notes)
+ +(if options.include_notes and card.notes !="" then "[/spoiler]")
+ +"\n"
+ }
+ write_walker := {
+ # The Name and Casting Cost
+ "\n[b]"+card.name+"[/b] "
+ +(if not options.text_costs then mtgsally_mse_forum_cost(card.casting_cost))
+ +(if options.text_costs then card.casting_cost)
+ # The Type and Rarity
+ +"\n"+card.type+(if options.color_rarities then rarity_color() else rarity_uncolor())
+ # The Starting Loyalty
+ +"\nStarting Loyalty: "+card.loyalty
+ # The First Ability
+ +"\n"+card.loyalty_cost_1
+ +(if card.loyalty_cost_1 !="" then ": ")
+ +forum_rules_filter_plain(split_text(match:"\n", card.rule_text).0)
+ # The Second Ability
+ +(if contains(paragraph_count(card.rule_text), match:"•") then "\n")
+ +card.loyalty_cost_2
+ +(if card.loyalty_cost_2 !="" then ": ")
+ +(if contains(paragraph_count(card.rule_text), match:"•") then forum_rules_filter_plain(split_text(match:"\n", card.rule_text).1))
+ # The Third Ability
+ +(if contains(paragraph_count(card.rule_text), match:"••") then "\n")
+ +card.loyalty_cost_3
+ +(if card.loyalty_cost_3 !="" then ": ")
+ +(if contains(paragraph_count(card.rule_text), match:"••") then forum_rules_filter_plain(split_text(match:"\n", card.rule_text).2))
+ # The Fourth Ability
+ +(if contains(paragraph_count(card.rule_text), match:"•••") then "\n")
+ +card.loyalty_cost_4
+ +(if card.loyalty_cost_4 !="" then ": ")
+ +(if contains(paragraph_count(card.rule_text), match:"•••") then forum_rules_filter_plain(split_text(match:"\n", card.rule_text).3))
+ # The Flavor Text
+ +(if card.flavor_text != "" then "\n[i]")
+ +card.flavor_text
+ +(if card.flavor_text != "" then "[/i]")
+ # The Notes
+ +(if options.include_notes and card.notes !="" then "\n[spoiler]Card Notes: ")
+ +(if options.include_notes and card.notes !="" then card.notes)
+ +(if options.include_notes and card.notes !="" then "[/spoiler]")
+ +"\n"
+ }
+ write_leveler := {
+ # The Name and Casting Cost
+ "\n[b]"+card.name+"[/b] "
+ +(if not options.text_costs then mtgsally_mse_forum_cost(card.casting_cost))
+ +(if options.text_costs then card.casting_cost)
+ # The Type and Rarity
+ +"\n"+card.type+(if options.color_rarities then rarity_color() else rarity_uncolor())
+ # The First Textbox
+ +"\n"+forum_rules_filter_plain(card.rule_text)
+ +(if card.pt !="" then " (")+card.pt+")"
+ # The Second Textbox
+ +"\n[LEVEL "+card.level_1+"]: "
+ +forum_rules_filter_plain(card.rule_text_2)
+ +(if card.pt_2 !="" then " (")+card.pt_2+")"
+ # The Third Textbox
+ +"\n"+(if card.level_2 !="" then "[LEVEL "+card.level_2+"]: ")
+ +forum_rules_filter_plain(card.rule_text_3)
+ +(if card.pt_3 !="" then " (")+card.pt_3+")"
+ # The Flavor Text
+ +(if card.flavor_text != "" then "\n[i]")
+ +card.flavor_text
+ +(if card.flavor_text != "" then "[/i]")
+ # The Notes
+ +(if options.include_notes and card.notes !="" then "\n[spoiler]Card Notes: ")
+ +(if options.include_notes and card.notes !="" then card.notes)
+ +(if options.include_notes and card.notes !="" then "[/spoiler]")
+ +"\n"
+ }
+ write_card := { if contains(card.shape, match:"token") or contains(card.shape, match:"rulestip") then ""
+ else if contains(card.shape, match:"split") then write_split()
+ else if card.name_2 != "" then write_flip()
+ else if card.loyalty != "" then write_walker()
+ else if contains(card.shape, match:"leveler") then write_leveler()
+ else write_normal()
+ }
+ write_cards := to_text(for each card in sort_list(cards, order_by: {input.card_number}) do write_card())
+ to_string("Full Spoiler List for "+set.title+"\nSet by "+options.creator+"\n"+set.description+"\n"+write_cards)
diff --git a/data/magic-new-clear.mse-style/style b/data/magic-new-clear.mse-style/style
index 26a72dd5..81be96e4 100644
--- a/data/magic-new-clear.mse-style/style
+++ b/data/magic-new-clear.mse-style/style
@@ -1,382 +1,382 @@
-mse version: 0.3.8
-game: magic
-short name: Modern Clear
-full name: After 8th edition Clear
-icon: card-sample.png
-position hint: 009
-installer group: magic/new style/normal cards/Clear
-
-version: 2010-04-01
-depends on:
- package: magic.mse-game
- version: 2008-06-02
-depends on:
- package: magic-watermarks.mse-include
- version: 2007-09-23
-depends on:
- package: magic-mana-large.mse-symbol-font
- version: 2007-09-23
-depends on:
- package: magic-mana-small.mse-symbol-font
- version: 2007-09-23
-depends on:
- package: magic-future-common.mse-include
- version: 2007-09-23
-
-card width: 375
-card height: 523
-card dpi: 150
-############################################################## Extra scripts
-init script:
- # Use the normal tap symbol
- mana_t := {
- if styling.tap_symbol == "old" then "old"
- else if styling.tap_symbol == "diagonal T" then "older"
- else "new"
- }
-
- # Use guild mana symbols?
- guild_mana := { styling.use_guild_mana_symbols }
-
- frame_alpha := { if styling.frame_opacity == "" then 0.75
- else if styling.frame_opacity < 0 then 0
- else if styling.frame_opacity > 100 then 1
- else styling.frame_opacity / 100
- }
-
-############################################################## Set info fields
-set info style:
- symbol:
- variation:
- name: invertedcommon
- border radius: 0.10
- fill type: solid
- fill color: rgb(255,255,255)
- border color: rgb(0,0,0)
-############################################################## Extra style options
-styling field:
- type: boolean
- name: use guild mana symbols
- description: Use the Ravnica guild symbols instead of the official half/half circles for hybrid mana.
- initial: no
-styling field:
- type: choice
- name: tap symbol
- description: What tap and untap symbols should be used on cards?
- initial: modern
- choice: modern
- choice: old
- choice: diagonal T
-styling field:
- type: package choice
- name: text box mana symbols
- match: magic-mana-*.mse-symbol-font
- initial: magic-mana-small.mse-symbol-font
-styling field:
- type: choice
- name: center text
- description: When to center text (short text only means only on one-line cards with no flavor text)
- choice: always
- choice: short text only
- choice: never
- initial: never
-styling field:
- type: boolean
- name: inverted common symbol
- description: Should the common rarity symbol be inverted, like in Coldsnap?
- initial: no
-styling field:
- type: package choice
- name: overlay
- description: Should there be an overlay applied, such as foil?
- match: magic-overlay-*.mse-include
- required: false
-styling field:
- type: text
- name: frame opacity
- description: The opacity of the frame. 100 is no transparency, 0 is completely transparent. Default is 75.
-styling field:
- type: boolean
- name: border visible
- description: Should the card border be visible?
- initial: yes
-styling field:
- type: choice
- name: artist font color
- description: Should the artist font color be black or white?
- initial: black
- choice: black
- choice: white
-styling style:
- use guild mana symbols:
- choice images:
- yes: /magic-mana-small.mse-symbol-font/mana_guild_rg.png
- no: /magic-mana-small.mse-symbol-font/mana_rg.png
- tap symbol:
- render style: both
- choice images:
- modern: /magic-mana-large.mse-symbol-font/mana_t.png
- old: /magic-mana-large.mse-symbol-font/mana_t_old.png
- diagonal T: /magic-mana-large.mse-symbol-font/mana_t_older.png
- center text:
- render style: both
- choice images:
- always: /magic.mse-game/icons/center-all-text.png
- short text only: /magic.mse-game/icons/center-short-text.png
- never: /magic.mse-game/icons/center-no-text.png
- inverted common symbol:
- choice images:
- no: { symbol_variation(symbol: set.symbol, variation: "common") }
- yes: { symbol_variation(symbol: set.symbol, variation: "invertedcommon") }
-############################################################## Card fields
-card style:
- ############################# Background stuff
- border color:
- left: 0
- top : 0
- width: 375
- height: 523
- radius: 18
- left width: 17
- right width: 17
- top width: 17
- bottom width: 18
- z index: 5
- visible: {styling.border_visible}
- mask: border_mask.png
- ############################# Name line
- name:
- left: { if card.card_symbol=="none" then 33 else 51 }
- top : 30
- right: { 341 - card_style.casting_cost.content_width }
- height: 23
- alignment: bottom shrink-overflow
- padding bottom: 0
- z index: 2
- font:
- name: Matrix
- size: 17
- weight: bold
- color: black
- casting cost:
- right: 343
- top : 31
- width: { max(30, card_style.casting_cost.content_width) + 5 }
- height: 23
- alignment: middle right
- font:
- name: MPlantin
- size: 15
- symbol font:
- name: magic-mana-large
- size: 15
- alignment: middle right
- always symbol: true
- z index: 3
- padding top: 0
- card symbol:
- left: {if card.card_symbol=="none" then 20 else 32}
- top : 31
- height: 20
- width: 14
- z index: 3
- render style: image
- choice images:
- tombstone: tombstone.png
- ############################# Image
- image:
- left: { if styling.border_visible then 19 else 0 }
- top: { if styling.border_visible then 19 else 0 }
- width: { if styling.border_visible then 337 else 375 }
- height: { if styling.border_visible then 485 else 523 }
- z index: 0
- mask: { if not styling.border_visible then "image_mask.png" else nil }
- ############################# Card type
- type:
- left: 36
- top : 296
- width: { 307 - max(22,card_style.rarity.content_width) }
- height: 20
- alignment: top shrink-overflow
- z index: 2
- padding top: 2
- font:
- name: Matrix
- size: 14
- color: black
- separator color: rgb(128,128,128)
- rarity:
- right: 342
- top : 296
- width: 44
- height: 22
- z index: 3
- render style: image
- alignment: middle right
- choice images:
- # Images based on the set symbol
- basic land:
- script:
- if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
- else symbol_variation(symbol: set.symbol, variation: "common")
- common:
- script:
- if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
- else symbol_variation(symbol: set.symbol, variation: "common")
- uncommon: script: symbol_variation(symbol: set.symbol, variation: "uncommon")
- rare: script: symbol_variation(symbol: set.symbol, variation: "rare")
- mythic rare: script: symbol_variation(symbol: set.symbol, variation: "mythic rare")
- special: script: symbol_variation(symbol: set.symbol, variation: "special")
- ############################# Text box
- text:
- left: 31
- top : 328
- width: 311
- height: 142
- font:
- name: MPlantin
- italic name: MPlantin-Italic
- size: 14
- scale down to: 6
- color: black
- symbol font:
- name: { styling.text_box_mana_symbols }
- size: 14
- alignment:
- script:
- if (styling.center_text == "short text only" and
- not contains(match:"\n", card.rule_text) and
- card.flavor_text == "" and
- card_style.text.content_lines <= 2) or
- styling.center_text == "always"
- then "middle center"
- else "middle left"
- z index: 3
- padding left: 6
- padding right: 4
- line height hard: 1.2
- line height line: 1.5
- line height soft: 0.9
- line height hard max: 1.3
- line height line max: 1.6
- watermark:
- left: 117
- top : 321
- width: 138
- height: 156
- z index: 2
- render style: image
- alignment: middle center
- include file: /magic-watermarks.mse-include/watermarks
- ############################# PT
- pt:
- z index: 3
- left: 284
- top: 465
- width: 60
- height: 28
- alignment: center middle shrink-overflow
- font:
- name: ModMatrix
- size: 17
- weight: bold
- color: black
- separator color: rgb(200,0,0)
- ############################# Card sorting / numbering
- ############################# Copyright stuff
- illustrator:
- left: 56
- top : 477
- width: 217
- height: 16
- z index: 2
- font:
- name: Matrix
- size: 10
- weight: bold
- color: { styling.artist_font_color }
- copyright line:
- left: 30
- top : 492
- width: 247
- height: 12
- z index: 2
- font:
- name: MPlantin
- size: 6.5
- color: { styling.artist_font_color }
-############################################################## Extra card fields
-extra card field:
- type: choice
- name: frame
- script: "frame"
- editable: false
- save value: false
-extra card field:
- type: choice
- name: pt box
- script: "pt"
- editable: false
- save value: false
-extra card field:
- type: choice
- name: foil layer
- choice: foil
- save value: false
- editable: false
-extra card field:
- type: choice
- name: paintbrush
- script: styling.artist_font_color
- save value: false
- editable: false
-extra card field:
- type: choice
- name: image liner
- script: "image"
- save value: false
- editable: false
-extra card style:
- frame:
- left: 0
- top: 0
- width: 375
- height: 523
- z index: 1
- render style: image
- image: { set_alpha("frame.png", alpha: frame_alpha()) }
- pt box:
- left: 0
- top: 3
- width: 375
- height: 520
- z index: 2
- visible: { card.pt != "" }
- render style: image
- image: pt_box.png
- foil layer:
- left: 0
- top : 0
- width: 375
- height: 523
- z index: 4
- render style: image
- image: {if styling.overlay == "" then nil else styling.overlay + "/overlay.png"}
- paintbrush:
- left: 27
- top : 481
- width: 27
- height: 11
- z index: 2
- render style: image
- choice images:
- black: /magic-future-common.mse-include/paintbrush_black.png
- white: /magic-future-common.mse-include/paintbrush_white.png
- image liner:
- left: 0
- top: 0
- width: 375
- height: 523
- z index: 2
- render style: image
- image: imageborder.png
+mse version: 0.3.8
+game: magic
+short name: Modern Clear
+full name: After 8th edition Clear
+icon: card-sample.png
+position hint: 009
+installer group: magic/new style/normal cards/Clear
+
+version: 2010-04-01
+depends on:
+ package: magic.mse-game
+ version: 2008-06-02
+depends on:
+ package: magic-watermarks.mse-include
+ version: 2007-09-23
+depends on:
+ package: magic-mana-large.mse-symbol-font
+ version: 2007-09-23
+depends on:
+ package: magic-mana-small.mse-symbol-font
+ version: 2007-09-23
+depends on:
+ package: magic-future-common.mse-include
+ version: 2007-09-23
+
+card width: 375
+card height: 523
+card dpi: 150
+############################################################## Extra scripts
+init script:
+ # Use the normal tap symbol
+ mana_t := {
+ if styling.tap_symbol == "old" then "old"
+ else if styling.tap_symbol == "diagonal T" then "older"
+ else "new"
+ }
+
+ # Use guild mana symbols?
+ guild_mana := { styling.use_guild_mana_symbols }
+
+ frame_alpha := { if styling.frame_opacity == "" then 0.75
+ else if styling.frame_opacity < 0 then 0
+ else if styling.frame_opacity > 100 then 1
+ else styling.frame_opacity / 100
+ }
+
+############################################################## Set info fields
+set info style:
+ symbol:
+ variation:
+ name: invertedcommon
+ border radius: 0.10
+ fill type: solid
+ fill color: rgb(255,255,255)
+ border color: rgb(0,0,0)
+############################################################## Extra style options
+styling field:
+ type: boolean
+ name: use guild mana symbols
+ description: Use the Ravnica guild symbols instead of the official half/half circles for hybrid mana.
+ initial: no
+styling field:
+ type: choice
+ name: tap symbol
+ description: What tap and untap symbols should be used on cards?
+ initial: modern
+ choice: modern
+ choice: old
+ choice: diagonal T
+styling field:
+ type: package choice
+ name: text box mana symbols
+ match: magic-mana-*.mse-symbol-font
+ initial: magic-mana-small.mse-symbol-font
+styling field:
+ type: choice
+ name: center text
+ description: When to center text (short text only means only on one-line cards with no flavor text)
+ choice: always
+ choice: short text only
+ choice: never
+ initial: never
+styling field:
+ type: boolean
+ name: inverted common symbol
+ description: Should the common rarity symbol be inverted, like in Coldsnap?
+ initial: no
+styling field:
+ type: package choice
+ name: overlay
+ description: Should there be an overlay applied, such as foil?
+ match: magic-overlay-*.mse-include
+ required: false
+styling field:
+ type: text
+ name: frame opacity
+ description: The opacity of the frame. 100 is no transparency, 0 is completely transparent. Default is 75.
+styling field:
+ type: boolean
+ name: border visible
+ description: Should the card border be visible?
+ initial: yes
+styling field:
+ type: choice
+ name: artist font color
+ description: Should the artist font color be black or white?
+ initial: black
+ choice: black
+ choice: white
+styling style:
+ use guild mana symbols:
+ choice images:
+ yes: /magic-mana-small.mse-symbol-font/mana_guild_rg.png
+ no: /magic-mana-small.mse-symbol-font/mana_rg.png
+ tap symbol:
+ render style: both
+ choice images:
+ modern: /magic-mana-large.mse-symbol-font/mana_t.png
+ old: /magic-mana-large.mse-symbol-font/mana_t_old.png
+ diagonal T: /magic-mana-large.mse-symbol-font/mana_t_older.png
+ center text:
+ render style: both
+ choice images:
+ always: /magic.mse-game/icons/center-all-text.png
+ short text only: /magic.mse-game/icons/center-short-text.png
+ never: /magic.mse-game/icons/center-no-text.png
+ inverted common symbol:
+ choice images:
+ no: { symbol_variation(symbol: set.symbol, variation: "common") }
+ yes: { symbol_variation(symbol: set.symbol, variation: "invertedcommon") }
+############################################################## Card fields
+card style:
+ ############################# Background stuff
+ border color:
+ left: 0
+ top : 0
+ width: 375
+ height: 523
+ radius: 18
+ left width: 17
+ right width: 17
+ top width: 17
+ bottom width: 18
+ z index: 5
+ visible: {styling.border_visible}
+ mask: border_mask.png
+ ############################# Name line
+ name:
+ left: { if card.card_symbol=="none" then 33 else 51 }
+ top : 30
+ right: { 341 - card_style.casting_cost.content_width }
+ height: 23
+ alignment: bottom shrink-overflow
+ padding bottom: 0
+ z index: 2
+ font:
+ name: Matrix
+ size: 17
+ weight: bold
+ color: black
+ casting cost:
+ right: 343
+ top : 31
+ width: { max(30, card_style.casting_cost.content_width) + 5 }
+ height: 23
+ alignment: middle right
+ font:
+ name: MPlantin
+ size: 15
+ symbol font:
+ name: magic-mana-large
+ size: 15
+ alignment: middle right
+ always symbol: true
+ z index: 3
+ padding top: 0
+ card symbol:
+ left: {if card.card_symbol=="none" then 20 else 32}
+ top : 31
+ height: 20
+ width: 14
+ z index: 3
+ render style: image
+ choice images:
+ tombstone: tombstone.png
+ ############################# Image
+ image:
+ left: { if styling.border_visible then 19 else 0 }
+ top: { if styling.border_visible then 19 else 0 }
+ width: { if styling.border_visible then 337 else 375 }
+ height: { if styling.border_visible then 485 else 523 }
+ z index: 0
+ mask: { if not styling.border_visible then "image_mask.png" else nil }
+ ############################# Card type
+ type:
+ left: 36
+ top : 296
+ width: { 307 - max(22,card_style.rarity.content_width) }
+ height: 20
+ alignment: top shrink-overflow
+ z index: 2
+ padding top: 2
+ font:
+ name: Matrix
+ size: 14
+ color: black
+ separator color: rgb(128,128,128)
+ rarity:
+ right: 342
+ top : 296
+ width: 44
+ height: 22
+ z index: 3
+ render style: image
+ alignment: middle right
+ choice images:
+ # Images based on the set symbol
+ basic land:
+ script:
+ if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
+ else symbol_variation(symbol: set.symbol, variation: "common")
+ common:
+ script:
+ if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
+ else symbol_variation(symbol: set.symbol, variation: "common")
+ uncommon: script: symbol_variation(symbol: set.symbol, variation: "uncommon")
+ rare: script: symbol_variation(symbol: set.symbol, variation: "rare")
+ mythic rare: script: symbol_variation(symbol: set.symbol, variation: "mythic rare")
+ special: script: symbol_variation(symbol: set.symbol, variation: "special")
+ ############################# Text box
+ text:
+ left: 31
+ top : 328
+ width: 311
+ height: 142
+ font:
+ name: MPlantin
+ italic name: MPlantin-Italic
+ size: 14
+ scale down to: 6
+ color: black
+ symbol font:
+ name: { styling.text_box_mana_symbols }
+ size: 14
+ alignment:
+ script:
+ if (styling.center_text == "short text only" and
+ not contains(match:"\n", card.rule_text) and
+ card.flavor_text == "" and
+ card_style.text.content_lines <= 2) or
+ styling.center_text == "always"
+ then "middle center"
+ else "middle left"
+ z index: 3
+ padding left: 6
+ padding right: 4
+ line height hard: 1.2
+ line height line: 1.5
+ line height soft: 0.9
+ line height hard max: 1.3
+ line height line max: 1.6
+ watermark:
+ left: 117
+ top : 321
+ width: 138
+ height: 156
+ z index: 2
+ render style: image
+ alignment: middle center
+ include file: /magic-watermarks.mse-include/watermarks
+ ############################# PT
+ pt:
+ z index: 3
+ left: 284
+ top: 465
+ width: 60
+ height: 28
+ alignment: center middle shrink-overflow
+ font:
+ name: ModMatrix
+ size: 17
+ weight: bold
+ color: black
+ separator color: rgb(200,0,0)
+ ############################# Card sorting / numbering
+ ############################# Copyright stuff
+ illustrator:
+ left: 56
+ top : 477
+ width: 217
+ height: 16
+ z index: 2
+ font:
+ name: Matrix
+ size: 10
+ weight: bold
+ color: { styling.artist_font_color }
+ copyright line:
+ left: 30
+ top : 492
+ width: 247
+ height: 12
+ z index: 2
+ font:
+ name: MPlantin
+ size: 6.5
+ color: { styling.artist_font_color }
+############################################################## Extra card fields
+extra card field:
+ type: choice
+ name: frame
+ script: "frame"
+ editable: false
+ save value: false
+extra card field:
+ type: choice
+ name: pt box
+ script: "pt"
+ editable: false
+ save value: false
+extra card field:
+ type: choice
+ name: foil layer
+ choice: foil
+ save value: false
+ editable: false
+extra card field:
+ type: choice
+ name: paintbrush
+ script: styling.artist_font_color
+ save value: false
+ editable: false
+extra card field:
+ type: choice
+ name: image liner
+ script: "image"
+ save value: false
+ editable: false
+extra card style:
+ frame:
+ left: 0
+ top: 0
+ width: 375
+ height: 523
+ z index: 1
+ render style: image
+ image: { set_alpha("frame.png", alpha: frame_alpha()) }
+ pt box:
+ left: 0
+ top: 3
+ width: 375
+ height: 520
+ z index: 2
+ visible: { card.pt != "" }
+ render style: image
+ image: pt_box.png
+ foil layer:
+ left: 0
+ top : 0
+ width: 375
+ height: 523
+ z index: 4
+ render style: image
+ image: {if styling.overlay == "" then nil else styling.overlay + "/overlay.png"}
+ paintbrush:
+ left: 27
+ top : 481
+ width: 27
+ height: 11
+ z index: 2
+ render style: image
+ choice images:
+ black: /magic-future-common.mse-include/paintbrush_black.png
+ white: /magic-future-common.mse-include/paintbrush_white.png
+ image liner:
+ left: 0
+ top: 0
+ width: 375
+ height: 523
+ z index: 2
+ render style: image
+ image: imageborder.png
diff --git a/data/magic-new-leveler.mse-style/style b/data/magic-new-leveler.mse-style/style
index 5df6b668..a1285223 100644
--- a/data/magic-new-leveler.mse-style/style
+++ b/data/magic-new-leveler.mse-style/style
@@ -1,808 +1,808 @@
-mse version: 0.3.8
-game: magic
-short name: Leveler
-full name: Post 8th Leveler Style
-icon: card-sample.png
-position hint: 006
-installer group: magic/new style/leveler cards
-
-version: 2010-04-06
-depends on:
- package: magic.mse-game
- version: 2010-04-06
-depends on:
- package: magic-default-image.mse-include
- version: 2007-09-23
-depends on:
- package: magic-watermarks.mse-include
- version: 2007-09-23
-depends on:
- package: magic-mana-large.mse-symbol-font
- version: 2007-09-23
-depends on:
- package: magic-mana-small.mse-symbol-font
- version: 2007-09-23
-
-card width: 375
-card height: 523
-card dpi: 150
-############################################################## Extra scripts
-init script:
- # Load scripts for image box
- include file: /magic-default-image.mse-include/scripts
-
- # Should hybrids have a grey name?
- mask_hybrid_with_land := { styling.grey_hybrid_name }
-
- #Should multicolor lands with basic land types have a colored name?
- mask_multi_land_with_color := { styling.colored_multicolor_land_name }
-
- # Which artifact template should be used? Which multicolor template should be used?
- alternate_template := {
- if input == "a" then (
- if styling.artifact_style == "light" then "oa"
- else if styling.artifact_style == "brown" then "ba"
- else "a"
- ) else if input == "m" then (
- if styling.saturated_multicolor then "m"
- else "om"
- ) else input
- }
- template := { alternate_template() + "{type}.jpg" }
- land_template := { (if input == "a" then "c" else alternate_template()) + "l{type}.jpg" }
- # Use land templates for previews because they show more contrast
- hybrid_previews := "land,hybrid"
-
- # Use the normal tap symbol
- mana_t := {
- if styling.tap_symbol == "old" then "old"
- else if styling.tap_symbol == "diagonal T" then "older"
- else "new"
- }
-
- # Use guild mana symbols?
- guild_mana := { styling.use_guild_mana_symbols }
-
- # Declare the card shape.
- card_shape := { "leveler" }
-
- # Replacing the text_filter() from game file because all three rule text fields should call card.name
- card_name_replace :=
- replace@(
- match: "CARDNAME"
- replace: "" + (if card.name=="" then "CARDNAME" else card.name) + "")
-
-############################################################## Set info fields
-set info style:
- symbol:
- variation:
- name: invertedcommon
- border radius: 0.10
- fill type: solid
- fill color: rgb(255,255,255)
- border color: rgb(0,0,0)
-############################################################## Extra style options
-styling field:
- type: choice
- name: artifact style
- description: Choose the style of artifacts: light = before Fifth Dawn, dark = used since Fifth Dawn, brown = old rust style.
- initial: dark
- choice: light
- choice: dark
- choice: brown
-styling field:
- type: boolean
- name: saturated multicolor
- description: Should multicolor cards be more saturated? This is done on real cards.
- initial: yes
-styling field:
- type: boolean
- name: grey hybrid name
- description: Use a grey background for the name and type line on hybrid cards. This is done on real cards.
-styling field:
- type: boolean
- name: colored multicolor land name
- description: Use a colored background for the name and type on multicolor land cards with a basic land type. This is done on real cards.
-styling field:
- type: boolean
- name: use guild mana symbols
- description: Use the Ravnica guild symbols instead of the official half/half circles for hybrid mana.
- initial: no
-styling field:
- type: choice
- name: tap symbol
- description: What tap and untap symbols should be used on cards?
- initial: modern
- choice: modern
- choice: old
- choice: diagonal T
-styling field:
- type: package choice
- name: text box mana symbols
- match: magic-mana-*.mse-symbol-font
- initial: magic-mana-small.mse-symbol-font
-styling field:
- type: choice
- name: center text
- description: When to center text (short text only means only on one-line cards with no flavor text)
- choice: always
- choice: short text only
- choice: never
- initial: never
-styling field:
- type: boolean
- name: inverted common symbol
- description: Should the common rarity symbol be inverted, like in Coldsnap?
- initial: no
-styling field:
- type: package choice
- name: overlay
- description: Should there be an overlay applied, such as foil?
- match: magic-overlay-*.mse-include
- required: false
-styling field:
- type: choice
- name: image size
- description: Should the art extend into a transparent textbox?
- initial: standard
- choice: standard
- choice: extended
-styling style:
- artifact style:
- render style: both
- choice images:
- light: oacard.jpg
- dark: acard.jpg
- brown: bacard.jpg
- saturated multicolor:
- choice images:
- yes: mcard.jpg
- no: omcard.jpg
- use guild mana symbols:
- choice images:
- yes: /magic-mana-small.mse-symbol-font/mana_guild_rg.png
- no: /magic-mana-small.mse-symbol-font/mana_rg.png
- tap symbol:
- render style: both
- choice images:
- modern: /magic-mana-large.mse-symbol-font/mana_t.png
- old: /magic-mana-large.mse-symbol-font/mana_t_old.png
- diagonal T: /magic-mana-large.mse-symbol-font/mana_t_older.png
- center text:
- render style: both
- choice images:
- always: /magic.mse-game/icons/center-all-text.png
- short text only: /magic.mse-game/icons/center-short-text.png
- never: /magic.mse-game/icons/center-no-text.png
- inverted common symbol:
- choice images:
- no: { symbol_variation(symbol: set.symbol, variation: "common") }
- yes: { symbol_variation(symbol: set.symbol, variation: "invertedcommon") }
- image size:
- render style: both
- choice images:
- standard: /magic.mse-game/icons/small-image.png
- extended: /magic.mse-game/icons/large-image.png
-############################################################## Card fields
-card style:
- ############################# Background stuff
- border color:
- left: 0
- top : 0
- width: 375
- height: 523
- radius: 18
- left width: 17
- right width: 17
- top width: 17
- bottom width: 18
- z index: 5
- card color:
- left: 0
- top: 0
- width: 375
- height: 523
- z index: 0
- render style: image
- popup style: in place
- image: { card_background() }
- ############################# Name line
- name:
- left: { if card.card_symbol=="none" then 32 else 51 }
- top : 30
- right: { 341 - card_style.casting_cost.content_width }
- height: 23
- alignment: bottom shrink-overflow
- padding bottom: 0
- z index: 1
- font:
- name: Matrix
- size: 17
- weight: bold
- color: black
- casting cost:
- right: 343
- top : 31
- width: { max(30, card_style.casting_cost.content_width) + 5 }
- height: 23
- alignment: middle right
- font:
- name: MPlantin
- size: 15
- symbol font:
- name: magic-mana-large
- size: 15
- alignment: middle right
- always symbol: true
- z index: 2
- padding top: 0
- card symbol:
- left: {if card.card_symbol=="none" then 20 else 32}
- top : 31
- height: 20
- width: 14
- z index: 1
- render style: image
- choice images:
- tombstone: tombstone.png
- ############################# Image
- image:
- left: 32
- top: 62
- width: 311
- height: { if styling.image_size == "extended" then 408 else 228 }
- z index: 1
- mask:
- script: if styling.image_size == "extended" then "imagemask_extended.png" else "imagemask_standard.png"
- default: {default_image(card.card_color)}
- ############################# Card type
- type:
- left: 35
- top : 298
- width: { 308 - max(22,card_style.rarity.content_width) }
- height: 20
- alignment: top shrink-overflow
- z index: 1
- padding top: 2
- font:
- name: Matrix
- size: 14
- color: black
- separator color: rgb(128,128,128)
- rarity:
- right: 342
- top : 297
- width: 44
- height: 22
- z index: 2
- render style: image
- alignment: middle right
- choice images:
- # Images based on the set symbol
- basic land:
- script:
- if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
- else symbol_variation(symbol: set.symbol, variation: "common")
- common:
- script:
- if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
- else symbol_variation(symbol: set.symbol, variation: "common")
- uncommon: script: symbol_variation(symbol: set.symbol, variation: "uncommon")
- rare: script: symbol_variation(symbol: set.symbol, variation: "rare")
- mythic rare: script: symbol_variation(symbol: set.symbol, variation: "mythic rare")
- special: script: symbol_variation(symbol: set.symbol, variation: "special")
- ############################# Text box
- ############### rule text 2 and 3 are in extra card fields
- rule text:
- left: 31
- top: 328
- right: {if card.pt != "" then 277 else 342}
- height: 47
- font:
- name: MPlantin
- italic name: MPlantin-Italic
- size: 14
- scale down to: 6
- color: black
- symbol font:
- name: { styling.text_box_mana_symbols }
- size: 14
- alignment:
- script:
- if (styling.center_text == "short text only" and
- not contains(match:"\n", card.rule_text) and
- card.flavor_text == "" and
- card_style.text.content_lines <= 2) or
- styling.center_text == "always"
- then "middle center"
- else "middle left"
- z index: 2
- padding left: 6
- padding right: 4
- line height hard: 1.2
- line height line: 1.5
- line height soft: 0.9
- line height hard max: 1.3
- line height line max: 1.6
- watermark:
- left: 117
- top : 321
- width: 138
- height: 156
- z index: 1
- render style: image
- alignment: middle center
- include file: /magic-watermarks.mse-include/watermarks
- ############################# Levels
- level 1:
- z index: 3
- left: 38
- top: 393
- width: 34
- height: 22
- alignment: center middle shrink-overflow
- font:
- name: ModMatrix
- size: 17
- weight: bold
- color: black
- shadow color: white
- shadow blur: 2
- level 2:
- z index: 3
- left: 38
- top: 440
- width: 34
- height: 22
- alignment: center middle shrink-overflow
- font:
- name: ModMatrix
- size: 17
- weight: bold
- color: black
- shadow color: white
- shadow blur: 2
- ############################# PT
- pt:
- z index: 3
- left: 284
- top: 340
- width: 60
- height: 28
- alignment: center middle shrink-overflow
- font:
- name: ModMatrix
- size: 17
- weight: bold
- color: black
- separator color: rgb(200,0,0)
- pt 2:
- z index: 3
- left: 284
- top: 387
- width: 60
- height: 28
- alignment: center middle shrink-overflow
- font:
- name: ModMatrix
- size: 17
- weight: bold
- color: black
- separator color: rgb(200,0,0)
- pt 3:
- z index: 3
- left: 284
- top: 434
- width: 60
- height: 28
- alignment: center middle shrink-overflow
- font:
- name: ModMatrix
- size: 17
- weight: bold
- color: black
- separator color: rgb(200,0,0)
- ############################# Card sorting / numbering
- ############################# Copyright stuff
- illustrator:
- left: 56
- top : 478
- width: 217
- height: 16
- z index: 1
- font:
- name: Matrix
- size: 10
- weight: bold
- color: { font_color(card.card_color) }
- copyright line:
- left: 30
- top : 493
- width: 247
- height: 12
- z index: 1
- font:
- name: MPlantin
- size: 6.5
- color: { font_color(card.card_color) }
-############################################################## Extra card fields
-extra card field:
- type: choice
- name: pt box
- script: card.card_color
- editable: false
- save value: false
-# Add a shadow because the shadow is masked away.
-extra card field:
- type: choice
- name: pt box shadow
- choice: shadow
- editable: false
- save value: false
-extra card field:
- type: choice
- name: pt box 2
- script: card.card_color
- editable: false
- save value: false
-# Add a shadow because the shadow is masked away.
-extra card field:
- type: choice
- name: pt box shadow 2
- choice: shadow
- editable: false
- save value: false
-extra card field:
- type: choice
- name: pt box 3
- script: card.card_color
- editable: false
- save value: false
-# Add a shadow because the shadow is masked away.
-extra card field:
- type: choice
- name: pt box shadow 3
- choice: shadow
- editable: false
- save value: false
-extra card field:
- type: choice
- name: foil layer
- choice: foil
- save value: false
- editable: false
-# Add the bevel and shadows for the levelup arrow.
-extra card field:
- type: choice
- name: lvlup texture 1
- choice: image
- save value: false
- editable: false
-# Add the bevel and shadows for the levelup arrow.
-extra card field:
- type: choice
- name: lvlup texture 2
- choice: image
- save value: false
- editable: false
-# This field gets set to combine mode multiply, to slightly darken first arrow.
-extra card field:
- type: choice
- name: lvlup multiply 1
- choice: image
- save value: false
- editable: false
-# This field gets set to combine mode multiply, to darken second arrow by more.
-extra card field:
- type: choice
- name: lvlup multiply 2
- choice: image
- save value: false
- editable: false
-# Add the word "LEVEL" to the first arrow.
-extra card field:
- type: text
- name: lvl label 1
- editable: false
- save value: false
- script: "LEVEL"
-# Repeat the word "LEVEL" with more shadow to give illusion of outline.
-extra card field:
- type: text
- name: lvl label 1 copy 1
- editable: false
- save value: false
- script: "LEVEL"
-# Add the word "LEVEL" to the second arrow.
-extra card field:
- type: text
- name: lvl label 2
- editable: false
- save value: false
- script: "LEVEL"
-# Repeat the word "LEVEL" with more shadow to give illusion of outline.
-extra card field:
- type: text
- name: lvl label 2 copy 1
- editable: false
- save value: false
- script: "LEVEL"
-# Repeat the first level with more shadow to give illusion of outline.
-extra card field:
- type: text
- name: level 1 copy 1
- editable: false
- save value: false
- script: card.level_1
-# Repeat the second level with more shadow to give illusion of outline.
-extra card field:
- type: text
- name: level 2 copy 1
- editable: false
- save value: false
- script: card.level_2
-# Forward the second rule text so we can intercept and replace card.name_2 with card.name.
-extra card field:
- type: text
- name: forwarded rule text 2
- multi line: true
- save value: false
- script: card_name_replace(forward_editor(field: card.rule_text_2))
- description: The second rules text box
-# Combine rule text 2 and flavor text to allow flavor on levelers.
-extra card field:
- type: text
- name: rule text 3 with flavor
- multi line: true
- save value: false
- script:
- combined_editor(field1: card.rule_text_3, separator: "\n", field2: card.flavor_text)
- description: The third rules text box and flavor text for the card; use up and down arrows to switch
-extra card style:
- pt box:
- left: 271
- top: 335
- width: 81
- height: 42
- z index: 2
- mask: ptmask.png
- visible: { card.pt != "" }
- render style: image
- image: { leveler_ptbox() }
- pt box shadow:
- left: 271
- top: 335
- width: 81
- height: 42
- z index: 1
- visible: { card.pt != "" }
- render style: image
- image: ptbox_shadow.png
- pt box 2:
- left: 271
- top: 382
- width: 81
- height: 42
- z index: 2
- mask: ptmask.png
- visible: { card.pt_2 != "" }
- render style: image
- image: {combine_blend(image1: leveler_ptbox2(), image2: "ptbox_multiply_1.png", combine: "multiply")}
- pt box shadow 2:
- left: 271
- top: 382
- width: 81
- height: 42
- z index: 1
- visible: { card.pt_2 != "" }
- render style: image
- image: ptbox_shadow.png
- pt box 3:
- left: 271
- top: 429
- width: 81
- height: 42
- z index: 2
- mask: ptmask.png
- visible: { card.pt_3 != "" }
- render style: image
- image: {combine_blend(image1: leveler_ptbox3(), image2: "ptbox_multiply_2.png", combine: "multiply")}
- pt box shadow 3:
- left: 271
- top: 429
- width: 81
- height: 42
- z index: 1
- visible: { card.pt_3 != "" }
- render style: image
- image: ptbox_shadow.png
- foil layer:
- left: 0
- top: 0
- width: 375
- height: 523
- z index: 4
- render style: image
- image: {if styling.overlay == "" then nil else styling.overlay + "/overlay.png"}
- lvlup texture 1:
- left: 0
- top: 0
- width: 375
- height: 523
- z index: 2
- render style: image
- image: lvlup_texture_1.png
- visible: {card.level_1 != ""}
- lvlup texture 2:
- left: 0
- top: 0
- width: 375
- height: 523
- z index: 2
- render style: image
- image: lvlup_texture_2.png
- visible: {card.level_2 != ""}
- lvlup multiply 1:
- left: 0
- top: 0
- width: 375
- height: 523
- z index: 1
- render style: image
- image: {set_combine(input: "lvlup_multiply_1.png", combine: "multiply")}
- visible: {card.level_1 != ""}
- lvlup multiply 1:
- left: 0
- top: 0
- width: 375
- height: 523
- z index: 1
- render style: image
- image: {set_combine(input: "lvlup_multiply_2.png", combine: "multiply")}
- visible: {card.level_2 != ""}
- lvl label 1:
- left: 50
- top: 386
- width: 10
- height: 10
- z index: 3
- alignment: middle center
- font:
- name: MPlantin
- size: 5.5
- color: black
- shadow color: white
- shadow blur: 2
- visible: {card.level_1 != ""}
- lvl label 1 copy 1:
- left: 50
- top: 386
- width: 10
- height: 10
- z index: 3
- alignment: middle center
- font:
- name: MPlantin
- size: 5.5
- color: black
- shadow color: white
- shadow blur: 2
- visible: {card.level_1 != ""}
- lvl label 2:
- left: 50
- top: 433
- width: 10
- height: 10
- z index: 3
- alignment: middle center
- font:
- name: MPlantin
- size: 5.5
- color: black
- shadow color: white
- shadow blur: 2
- visible: {card.level_2 != ""}
- lvl label 2 copy 1:
- left: 50
- top: 433
- width: 10
- height: 10
- z index: 3
- alignment: middle center
- font:
- name: MPlantin
- size: 5.5
- color: black
- shadow color: white
- shadow blur: 2
- visible: {card.level_2 != ""}
- level 1 copy 1:
- z index: 3
- left: 38
- top: 393
- width: 34
- height: 22
- alignment: center middle shrink-overflow
- font:
- name: ModMatrix
- size: 17
- weight: bold
- color: black
- shadow color: white
- shadow blur: 2
- level 2 copy 1:
- z index: 3
- left: 38
- top: 440
- width: 34
- height: 22
- alignment: center middle shrink-overflow
- font:
- name: ModMatrix
- size: 17
- weight: bold
- color: black
- shadow color: white
- shadow blur: 2
- forwarded rule text 2:
- left: {if card.level_1 != "" then 93 else 31}
- top: 375
- right: {if card.pt_2 != "" then 277 else 342}
- height: 47
- font:
- name: MPlantin
- italic name: MPlantin-Italic
- size: 14
- scale down to: 6
- color: black
- symbol font:
- name: { styling.text_box_mana_symbols }
- size: 14
- alignment:
- script:
- if (styling.center_text == "short text only" and
- not contains(match:"\n", card.rule_text) and
- card.flavor_text == "" and
- card_style.text.content_lines <= 2) or
- styling.center_text == "always"
- then "middle center"
- else "middle left"
- z index: 2
- padding left: 6
- padding right: 4
- line height hard: 1.2
- line height line: 1.5
- line height soft: 0.9
- line height hard max: 1.3
- line height line max: 1.6
- rule text 3 with flavor:
- left: {if card.level_2 != "" then 93 else 31}
- top: 422
- right: {if card.pt_3 != "" then 277 else 342}
- height: 47
- font:
- name: MPlantin
- italic name: MPlantin-Italic
- size: 14
- scale down to: 6
- color: black
- symbol font:
- name: { styling.text_box_mana_symbols }
- size: 14
- alignment:
- script:
- if (styling.center_text == "short text only" and
- not contains(match:"\n", card.rule_text) and
- card.flavor_text == "" and
- card_style.text.content_lines <= 2) or
- styling.center_text == "always"
- then "middle center"
- else "middle left"
- z index: 2
- padding left: 6
- padding right: 4
- line height hard: 1.2
- line height line: 1.5
- line height soft: 0.9
- line height hard max: 1.3
- line height line max: 1.6
+mse version: 0.3.8
+game: magic
+short name: Leveler
+full name: Post 8th Leveler Style
+icon: card-sample.png
+position hint: 006
+installer group: magic/new style/leveler cards
+
+version: 2010-04-06
+depends on:
+ package: magic.mse-game
+ version: 2010-04-06
+depends on:
+ package: magic-default-image.mse-include
+ version: 2007-09-23
+depends on:
+ package: magic-watermarks.mse-include
+ version: 2007-09-23
+depends on:
+ package: magic-mana-large.mse-symbol-font
+ version: 2007-09-23
+depends on:
+ package: magic-mana-small.mse-symbol-font
+ version: 2007-09-23
+
+card width: 375
+card height: 523
+card dpi: 150
+############################################################## Extra scripts
+init script:
+ # Load scripts for image box
+ include file: /magic-default-image.mse-include/scripts
+
+ # Should hybrids have a grey name?
+ mask_hybrid_with_land := { styling.grey_hybrid_name }
+
+ #Should multicolor lands with basic land types have a colored name?
+ mask_multi_land_with_color := { styling.colored_multicolor_land_name }
+
+ # Which artifact template should be used? Which multicolor template should be used?
+ alternate_template := {
+ if input == "a" then (
+ if styling.artifact_style == "light" then "oa"
+ else if styling.artifact_style == "brown" then "ba"
+ else "a"
+ ) else if input == "m" then (
+ if styling.saturated_multicolor then "m"
+ else "om"
+ ) else input
+ }
+ template := { alternate_template() + "{type}.jpg" }
+ land_template := { (if input == "a" then "c" else alternate_template()) + "l{type}.jpg" }
+ # Use land templates for previews because they show more contrast
+ hybrid_previews := "land,hybrid"
+
+ # Use the normal tap symbol
+ mana_t := {
+ if styling.tap_symbol == "old" then "old"
+ else if styling.tap_symbol == "diagonal T" then "older"
+ else "new"
+ }
+
+ # Use guild mana symbols?
+ guild_mana := { styling.use_guild_mana_symbols }
+
+ # Declare the card shape.
+ card_shape := { "leveler" }
+
+ # Replacing the text_filter() from game file because all three rule text fields should call card.name
+ card_name_replace :=
+ replace@(
+ match: "CARDNAME"
+ replace: "" + (if card.name=="" then "CARDNAME" else card.name) + "")
+
+############################################################## Set info fields
+set info style:
+ symbol:
+ variation:
+ name: invertedcommon
+ border radius: 0.10
+ fill type: solid
+ fill color: rgb(255,255,255)
+ border color: rgb(0,0,0)
+############################################################## Extra style options
+styling field:
+ type: choice
+ name: artifact style
+ description: Choose the style of artifacts: light = before Fifth Dawn, dark = used since Fifth Dawn, brown = old rust style.
+ initial: dark
+ choice: light
+ choice: dark
+ choice: brown
+styling field:
+ type: boolean
+ name: saturated multicolor
+ description: Should multicolor cards be more saturated? This is done on real cards.
+ initial: yes
+styling field:
+ type: boolean
+ name: grey hybrid name
+ description: Use a grey background for the name and type line on hybrid cards. This is done on real cards.
+styling field:
+ type: boolean
+ name: colored multicolor land name
+ description: Use a colored background for the name and type on multicolor land cards with a basic land type. This is done on real cards.
+styling field:
+ type: boolean
+ name: use guild mana symbols
+ description: Use the Ravnica guild symbols instead of the official half/half circles for hybrid mana.
+ initial: no
+styling field:
+ type: choice
+ name: tap symbol
+ description: What tap and untap symbols should be used on cards?
+ initial: modern
+ choice: modern
+ choice: old
+ choice: diagonal T
+styling field:
+ type: package choice
+ name: text box mana symbols
+ match: magic-mana-*.mse-symbol-font
+ initial: magic-mana-small.mse-symbol-font
+styling field:
+ type: choice
+ name: center text
+ description: When to center text (short text only means only on one-line cards with no flavor text)
+ choice: always
+ choice: short text only
+ choice: never
+ initial: never
+styling field:
+ type: boolean
+ name: inverted common symbol
+ description: Should the common rarity symbol be inverted, like in Coldsnap?
+ initial: no
+styling field:
+ type: package choice
+ name: overlay
+ description: Should there be an overlay applied, such as foil?
+ match: magic-overlay-*.mse-include
+ required: false
+styling field:
+ type: choice
+ name: image size
+ description: Should the art extend into a transparent textbox?
+ initial: standard
+ choice: standard
+ choice: extended
+styling style:
+ artifact style:
+ render style: both
+ choice images:
+ light: oacard.jpg
+ dark: acard.jpg
+ brown: bacard.jpg
+ saturated multicolor:
+ choice images:
+ yes: mcard.jpg
+ no: omcard.jpg
+ use guild mana symbols:
+ choice images:
+ yes: /magic-mana-small.mse-symbol-font/mana_guild_rg.png
+ no: /magic-mana-small.mse-symbol-font/mana_rg.png
+ tap symbol:
+ render style: both
+ choice images:
+ modern: /magic-mana-large.mse-symbol-font/mana_t.png
+ old: /magic-mana-large.mse-symbol-font/mana_t_old.png
+ diagonal T: /magic-mana-large.mse-symbol-font/mana_t_older.png
+ center text:
+ render style: both
+ choice images:
+ always: /magic.mse-game/icons/center-all-text.png
+ short text only: /magic.mse-game/icons/center-short-text.png
+ never: /magic.mse-game/icons/center-no-text.png
+ inverted common symbol:
+ choice images:
+ no: { symbol_variation(symbol: set.symbol, variation: "common") }
+ yes: { symbol_variation(symbol: set.symbol, variation: "invertedcommon") }
+ image size:
+ render style: both
+ choice images:
+ standard: /magic.mse-game/icons/small-image.png
+ extended: /magic.mse-game/icons/large-image.png
+############################################################## Card fields
+card style:
+ ############################# Background stuff
+ border color:
+ left: 0
+ top : 0
+ width: 375
+ height: 523
+ radius: 18
+ left width: 17
+ right width: 17
+ top width: 17
+ bottom width: 18
+ z index: 5
+ card color:
+ left: 0
+ top: 0
+ width: 375
+ height: 523
+ z index: 0
+ render style: image
+ popup style: in place
+ image: { card_background() }
+ ############################# Name line
+ name:
+ left: { if card.card_symbol=="none" then 32 else 51 }
+ top : 30
+ right: { 341 - card_style.casting_cost.content_width }
+ height: 23
+ alignment: bottom shrink-overflow
+ padding bottom: 0
+ z index: 1
+ font:
+ name: Matrix
+ size: 17
+ weight: bold
+ color: black
+ casting cost:
+ right: 343
+ top : 31
+ width: { max(30, card_style.casting_cost.content_width) + 5 }
+ height: 23
+ alignment: middle right
+ font:
+ name: MPlantin
+ size: 15
+ symbol font:
+ name: magic-mana-large
+ size: 15
+ alignment: middle right
+ always symbol: true
+ z index: 2
+ padding top: 0
+ card symbol:
+ left: {if card.card_symbol=="none" then 20 else 32}
+ top : 31
+ height: 20
+ width: 14
+ z index: 1
+ render style: image
+ choice images:
+ tombstone: tombstone.png
+ ############################# Image
+ image:
+ left: 32
+ top: 62
+ width: 311
+ height: { if styling.image_size == "extended" then 408 else 228 }
+ z index: 1
+ mask:
+ script: if styling.image_size == "extended" then "imagemask_extended.png" else "imagemask_standard.png"
+ default: {default_image(card.card_color)}
+ ############################# Card type
+ type:
+ left: 35
+ top : 298
+ width: { 308 - max(22,card_style.rarity.content_width) }
+ height: 20
+ alignment: top shrink-overflow
+ z index: 1
+ padding top: 2
+ font:
+ name: Matrix
+ size: 14
+ color: black
+ separator color: rgb(128,128,128)
+ rarity:
+ right: 342
+ top : 297
+ width: 44
+ height: 22
+ z index: 2
+ render style: image
+ alignment: middle right
+ choice images:
+ # Images based on the set symbol
+ basic land:
+ script:
+ if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
+ else symbol_variation(symbol: set.symbol, variation: "common")
+ common:
+ script:
+ if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
+ else symbol_variation(symbol: set.symbol, variation: "common")
+ uncommon: script: symbol_variation(symbol: set.symbol, variation: "uncommon")
+ rare: script: symbol_variation(symbol: set.symbol, variation: "rare")
+ mythic rare: script: symbol_variation(symbol: set.symbol, variation: "mythic rare")
+ special: script: symbol_variation(symbol: set.symbol, variation: "special")
+ ############################# Text box
+ ############### rule text 2 and 3 are in extra card fields
+ rule text:
+ left: 31
+ top: 328
+ right: {if card.pt != "" then 277 else 342}
+ height: 47
+ font:
+ name: MPlantin
+ italic name: MPlantin-Italic
+ size: 14
+ scale down to: 6
+ color: black
+ symbol font:
+ name: { styling.text_box_mana_symbols }
+ size: 14
+ alignment:
+ script:
+ if (styling.center_text == "short text only" and
+ not contains(match:"\n", card.rule_text) and
+ card.flavor_text == "" and
+ card_style.text.content_lines <= 2) or
+ styling.center_text == "always"
+ then "middle center"
+ else "middle left"
+ z index: 2
+ padding left: 6
+ padding right: 4
+ line height hard: 1.2
+ line height line: 1.5
+ line height soft: 0.9
+ line height hard max: 1.3
+ line height line max: 1.6
+ watermark:
+ left: 117
+ top : 321
+ width: 138
+ height: 156
+ z index: 1
+ render style: image
+ alignment: middle center
+ include file: /magic-watermarks.mse-include/watermarks
+ ############################# Levels
+ level 1:
+ z index: 3
+ left: 38
+ top: 393
+ width: 34
+ height: 22
+ alignment: center middle shrink-overflow
+ font:
+ name: ModMatrix
+ size: 17
+ weight: bold
+ color: black
+ shadow color: white
+ shadow blur: 2
+ level 2:
+ z index: 3
+ left: 38
+ top: 440
+ width: 34
+ height: 22
+ alignment: center middle shrink-overflow
+ font:
+ name: ModMatrix
+ size: 17
+ weight: bold
+ color: black
+ shadow color: white
+ shadow blur: 2
+ ############################# PT
+ pt:
+ z index: 3
+ left: 284
+ top: 340
+ width: 60
+ height: 28
+ alignment: center middle shrink-overflow
+ font:
+ name: ModMatrix
+ size: 17
+ weight: bold
+ color: black
+ separator color: rgb(200,0,0)
+ pt 2:
+ z index: 3
+ left: 284
+ top: 387
+ width: 60
+ height: 28
+ alignment: center middle shrink-overflow
+ font:
+ name: ModMatrix
+ size: 17
+ weight: bold
+ color: black
+ separator color: rgb(200,0,0)
+ pt 3:
+ z index: 3
+ left: 284
+ top: 434
+ width: 60
+ height: 28
+ alignment: center middle shrink-overflow
+ font:
+ name: ModMatrix
+ size: 17
+ weight: bold
+ color: black
+ separator color: rgb(200,0,0)
+ ############################# Card sorting / numbering
+ ############################# Copyright stuff
+ illustrator:
+ left: 56
+ top : 478
+ width: 217
+ height: 16
+ z index: 1
+ font:
+ name: Matrix
+ size: 10
+ weight: bold
+ color: { font_color(card.card_color) }
+ copyright line:
+ left: 30
+ top : 493
+ width: 247
+ height: 12
+ z index: 1
+ font:
+ name: MPlantin
+ size: 6.5
+ color: { font_color(card.card_color) }
+############################################################## Extra card fields
+extra card field:
+ type: choice
+ name: pt box
+ script: card.card_color
+ editable: false
+ save value: false
+# Add a shadow because the shadow is masked away.
+extra card field:
+ type: choice
+ name: pt box shadow
+ choice: shadow
+ editable: false
+ save value: false
+extra card field:
+ type: choice
+ name: pt box 2
+ script: card.card_color
+ editable: false
+ save value: false
+# Add a shadow because the shadow is masked away.
+extra card field:
+ type: choice
+ name: pt box shadow 2
+ choice: shadow
+ editable: false
+ save value: false
+extra card field:
+ type: choice
+ name: pt box 3
+ script: card.card_color
+ editable: false
+ save value: false
+# Add a shadow because the shadow is masked away.
+extra card field:
+ type: choice
+ name: pt box shadow 3
+ choice: shadow
+ editable: false
+ save value: false
+extra card field:
+ type: choice
+ name: foil layer
+ choice: foil
+ save value: false
+ editable: false
+# Add the bevel and shadows for the levelup arrow.
+extra card field:
+ type: choice
+ name: lvlup texture 1
+ choice: image
+ save value: false
+ editable: false
+# Add the bevel and shadows for the levelup arrow.
+extra card field:
+ type: choice
+ name: lvlup texture 2
+ choice: image
+ save value: false
+ editable: false
+# This field gets set to combine mode multiply, to slightly darken first arrow.
+extra card field:
+ type: choice
+ name: lvlup multiply 1
+ choice: image
+ save value: false
+ editable: false
+# This field gets set to combine mode multiply, to darken second arrow by more.
+extra card field:
+ type: choice
+ name: lvlup multiply 2
+ choice: image
+ save value: false
+ editable: false
+# Add the word "LEVEL" to the first arrow.
+extra card field:
+ type: text
+ name: lvl label 1
+ editable: false
+ save value: false
+ script: "LEVEL"
+# Repeat the word "LEVEL" with more shadow to give illusion of outline.
+extra card field:
+ type: text
+ name: lvl label 1 copy 1
+ editable: false
+ save value: false
+ script: "LEVEL"
+# Add the word "LEVEL" to the second arrow.
+extra card field:
+ type: text
+ name: lvl label 2
+ editable: false
+ save value: false
+ script: "LEVEL"
+# Repeat the word "LEVEL" with more shadow to give illusion of outline.
+extra card field:
+ type: text
+ name: lvl label 2 copy 1
+ editable: false
+ save value: false
+ script: "LEVEL"
+# Repeat the first level with more shadow to give illusion of outline.
+extra card field:
+ type: text
+ name: level 1 copy 1
+ editable: false
+ save value: false
+ script: card.level_1
+# Repeat the second level with more shadow to give illusion of outline.
+extra card field:
+ type: text
+ name: level 2 copy 1
+ editable: false
+ save value: false
+ script: card.level_2
+# Forward the second rule text so we can intercept and replace card.name_2 with card.name.
+extra card field:
+ type: text
+ name: forwarded rule text 2
+ multi line: true
+ save value: false
+ script: card_name_replace(forward_editor(field: card.rule_text_2))
+ description: The second rules text box
+# Combine rule text 2 and flavor text to allow flavor on levelers.
+extra card field:
+ type: text
+ name: rule text 3 with flavor
+ multi line: true
+ save value: false
+ script:
+ combined_editor(field1: card.rule_text_3, separator: "\n", field2: card.flavor_text)
+ description: The third rules text box and flavor text for the card; use up and down arrows to switch
+extra card style:
+ pt box:
+ left: 271
+ top: 335
+ width: 81
+ height: 42
+ z index: 2
+ mask: ptmask.png
+ visible: { card.pt != "" }
+ render style: image
+ image: { leveler_ptbox() }
+ pt box shadow:
+ left: 271
+ top: 335
+ width: 81
+ height: 42
+ z index: 1
+ visible: { card.pt != "" }
+ render style: image
+ image: ptbox_shadow.png
+ pt box 2:
+ left: 271
+ top: 382
+ width: 81
+ height: 42
+ z index: 2
+ mask: ptmask.png
+ visible: { card.pt_2 != "" }
+ render style: image
+ image: {combine_blend(image1: leveler_ptbox2(), image2: "ptbox_multiply_1.png", combine: "multiply")}
+ pt box shadow 2:
+ left: 271
+ top: 382
+ width: 81
+ height: 42
+ z index: 1
+ visible: { card.pt_2 != "" }
+ render style: image
+ image: ptbox_shadow.png
+ pt box 3:
+ left: 271
+ top: 429
+ width: 81
+ height: 42
+ z index: 2
+ mask: ptmask.png
+ visible: { card.pt_3 != "" }
+ render style: image
+ image: {combine_blend(image1: leveler_ptbox3(), image2: "ptbox_multiply_2.png", combine: "multiply")}
+ pt box shadow 3:
+ left: 271
+ top: 429
+ width: 81
+ height: 42
+ z index: 1
+ visible: { card.pt_3 != "" }
+ render style: image
+ image: ptbox_shadow.png
+ foil layer:
+ left: 0
+ top: 0
+ width: 375
+ height: 523
+ z index: 4
+ render style: image
+ image: {if styling.overlay == "" then nil else styling.overlay + "/overlay.png"}
+ lvlup texture 1:
+ left: 0
+ top: 0
+ width: 375
+ height: 523
+ z index: 2
+ render style: image
+ image: lvlup_texture_1.png
+ visible: {card.level_1 != ""}
+ lvlup texture 2:
+ left: 0
+ top: 0
+ width: 375
+ height: 523
+ z index: 2
+ render style: image
+ image: lvlup_texture_2.png
+ visible: {card.level_2 != ""}
+ lvlup multiply 1:
+ left: 0
+ top: 0
+ width: 375
+ height: 523
+ z index: 1
+ render style: image
+ image: {set_combine(input: "lvlup_multiply_1.png", combine: "multiply")}
+ visible: {card.level_1 != ""}
+ lvlup multiply 1:
+ left: 0
+ top: 0
+ width: 375
+ height: 523
+ z index: 1
+ render style: image
+ image: {set_combine(input: "lvlup_multiply_2.png", combine: "multiply")}
+ visible: {card.level_2 != ""}
+ lvl label 1:
+ left: 50
+ top: 386
+ width: 10
+ height: 10
+ z index: 3
+ alignment: middle center
+ font:
+ name: MPlantin
+ size: 5.5
+ color: black
+ shadow color: white
+ shadow blur: 2
+ visible: {card.level_1 != ""}
+ lvl label 1 copy 1:
+ left: 50
+ top: 386
+ width: 10
+ height: 10
+ z index: 3
+ alignment: middle center
+ font:
+ name: MPlantin
+ size: 5.5
+ color: black
+ shadow color: white
+ shadow blur: 2
+ visible: {card.level_1 != ""}
+ lvl label 2:
+ left: 50
+ top: 433
+ width: 10
+ height: 10
+ z index: 3
+ alignment: middle center
+ font:
+ name: MPlantin
+ size: 5.5
+ color: black
+ shadow color: white
+ shadow blur: 2
+ visible: {card.level_2 != ""}
+ lvl label 2 copy 1:
+ left: 50
+ top: 433
+ width: 10
+ height: 10
+ z index: 3
+ alignment: middle center
+ font:
+ name: MPlantin
+ size: 5.5
+ color: black
+ shadow color: white
+ shadow blur: 2
+ visible: {card.level_2 != ""}
+ level 1 copy 1:
+ z index: 3
+ left: 38
+ top: 393
+ width: 34
+ height: 22
+ alignment: center middle shrink-overflow
+ font:
+ name: ModMatrix
+ size: 17
+ weight: bold
+ color: black
+ shadow color: white
+ shadow blur: 2
+ level 2 copy 1:
+ z index: 3
+ left: 38
+ top: 440
+ width: 34
+ height: 22
+ alignment: center middle shrink-overflow
+ font:
+ name: ModMatrix
+ size: 17
+ weight: bold
+ color: black
+ shadow color: white
+ shadow blur: 2
+ forwarded rule text 2:
+ left: {if card.level_1 != "" then 93 else 31}
+ top: 375
+ right: {if card.pt_2 != "" then 277 else 342}
+ height: 47
+ font:
+ name: MPlantin
+ italic name: MPlantin-Italic
+ size: 14
+ scale down to: 6
+ color: black
+ symbol font:
+ name: { styling.text_box_mana_symbols }
+ size: 14
+ alignment:
+ script:
+ if (styling.center_text == "short text only" and
+ not contains(match:"\n", card.rule_text) and
+ card.flavor_text == "" and
+ card_style.text.content_lines <= 2) or
+ styling.center_text == "always"
+ then "middle center"
+ else "middle left"
+ z index: 2
+ padding left: 6
+ padding right: 4
+ line height hard: 1.2
+ line height line: 1.5
+ line height soft: 0.9
+ line height hard max: 1.3
+ line height line max: 1.6
+ rule text 3 with flavor:
+ left: {if card.level_2 != "" then 93 else 31}
+ top: 422
+ right: {if card.pt_3 != "" then 277 else 342}
+ height: 47
+ font:
+ name: MPlantin
+ italic name: MPlantin-Italic
+ size: 14
+ scale down to: 6
+ color: black
+ symbol font:
+ name: { styling.text_box_mana_symbols }
+ size: 14
+ alignment:
+ script:
+ if (styling.center_text == "short text only" and
+ not contains(match:"\n", card.rule_text) and
+ card.flavor_text == "" and
+ card_style.text.content_lines <= 2) or
+ styling.center_text == "always"
+ then "middle center"
+ else "middle left"
+ z index: 2
+ padding left: 6
+ padding right: 4
+ line height hard: 1.2
+ line height line: 1.5
+ line height soft: 0.9
+ line height hard max: 1.3
+ line height line max: 1.6
diff --git a/data/magic-new-planeswalker-4abil.mse-style/style b/data/magic-new-planeswalker-4abil.mse-style/style
index 2c3aca2d..43af4322 100644
--- a/data/magic-new-planeswalker-4abil.mse-style/style
+++ b/data/magic-new-planeswalker-4abil.mse-style/style
@@ -1,563 +1,563 @@
-mse version: 0.3.8
-game: magic
-short name: 4 'Walkers
-full name: Modern Planeswalkers (Four Abilities)
-installer group: magic/new style/planeswalkers/four abilities
-icon: card-sample.png
-position hint: 008
-
-version: 2009-12-18
-depends on:
- package: magic.mse-game
- version: 2009-07-23
-depends on:
- package: magic-future-common.mse-include
- version: 2007-09-23
-depends on:
- package: magic-watermarks.mse-include
- version: 2007-09-23
-depends on:
- package: magic-mana-large.mse-symbol-font
- version: 2007-09-23
-depends on:
- package: magic-mana-small.mse-symbol-font
- version: 2007-09-23
-
-card width: 375
-card height: 523
-card dpi: 150
-#By Pichoro
-#Images by Artfreakwiu, Buttock1234, Monkeychewtoy, and Twanvl
-############################################################## Extra scripts
-init script:
- # Should hybrids have a grey name?
- mask_hybrid_with_land := { styling.grey_hybrid_name }
-
- # Which artifact template should be used?
- land_template := { "c{type}.jpg" }
- # Use land templates for previews because they show more contrast
- hybrid_previews := "hybrid"
-
- # Use the normal tap symbol
- mana_t := {
- if styling.tap_symbol == "old" then "old"
- else if styling.tap_symbol == "diagonal T" then "older"
- else "new"
- }
-
- # Use guild mana symbols?
- guild_mana := { styling.use_guild_mana_symbols }
-
- paintbrush_color := {
- if to_int(card.border_color) < 96 then "white" else "black"
- }
-
- # Loyalty cost arrows
- loyalty_image := {
- if contains(input, match: "+") then "loyalty up"
- else if contains(input, match: "-") then "loyalty down"
- else "loyalty naught"
- }
-
- card_shape := { "planeswalker" }
-############################################################## Set info fields
-set info style:
- symbol:
- variation:
- name: invertedcommon
- border radius: 0.10
- fill type: solid
- fill color: rgb(255,255,255)
- border color: rgb(0,0,0)
-############################################################## Extra style options
-styling field:
- type: boolean
- name: grey hybrid name
- description: Use a grey background for the name and type line on hybrid cards. This is done on real cards.
-styling field:
- type: boolean
- name: use guild mana symbols
- description: Use the Ravnica guild symbols instead of the official half/half circles for hybrid mana.
- initial: no
-styling field:
- type: package choice
- name: text box mana symbols
- match: magic-mana-*.mse-symbol-font
- initial: magic-mana-small.mse-symbol-font
-styling field:
- type: choice
- name: tap symbol
- description: What tap and untap symbols should be used on cards?
- initial: modern
- choice: modern
- choice: old
- choice: diagonal T
-styling field:
- type: choice
- name: center text
- description: When to center text (short text only means only on one-line cards with no flavor text)
- choice: always
- choice: short text only
- choice: never
- initial: never
-styling field:
- type: boolean
- name: inverted common symbol
- description: Should the common rarity symbol be inverted, like in Coldsnap?
- initial: no
-styling field:
- type: package choice
- name: overlay
- description: Should there be an overlay applied, such as foil?
- match: magic-overlay-*.mse-include
- required: false
-styling style:
- use guild mana symbols:
- choice images:
- yes: /magic-mana-small.mse-symbol-font/mana_guild_rg.png
- no: /magic-mana-small.mse-symbol-font/mana_rg.png
- tap symbol:
- render style: both
- choice images:
- modern: /magic-mana-large.mse-symbol-font/mana_t.png
- old: /magic-mana-large.mse-symbol-font/mana_t_old.png
- diagonal T: /magic-mana-large.mse-symbol-font/mana_t_older.png
- center text:
- render style: both
- choice images:
- always: /magic.mse-game/icons/center-all-text.png
- short text only: /magic.mse-game/icons/center-short-text.png
- never: /magic.mse-game/icons/center-no-text.png
- inverted common symbol:
- choice images:
- no: { symbol_variation(symbol: set.symbol, variation: "common") }
- yes: { symbol_variation(symbol: set.symbol, variation: "invertedcommon") }
-############################################################## Card fields
-card style:
- ############################# Background stuff
- border color:
- left: 0
- top : 0
- width: 375
- height: 523
- radius: 18
- left width: 17
- right width: 17
- top width: 17
- bottom width: 18
- mask: border_mask.png
- z index: 5
- card color:
- left: 0
- top: 0
- width: 375
- height: 523
- z index: 0
- render style: image
- popup style: in place
- image: { card_background() }
- ############################# Name line
- name:
- left: { if card.card_symbol=="none" then 32 else 51 }
- top : 22
- right: { 339 - card_style.casting_cost.content_width }
- height: 23
- alignment: bottom shrink-overflow
- padding bottom: 0
- z index: 1
- font:
- name: Matrix
- size: 17
- weight: bold
- color: rgb(0,0,0)
- casting cost:
- right: 345
- top : 24
- width: { max(30, card_style.casting_cost.content_width) + 5 }
- height: 23
- alignment: middle right
- symbol font:
- name: magic-mana-large
- size: 15
- alignment: middle right
- always symbol: true
- z index: 2
- padding top: 0
- card symbol:
- left: {if card.card_symbol=="none" then 20 else 32}
- top : 25
- height: 20
- width: 14
- z index: 1
- render style: image
- choice images:
- tombstone: tombstone.png
- ############################# Image
- image:
- left: 28
- top: 54
- width: 317
- height: 426
- z index: 1
- mask: image_mask.png
- ############################# Card type
- type:
- left: 36
- top : 261
- width: { 304 - max(22,card_style.rarity.content_width) }
- height: 20
- alignment: top shrink-overflow
- z index: 2
- padding top: 2
- font:
- name: Matrix
- size: 14
- color: rgb(0,0,0)
- separator color: rgb(128,128,128)
- rarity:
- right: 342
- top : 262
- width: 42
- height: 21
- z index: 2
- render style: image
- alignment: middle right
- choice images:
- # Images based on the set symbol
- basic land:
- script:
- if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
- else symbol_variation(symbol: set.symbol, variation: "common")
- common:
- script:
- if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
- else symbol_variation(symbol: set.symbol, variation: "common")
- uncommon: script: symbol_variation(symbol: set.symbol, variation: "uncommon")
- rare: script: symbol_variation(symbol: set.symbol, variation: "rare")
- mythic rare: script: symbol_variation(symbol: set.symbol, variation: "mythic rare")
- special: script: symbol_variation(symbol: set.symbol, variation: "special")
- ############################# Text box
- text:
- left: 66
- top : 290
- width: 276
- height: 186
- font:
- name: MPlantin
- italic name: MPlantin-Italic
- size: 14
- scale down to: 6
- color: rgb(0,0,0)
- symbol font:
- name: { styling.text_box_mana_symbols }
- size: 14
- paragraph height: 48
- alignment:
- script:
- if (styling.center_text == "short text only" and
- not contains(match:"\n", card.rule_text) and
- card.flavor_text == "" and
- card_style.text.content_lines <= 2) or
- styling.center_text == "always"
- then "middle center"
- else "middle left"
- z index: 3
- mask: text_mask.png
- padding left: 6
- padding right: 4
- padding bottom: 2
- line height hard: 1.2
- line height line: 1.5
- line height soft: 0.9
- line height hard max: 1.3
- line height line max: 1.6
- watermark:
- left: 94
- top : 285
- width: 184
- height: 196
- z index: 2
- render style: image
- alignment: middle center
- include file: /magic-watermarks.mse-include/watermarks
- ############################# Loyalty
- loyalty:
- z index: 7
- left: 326
- top: 467
- width: 13.16
- height: 34.63
- alignment: center middle
- font:
- name: MatrixBoldSmallCaps
- size: 16
- weight: bold
- color: rgb(255,255,255)
- loyalty cost 1:
- z index: 7
- left: 32
- top: 294
- width: 13.16
- height: 34.63
- alignment: center middle
- font:
- name: Mplantin
- size: 12
- weight: bold
- color: rgb(255,255,255)
- loyalty cost 2:
- z index: 7
- left: 32
- top: 342
- width: 13.16
- height: 34.63
- alignment: center middle
- font:
- name: Mplantin
- size: 12
- weight: bold
- color: rgb(255,255,255)
- loyalty cost 3:
- z index: 7
- left: 32
- top: 390
- width: 13.16
- height: 34.63
- alignment: center middle
- font:
- name: Mplantin
- size: 12
- weight: bold
- color: rgb(255,255,255)
- loyalty cost 4:
- z index: 7
- left: 32
- top: 438
- width: 13.16
- height: 34.63
- alignment: center middle
- font:
- name: Mplantin
- size: 12
- weight: bold
- color: rgb(255,255,255)
- ############################# Card sorting / numbering
- ############################# Copyright stuff
- illustrator:
- left: 63
- bottom : 500
- width: 287
- height: 16
- z index: 6
- alignment: middle center
- font:
- name: Matrix
- size: 10
- weight: bold
- color: { paintbrush_color() }
- copyright line:
- left: 43
- top : 497
- width: 287
- height: 12
- z index: 6
- alignment: middle center
- font:
- name: MPlantin
- size: 7
- color: { paintbrush_color() }
-############################################################## Extra card fields
-extra card field:
- type: choice
- name: loyalty box
- editable: false
- choice: loyalty
- save value: false
-extra card field:
- type: choice
- name: foil layer
- choice: foil
- save value: false
- editable: false
-extra card field:
- type: choice
- name: loyalty cost box 1
- editable: false
- script: loyalty_image(card.loyalty_cost_1)
- save value: false
-extra card field:
- type: choice
- name: loyalty cost box 2
- editable: false
- script: loyalty_image(card.loyalty_cost_2)
- save value: false
-extra card field:
- type: choice
- name: loyalty cost box 3
- editable: false
- script: loyalty_image(card.loyalty_cost_3)
- save value: false
-extra card field:
- type: choice
- name: loyalty cost box 4
- editable: false
- script: loyalty_image(card.loyalty_cost_4)
- save value: false
-extra card field:
- type: choice
- name: paintbrush
- script: paintbrush_color(value)
- editable: false
- save value: false
-extra card field:
- type: text
- name: colon 1
- editable: false
- script: ":"
- save value: false
-extra card field:
- type: text
- name: colon 2
- editable: false
- script: ":"
- save value: false
-extra card field:
- type: text
- name: colon 3
- editable: false
- script: ":"
- save value: false
-extra card field:
- type: text
- name: colon 4
- editable: false
- script: ":"
-extra card style:
- paintbrush:
- right: { 206 + card_style.illustrator.content_width * -0.5 }
- top : 486
- width: 30
- height: 12
- z index: 6
- render style: image
- choice images:
- black: /magic-future-common.mse-include/paintbrush_black.png
- white: /magic-future-common.mse-include/paintbrush_white.png
- loyalty box:
- right: 362
- top: 465
- width: 60
- height: 38
- z index: 6
- render style: image
- visible: { card.loyalty !="" }
- choice images:
- loyalty: loyalty.png
- foil layer:
- left: 0
- top : 0
- width: 375
- height: 523
- z index: 4
- render style: image
- image: {if styling.overlay == "" then nil else styling.overlay + "/overlay.png"}
- loyalty cost box 1:
- left: 18
- top: 292
- width: 42
- height: 40
- z index: 6
- render style: image
- visible: { card.loyalty_cost_1 !="" }
- choice images:
- loyalty up: loyaltyup.png
- loyalty down: loyaltydown.png
- loyalty naught: loyaltynaught.png
- loyalty cost box 2:
- left: 18
- top: 340
- width: 42
- height: 40
- z index: 6
- render style: image
- visible: { card.loyalty_cost_2 !="" }
- choice images:
- loyalty up: loyaltyup.png
- loyalty down: loyaltydown.png
- loyalty naught: loyaltynaught.png
- loyalty cost box 3:
- left: 18
- top: 388
- width: 42
- height: 40
- z index: 6
- render style: image
- visible: { card.loyalty_cost_3 !="" }
- choice images:
- loyalty up: loyaltyup.png
- loyalty down: loyaltydown.png
- loyalty naught: loyaltynaught.png
- loyalty cost box 4:
- left: 18
- top: 436
- width: 42
- height: 40
- z index: 6
- render style: image
- visible: { card.loyalty_cost_4 !="" }
- choice images:
- loyalty up: loyaltyup.png
- loyalty down: loyaltydown.png
- loyalty naught: loyaltynaught.png
- colon 1:
- left: 59
- top: 306
- width: 5
- height: 10
- z index: 6
- font:
- name: MPlantin
- size: 15
- scale down to: 15
- color: rgb(0,0,0)
- alignment: middle center
- visible: { card.loyalty_cost_1 !="" }
- colon 2:
- left: 59
- top: 354
- width: 5
- height: 10
- z index: 6
- font:
- name: MPlantin
- size: 15
- scale down to: 15
- color: rgb(0,0,0)
- alignment: middle center
- visible: { card.loyalty_cost_2 !="" }
- colon 3:
- left: 59
- top: 402
- width: 5
- height: 10
- z index: 6
- font:
- name: MPlantin
- size: 15
- scale down to: 15
- color: rgb(0,0,0)
- alignment: middle center
- visible: { card.loyalty_cost_3 !="" }
- colon 4:
- left: 59
- top: 450
- width: 5
- height: 10
- z index: 6
- font:
- name: MPlantin
- size: 15
- scale down to: 15
- color: rgb(0,0,0)
- alignment: middle center
- visible: { card.loyalty_cost_4 !="" }
+mse version: 0.3.8
+game: magic
+short name: 4 'Walkers
+full name: Modern Planeswalkers (Four Abilities)
+installer group: magic/new style/planeswalkers/four abilities
+icon: card-sample.png
+position hint: 008
+
+version: 2009-12-18
+depends on:
+ package: magic.mse-game
+ version: 2009-07-23
+depends on:
+ package: magic-future-common.mse-include
+ version: 2007-09-23
+depends on:
+ package: magic-watermarks.mse-include
+ version: 2007-09-23
+depends on:
+ package: magic-mana-large.mse-symbol-font
+ version: 2007-09-23
+depends on:
+ package: magic-mana-small.mse-symbol-font
+ version: 2007-09-23
+
+card width: 375
+card height: 523
+card dpi: 150
+#By Pichoro
+#Images by Artfreakwiu, Buttock1234, Monkeychewtoy, and Twanvl
+############################################################## Extra scripts
+init script:
+ # Should hybrids have a grey name?
+ mask_hybrid_with_land := { styling.grey_hybrid_name }
+
+ # Which artifact template should be used?
+ land_template := { "c{type}.jpg" }
+ # Use land templates for previews because they show more contrast
+ hybrid_previews := "hybrid"
+
+ # Use the normal tap symbol
+ mana_t := {
+ if styling.tap_symbol == "old" then "old"
+ else if styling.tap_symbol == "diagonal T" then "older"
+ else "new"
+ }
+
+ # Use guild mana symbols?
+ guild_mana := { styling.use_guild_mana_symbols }
+
+ paintbrush_color := {
+ if to_int(card.border_color) < 96 then "white" else "black"
+ }
+
+ # Loyalty cost arrows
+ loyalty_image := {
+ if contains(input, match: "+") then "loyalty up"
+ else if contains(input, match: "-") then "loyalty down"
+ else "loyalty naught"
+ }
+
+ card_shape := { "planeswalker" }
+############################################################## Set info fields
+set info style:
+ symbol:
+ variation:
+ name: invertedcommon
+ border radius: 0.10
+ fill type: solid
+ fill color: rgb(255,255,255)
+ border color: rgb(0,0,0)
+############################################################## Extra style options
+styling field:
+ type: boolean
+ name: grey hybrid name
+ description: Use a grey background for the name and type line on hybrid cards. This is done on real cards.
+styling field:
+ type: boolean
+ name: use guild mana symbols
+ description: Use the Ravnica guild symbols instead of the official half/half circles for hybrid mana.
+ initial: no
+styling field:
+ type: package choice
+ name: text box mana symbols
+ match: magic-mana-*.mse-symbol-font
+ initial: magic-mana-small.mse-symbol-font
+styling field:
+ type: choice
+ name: tap symbol
+ description: What tap and untap symbols should be used on cards?
+ initial: modern
+ choice: modern
+ choice: old
+ choice: diagonal T
+styling field:
+ type: choice
+ name: center text
+ description: When to center text (short text only means only on one-line cards with no flavor text)
+ choice: always
+ choice: short text only
+ choice: never
+ initial: never
+styling field:
+ type: boolean
+ name: inverted common symbol
+ description: Should the common rarity symbol be inverted, like in Coldsnap?
+ initial: no
+styling field:
+ type: package choice
+ name: overlay
+ description: Should there be an overlay applied, such as foil?
+ match: magic-overlay-*.mse-include
+ required: false
+styling style:
+ use guild mana symbols:
+ choice images:
+ yes: /magic-mana-small.mse-symbol-font/mana_guild_rg.png
+ no: /magic-mana-small.mse-symbol-font/mana_rg.png
+ tap symbol:
+ render style: both
+ choice images:
+ modern: /magic-mana-large.mse-symbol-font/mana_t.png
+ old: /magic-mana-large.mse-symbol-font/mana_t_old.png
+ diagonal T: /magic-mana-large.mse-symbol-font/mana_t_older.png
+ center text:
+ render style: both
+ choice images:
+ always: /magic.mse-game/icons/center-all-text.png
+ short text only: /magic.mse-game/icons/center-short-text.png
+ never: /magic.mse-game/icons/center-no-text.png
+ inverted common symbol:
+ choice images:
+ no: { symbol_variation(symbol: set.symbol, variation: "common") }
+ yes: { symbol_variation(symbol: set.symbol, variation: "invertedcommon") }
+############################################################## Card fields
+card style:
+ ############################# Background stuff
+ border color:
+ left: 0
+ top : 0
+ width: 375
+ height: 523
+ radius: 18
+ left width: 17
+ right width: 17
+ top width: 17
+ bottom width: 18
+ mask: border_mask.png
+ z index: 5
+ card color:
+ left: 0
+ top: 0
+ width: 375
+ height: 523
+ z index: 0
+ render style: image
+ popup style: in place
+ image: { card_background() }
+ ############################# Name line
+ name:
+ left: { if card.card_symbol=="none" then 32 else 51 }
+ top : 22
+ right: { 339 - card_style.casting_cost.content_width }
+ height: 23
+ alignment: bottom shrink-overflow
+ padding bottom: 0
+ z index: 1
+ font:
+ name: Matrix
+ size: 17
+ weight: bold
+ color: rgb(0,0,0)
+ casting cost:
+ right: 345
+ top : 24
+ width: { max(30, card_style.casting_cost.content_width) + 5 }
+ height: 23
+ alignment: middle right
+ symbol font:
+ name: magic-mana-large
+ size: 15
+ alignment: middle right
+ always symbol: true
+ z index: 2
+ padding top: 0
+ card symbol:
+ left: {if card.card_symbol=="none" then 20 else 32}
+ top : 25
+ height: 20
+ width: 14
+ z index: 1
+ render style: image
+ choice images:
+ tombstone: tombstone.png
+ ############################# Image
+ image:
+ left: 28
+ top: 54
+ width: 317
+ height: 426
+ z index: 1
+ mask: image_mask.png
+ ############################# Card type
+ type:
+ left: 36
+ top : 261
+ width: { 304 - max(22,card_style.rarity.content_width) }
+ height: 20
+ alignment: top shrink-overflow
+ z index: 2
+ padding top: 2
+ font:
+ name: Matrix
+ size: 14
+ color: rgb(0,0,0)
+ separator color: rgb(128,128,128)
+ rarity:
+ right: 342
+ top : 262
+ width: 42
+ height: 21
+ z index: 2
+ render style: image
+ alignment: middle right
+ choice images:
+ # Images based on the set symbol
+ basic land:
+ script:
+ if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
+ else symbol_variation(symbol: set.symbol, variation: "common")
+ common:
+ script:
+ if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
+ else symbol_variation(symbol: set.symbol, variation: "common")
+ uncommon: script: symbol_variation(symbol: set.symbol, variation: "uncommon")
+ rare: script: symbol_variation(symbol: set.symbol, variation: "rare")
+ mythic rare: script: symbol_variation(symbol: set.symbol, variation: "mythic rare")
+ special: script: symbol_variation(symbol: set.symbol, variation: "special")
+ ############################# Text box
+ text:
+ left: 66
+ top : 290
+ width: 276
+ height: 186
+ font:
+ name: MPlantin
+ italic name: MPlantin-Italic
+ size: 14
+ scale down to: 6
+ color: rgb(0,0,0)
+ symbol font:
+ name: { styling.text_box_mana_symbols }
+ size: 14
+ paragraph height: 48
+ alignment:
+ script:
+ if (styling.center_text == "short text only" and
+ not contains(match:"\n", card.rule_text) and
+ card.flavor_text == "" and
+ card_style.text.content_lines <= 2) or
+ styling.center_text == "always"
+ then "middle center"
+ else "middle left"
+ z index: 3
+ mask: text_mask.png
+ padding left: 6
+ padding right: 4
+ padding bottom: 2
+ line height hard: 1.2
+ line height line: 1.5
+ line height soft: 0.9
+ line height hard max: 1.3
+ line height line max: 1.6
+ watermark:
+ left: 94
+ top : 285
+ width: 184
+ height: 196
+ z index: 2
+ render style: image
+ alignment: middle center
+ include file: /magic-watermarks.mse-include/watermarks
+ ############################# Loyalty
+ loyalty:
+ z index: 7
+ left: 326
+ top: 467
+ width: 13.16
+ height: 34.63
+ alignment: center middle
+ font:
+ name: MatrixBoldSmallCaps
+ size: 16
+ weight: bold
+ color: rgb(255,255,255)
+ loyalty cost 1:
+ z index: 7
+ left: 32
+ top: 294
+ width: 13.16
+ height: 34.63
+ alignment: center middle
+ font:
+ name: Mplantin
+ size: 12
+ weight: bold
+ color: rgb(255,255,255)
+ loyalty cost 2:
+ z index: 7
+ left: 32
+ top: 342
+ width: 13.16
+ height: 34.63
+ alignment: center middle
+ font:
+ name: Mplantin
+ size: 12
+ weight: bold
+ color: rgb(255,255,255)
+ loyalty cost 3:
+ z index: 7
+ left: 32
+ top: 390
+ width: 13.16
+ height: 34.63
+ alignment: center middle
+ font:
+ name: Mplantin
+ size: 12
+ weight: bold
+ color: rgb(255,255,255)
+ loyalty cost 4:
+ z index: 7
+ left: 32
+ top: 438
+ width: 13.16
+ height: 34.63
+ alignment: center middle
+ font:
+ name: Mplantin
+ size: 12
+ weight: bold
+ color: rgb(255,255,255)
+ ############################# Card sorting / numbering
+ ############################# Copyright stuff
+ illustrator:
+ left: 63
+ bottom : 500
+ width: 287
+ height: 16
+ z index: 6
+ alignment: middle center
+ font:
+ name: Matrix
+ size: 10
+ weight: bold
+ color: { paintbrush_color() }
+ copyright line:
+ left: 43
+ top : 497
+ width: 287
+ height: 12
+ z index: 6
+ alignment: middle center
+ font:
+ name: MPlantin
+ size: 7
+ color: { paintbrush_color() }
+############################################################## Extra card fields
+extra card field:
+ type: choice
+ name: loyalty box
+ editable: false
+ choice: loyalty
+ save value: false
+extra card field:
+ type: choice
+ name: foil layer
+ choice: foil
+ save value: false
+ editable: false
+extra card field:
+ type: choice
+ name: loyalty cost box 1
+ editable: false
+ script: loyalty_image(card.loyalty_cost_1)
+ save value: false
+extra card field:
+ type: choice
+ name: loyalty cost box 2
+ editable: false
+ script: loyalty_image(card.loyalty_cost_2)
+ save value: false
+extra card field:
+ type: choice
+ name: loyalty cost box 3
+ editable: false
+ script: loyalty_image(card.loyalty_cost_3)
+ save value: false
+extra card field:
+ type: choice
+ name: loyalty cost box 4
+ editable: false
+ script: loyalty_image(card.loyalty_cost_4)
+ save value: false
+extra card field:
+ type: choice
+ name: paintbrush
+ script: paintbrush_color(value)
+ editable: false
+ save value: false
+extra card field:
+ type: text
+ name: colon 1
+ editable: false
+ script: ":"
+ save value: false
+extra card field:
+ type: text
+ name: colon 2
+ editable: false
+ script: ":"
+ save value: false
+extra card field:
+ type: text
+ name: colon 3
+ editable: false
+ script: ":"
+ save value: false
+extra card field:
+ type: text
+ name: colon 4
+ editable: false
+ script: ":"
+extra card style:
+ paintbrush:
+ right: { 206 + card_style.illustrator.content_width * -0.5 }
+ top : 486
+ width: 30
+ height: 12
+ z index: 6
+ render style: image
+ choice images:
+ black: /magic-future-common.mse-include/paintbrush_black.png
+ white: /magic-future-common.mse-include/paintbrush_white.png
+ loyalty box:
+ right: 362
+ top: 465
+ width: 60
+ height: 38
+ z index: 6
+ render style: image
+ visible: { card.loyalty !="" }
+ choice images:
+ loyalty: loyalty.png
+ foil layer:
+ left: 0
+ top : 0
+ width: 375
+ height: 523
+ z index: 4
+ render style: image
+ image: {if styling.overlay == "" then nil else styling.overlay + "/overlay.png"}
+ loyalty cost box 1:
+ left: 18
+ top: 292
+ width: 42
+ height: 40
+ z index: 6
+ render style: image
+ visible: { card.loyalty_cost_1 !="" }
+ choice images:
+ loyalty up: loyaltyup.png
+ loyalty down: loyaltydown.png
+ loyalty naught: loyaltynaught.png
+ loyalty cost box 2:
+ left: 18
+ top: 340
+ width: 42
+ height: 40
+ z index: 6
+ render style: image
+ visible: { card.loyalty_cost_2 !="" }
+ choice images:
+ loyalty up: loyaltyup.png
+ loyalty down: loyaltydown.png
+ loyalty naught: loyaltynaught.png
+ loyalty cost box 3:
+ left: 18
+ top: 388
+ width: 42
+ height: 40
+ z index: 6
+ render style: image
+ visible: { card.loyalty_cost_3 !="" }
+ choice images:
+ loyalty up: loyaltyup.png
+ loyalty down: loyaltydown.png
+ loyalty naught: loyaltynaught.png
+ loyalty cost box 4:
+ left: 18
+ top: 436
+ width: 42
+ height: 40
+ z index: 6
+ render style: image
+ visible: { card.loyalty_cost_4 !="" }
+ choice images:
+ loyalty up: loyaltyup.png
+ loyalty down: loyaltydown.png
+ loyalty naught: loyaltynaught.png
+ colon 1:
+ left: 59
+ top: 306
+ width: 5
+ height: 10
+ z index: 6
+ font:
+ name: MPlantin
+ size: 15
+ scale down to: 15
+ color: rgb(0,0,0)
+ alignment: middle center
+ visible: { card.loyalty_cost_1 !="" }
+ colon 2:
+ left: 59
+ top: 354
+ width: 5
+ height: 10
+ z index: 6
+ font:
+ name: MPlantin
+ size: 15
+ scale down to: 15
+ color: rgb(0,0,0)
+ alignment: middle center
+ visible: { card.loyalty_cost_2 !="" }
+ colon 3:
+ left: 59
+ top: 402
+ width: 5
+ height: 10
+ z index: 6
+ font:
+ name: MPlantin
+ size: 15
+ scale down to: 15
+ color: rgb(0,0,0)
+ alignment: middle center
+ visible: { card.loyalty_cost_3 !="" }
+ colon 4:
+ left: 59
+ top: 450
+ width: 5
+ height: 10
+ z index: 6
+ font:
+ name: MPlantin
+ size: 15
+ scale down to: 15
+ color: rgb(0,0,0)
+ alignment: middle center
+ visible: { card.loyalty_cost_4 !="" }
diff --git a/data/magic-new-token-clear.mse-style/style b/data/magic-new-token-clear.mse-style/style
index e0cc1e2f..341460fb 100644
--- a/data/magic-new-token-clear.mse-style/style
+++ b/data/magic-new-token-clear.mse-style/style
@@ -1,446 +1,446 @@
-mse version: 0.3.8
-game: magic
-short name: Clear Tokens
-full name: Modern Clear
-installer group: magic/new style/tokens/clear style
-icon: card-sample.png
-position hint: 009
-
-version: 2010-04-01
-depends on:
- package: magic.mse-game
- version: 2008-06-02
-depends on:
- package: magic-future-common.mse-include
- version: 2007-09-23
-depends on:
- package: magic-mana-small.mse-symbol-font
- version: 2007-09-23
-depends on:
- package: magic-embossedletters.mse-symbol-font
- version: 2007-09-23
-
-card width: 375
-card height: 523
-card dpi: 150
-# By Pichoro
-############################################################## Extra scripts
-init script:
- # What should the textbox look like?
- text_shape := {
- if card.rule_text == ""
- and card.flavor_text == "" then "0" # no textbox
- else if styling.one_textline_tokens
- and card_style.text.content_lines == 2
- and card.flavor_text == "" then "1" # small textbox
- else "2" # large textbox
- }
-
- # Use the normal tap symbol
- mana_t := {
- if styling.tap_symbol == "old" then "old"
- else if styling.tap_symbol == "diagonal T" then "older"
- else "new"
- }
-
- # Use guild mana symbols?
- guild_mana := { styling.use_guild_mana_symbols }
-
- # AE replacement shouldn't happen in the title, or else MSE compresses the symbol
- name_filter := { input }
-
- card_shape := { "token" }
-
- frame_alpha := { if styling.frame_opacity == "" then 0.75
- else if styling.frame_opacity < 0 then 0
- else if styling.frame_opacity > 100 then 1
- else styling.frame_opacity / 100
- }
-
-############################################################## Set info fields
-set info style:
- symbol:
- variation:
- name: invertedcommon
- border radius: 0.10
- fill type: solid
- fill color: rgb(255,255,255)
- border color: rgb(0,0,0)
-############################################################## Extra style
-styling field:
- type: text
- name: left
-styling field:
- type: text
- name: top
-styling field:
- type: text
- name: width
-styling field:
- type: text
- name: height
-styling field:
- type: boolean
- name: use guild mana symbols
- description: Use the Ravnica guild symbols instead of the official half/half circles for hybrid mana.
- initial: no
-styling field:
- type: package choice
- name: text box mana symbols
- match: magic-mana-*.mse-symbol-font
- initial: magic-mana-small.mse-symbol-font
-styling field:
- type: choice
- name: tap symbol
- description: What tap and untap symbols should be used on cards?
- initial: modern
- choice: modern
- choice: old
- choice: diagonal T
-styling field:
- type: boolean
- name: one textline tokens
- description: Should token frames with a single line for text be enabled?
- initial: no
-styling field:
- type: choice
- name: center text
- description: When to center text (short text only means only on one-line cards with no flavor text)
- choice: always
- choice: short text only
- choice: never
- initial: short text only
-styling field:
- type: boolean
- name: inverted common symbol
- description: Should the common rarity symbol be inverted, like in Coldsnap?
- initial: no
-styling field:
- type: package choice
- name: overlay
- description: Should there be an overlay applied, such as foil?
- match: magic-overlay-*.mse-include
- required: false
-styling field:
- type: text
- name: frame opacity
- description: The opacity of the frame. 100 is no transparency, 0 is completely transparent. Default is 75.
-styling field:
- type: boolean
- name: border visible
- description: Should the card border be visible?
- initial: yes
-styling field:
- type: choice
- name: artist font color
- description: Should the artist font color be black or white?
- initial: black
- choice: black
- choice: white
-styling style:
- use guild mana symbols:
- choice images:
- yes: /magic-mana-small.mse-symbol-font/mana_guild_rg.png
- no: /magic-mana-small.mse-symbol-font/mana_rg.png
- tap symbol:
- render style: both
- choice images:
- modern: /magic-mana-small.mse-symbol-font/mana_t.png
- old: /magic-mana-small.mse-symbol-font/mana_t_old.png
- diagonal T: /magic-mana-small.mse-symbol-font/mana_t_older.png
- center text:
- render style: both
- choice images:
- always: /magic.mse-game/icons/center-all-text.png
- short text only: /magic.mse-game/icons/center-short-text.png
- never: /magic.mse-game/icons/center-no-text.png
- inverted common symbol:
- choice images:
- no: { symbol_variation(symbol: set.symbol, variation: "common") }
- yes: { symbol_variation(symbol: set.symbol, variation: "invertedcommon") }
-############################################################## Card fields
-card style:
- ############################# Background stuff
- border color:
- left: 0
- top : 0
- width: 375
- height: 523
- radius: 18
- left width: 17
- right width: 17
- top width: 17
- bottom width: 18
- mask: border_mask.png
- z index: 5
- visible: {styling.border_visible}
- ###################C######### Name line
- name:
- left:
- { if card_style.name.content_width > 269 then 50
- else card_style.name.content_width * -0.5 + 184.5 }
- top: 23
- width:
- { if card_style.name.content_width > 269 then 275
- else card_style.name.content_width + 6 }
- height: 28
- alignment: bottom center justify-all
- padding bottom: -2
- padding top: 2
- z index: 3
- symbol font:
- name: magic-embossedletters
- size: 22
- alignment: bottom center
- always symbol: true
- ############################# Image
- image:
- left: {if styling.border_visible then 19 else 0}
- top: {if styling.border_visible then 19 else 0}
- width: {if styling.border_visible then 337 else 375}
- height: {if styling.border_visible then 485 else 523}
- z index: 0
- mask: {if not styling.border_visible then "image_mask.png" else nil}
- ################H############ Card type
- type:
- left: 35
- top:
- {if text_shape() == "0" then 432
- else if text_shape() == "1" then 414
- else 353}
- width: { 308 - max(22,card_style.rarity.content_width) }
- height: 20
- alignment: top shrink-overflow
- z index: 2
- padding top: 2
- padding bottom: 4
- padding right: 2
- font:
- name: Matrix
- size: 15
- color: black
- separator color: rgb(128,128,128)
- rarity:
- right: 342
- top:
- { if text_shape() == "0" then 432
- else if text_shape() == "1" then 414
- else 353 }
- width: 44
- height: 22
- z index: 3
- alignment: middle right
- render style: image
- choice images:
- # Images based on the set symbol
- basic land:
- script:
- if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
- else symbol_variation(symbol: set.symbol, variation: "common")
- common:
- script:
- if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
- else symbol_variation(symbol: set.symbol, variation: "common")
- uncommon: script: symbol_variation(symbol: set.symbol, variation: "uncommon")
- rare: script: symbol_variation(symbol: set.symbol, variation: "rare")
- mythic rare: script: symbol_variation(symbol: set.symbol, variation: "mythic rare")
- special: script: symbol_variation(symbol: set.symbol, variation: "special")
- ############################# Text box
- text:
- left: 31
- top:
- { if text_shape() == "0" then 300
- else if text_shape() == "1" then 443
- else 388}
- width: 311
- height:
- { if text_shape() == "1" then 27
- else 80 }
- font:
- name: MPlantin
- italic name: MPlantin-Italic
- size: 14
- scale down to: 10
- color: black
- symbol font:
- name: { styling.text_box_mana_symbols }
- size: 14
- alignment:
- script:
- if (styling.center_text == "short text only" and
- card_style.text.content_lines <= 2 and
- not contains(match:",", card.rule_text) and
- not contains(match: ".", card.rule_text) and
- not contains(match: ";", card.rule_text) and
- not contains(match: ":", card.rule_text) and
- not contains(match: "!", card.rule_text) and
- not contains(match: "?", card.rule_text) and
- card.flavor_text == "") or
- styling.center_text == "always"
- then "middle center shrink-overflow"
- else "middle left shrink-overflow"
- z index: 2
- padding left: 6
- padding top: 2
- padding right: 4
- padding bottom: 2
- line height hard: 1.2
- line height line: 1.5
- line height soft: 0.9
- ############################# PT
- pt:
- z index: 3
- left:
- { if text_shape() == "2" then 288
- else 284 }
- top:
- { if text_shape() == "2" then 471
- else 466 }
- width: 60
- height: 28
- alignment: center middle shrink-overflow
- font:
- name: ModMatrix
- size: 17
- weight: bold
- color: black
- separator color: rgb(200,0,0)
- ############################# Copyright stuff
- illustrator:
- left: 58
- top : 479
- width: 215
- height: 16
- z index: 2
- font:
- name: Matrix
- size: 11
- weight: bold
- color: { styling.artist_font_color }
- copyright line:
- left: 30
- top : 493
- width: 247
- height: 12
- z index: 2
- font:
- name: MPlantin
- size: 6.5
- color: { styling.artist_font_color }
-############################################################## Extra card fields
-extra card field:
- type: choice
- name: frame
- script: card.card_color
- editable: false
- save value: false
-extra card field:
- type: choice
- name: pt box
- script: card.card_color
- editable: false
- save value: false
-extra card field:
- type: choice
- name: foil layer
- choice: foil
- save value: false
- editable: false
-extra card field:
- type: choice
- name: name box
- choice: black
- editable: false
- save value: false
-extra card field:
- type: choice
- name: name box left
- choice: black
- editable: false
- save value: false
-extra card field:
- type: choice
- name: name box right
- choice: black
- editable: false
- save value: false
-extra card field:
- type: choice
- name: paintbrush
- script: styling.artist_font_color
- editable: false
- save value: false
-extra card style:
- frame:
- left: 0
- top: 0
- width: 375
- height: 523
- z index: 1
- render style: image
- popup style: in place
- image: { set_alpha(("frame" + text_shape() + ".png"), alpha: frame_alpha()) }
- pt box:
- left:
- { if text_shape() == "2" then 12
- else 8 }
- top:
- { if text_shape() == "2" then 52
- else 47 }
- width: 366
- height: 472
- z index: 2
- visible: { card.pt != "" }
- render style: image
- image: pt_box.png
- foil layer:
- left: 0
- top : 0
- width: 375
- height: 523
- z index: 4
- render style: image
- image: {if styling.overlay == "" then nil else styling.overlay + "/overlay.png"}
- name box:
- left:
- { if card_style.name.content_width > 275 then 50
- else card_style.name.content_width * -0.5 + 185.5 }
- top: 26
- width:
- { if card_style.name.content_width > 275 then 275
- else card_style.name.content_width + 3}
- height: 35
- z index: 2
- visible: { card.name != "" }
- render style: image
- image: name-mid.png
- name box left:
- right:
- { if card_style.name.content_width > 275 then 50
- else card_style.name.content_width * -0.5 + 185.5 }
- top: 26
- width: 15
- height: 35
- z index: 2
- render style: image
- image: name-left.png
- name box right:
- left:
- { if card_style.name.content_width > 275 then 325
- else card_style.name.content_width * 0.5 + 187.5 }
- top: 26
- width: 14
- height: 35
- z index: 2
- render style: image
- image: name-right.png
- paintbrush:
- left: 27
- top : 481
- width: 30
- height: 11
- z index: 2
- render style: image
- choice images:
- black: /magic-future-common.mse-include/paintbrush_black.png
- white: /magic-future-common.mse-include/paintbrush_white.png
+mse version: 0.3.8
+game: magic
+short name: Clear Tokens
+full name: Modern Clear
+installer group: magic/new style/tokens/clear style
+icon: card-sample.png
+position hint: 009
+
+version: 2010-04-01
+depends on:
+ package: magic.mse-game
+ version: 2008-06-02
+depends on:
+ package: magic-future-common.mse-include
+ version: 2007-09-23
+depends on:
+ package: magic-mana-small.mse-symbol-font
+ version: 2007-09-23
+depends on:
+ package: magic-embossedletters.mse-symbol-font
+ version: 2007-09-23
+
+card width: 375
+card height: 523
+card dpi: 150
+# By Pichoro
+############################################################## Extra scripts
+init script:
+ # What should the textbox look like?
+ text_shape := {
+ if card.rule_text == ""
+ and card.flavor_text == "" then "0" # no textbox
+ else if styling.one_textline_tokens
+ and card_style.text.content_lines == 2
+ and card.flavor_text == "" then "1" # small textbox
+ else "2" # large textbox
+ }
+
+ # Use the normal tap symbol
+ mana_t := {
+ if styling.tap_symbol == "old" then "old"
+ else if styling.tap_symbol == "diagonal T" then "older"
+ else "new"
+ }
+
+ # Use guild mana symbols?
+ guild_mana := { styling.use_guild_mana_symbols }
+
+ # AE replacement shouldn't happen in the title, or else MSE compresses the symbol
+ name_filter := { input }
+
+ card_shape := { "token" }
+
+ frame_alpha := { if styling.frame_opacity == "" then 0.75
+ else if styling.frame_opacity < 0 then 0
+ else if styling.frame_opacity > 100 then 1
+ else styling.frame_opacity / 100
+ }
+
+############################################################## Set info fields
+set info style:
+ symbol:
+ variation:
+ name: invertedcommon
+ border radius: 0.10
+ fill type: solid
+ fill color: rgb(255,255,255)
+ border color: rgb(0,0,0)
+############################################################## Extra style
+styling field:
+ type: text
+ name: left
+styling field:
+ type: text
+ name: top
+styling field:
+ type: text
+ name: width
+styling field:
+ type: text
+ name: height
+styling field:
+ type: boolean
+ name: use guild mana symbols
+ description: Use the Ravnica guild symbols instead of the official half/half circles for hybrid mana.
+ initial: no
+styling field:
+ type: package choice
+ name: text box mana symbols
+ match: magic-mana-*.mse-symbol-font
+ initial: magic-mana-small.mse-symbol-font
+styling field:
+ type: choice
+ name: tap symbol
+ description: What tap and untap symbols should be used on cards?
+ initial: modern
+ choice: modern
+ choice: old
+ choice: diagonal T
+styling field:
+ type: boolean
+ name: one textline tokens
+ description: Should token frames with a single line for text be enabled?
+ initial: no
+styling field:
+ type: choice
+ name: center text
+ description: When to center text (short text only means only on one-line cards with no flavor text)
+ choice: always
+ choice: short text only
+ choice: never
+ initial: short text only
+styling field:
+ type: boolean
+ name: inverted common symbol
+ description: Should the common rarity symbol be inverted, like in Coldsnap?
+ initial: no
+styling field:
+ type: package choice
+ name: overlay
+ description: Should there be an overlay applied, such as foil?
+ match: magic-overlay-*.mse-include
+ required: false
+styling field:
+ type: text
+ name: frame opacity
+ description: The opacity of the frame. 100 is no transparency, 0 is completely transparent. Default is 75.
+styling field:
+ type: boolean
+ name: border visible
+ description: Should the card border be visible?
+ initial: yes
+styling field:
+ type: choice
+ name: artist font color
+ description: Should the artist font color be black or white?
+ initial: black
+ choice: black
+ choice: white
+styling style:
+ use guild mana symbols:
+ choice images:
+ yes: /magic-mana-small.mse-symbol-font/mana_guild_rg.png
+ no: /magic-mana-small.mse-symbol-font/mana_rg.png
+ tap symbol:
+ render style: both
+ choice images:
+ modern: /magic-mana-small.mse-symbol-font/mana_t.png
+ old: /magic-mana-small.mse-symbol-font/mana_t_old.png
+ diagonal T: /magic-mana-small.mse-symbol-font/mana_t_older.png
+ center text:
+ render style: both
+ choice images:
+ always: /magic.mse-game/icons/center-all-text.png
+ short text only: /magic.mse-game/icons/center-short-text.png
+ never: /magic.mse-game/icons/center-no-text.png
+ inverted common symbol:
+ choice images:
+ no: { symbol_variation(symbol: set.symbol, variation: "common") }
+ yes: { symbol_variation(symbol: set.symbol, variation: "invertedcommon") }
+############################################################## Card fields
+card style:
+ ############################# Background stuff
+ border color:
+ left: 0
+ top : 0
+ width: 375
+ height: 523
+ radius: 18
+ left width: 17
+ right width: 17
+ top width: 17
+ bottom width: 18
+ mask: border_mask.png
+ z index: 5
+ visible: {styling.border_visible}
+ ###################C######### Name line
+ name:
+ left:
+ { if card_style.name.content_width > 269 then 50
+ else card_style.name.content_width * -0.5 + 184.5 }
+ top: 23
+ width:
+ { if card_style.name.content_width > 269 then 275
+ else card_style.name.content_width + 6 }
+ height: 28
+ alignment: bottom center justify-all
+ padding bottom: -2
+ padding top: 2
+ z index: 3
+ symbol font:
+ name: magic-embossedletters
+ size: 22
+ alignment: bottom center
+ always symbol: true
+ ############################# Image
+ image:
+ left: {if styling.border_visible then 19 else 0}
+ top: {if styling.border_visible then 19 else 0}
+ width: {if styling.border_visible then 337 else 375}
+ height: {if styling.border_visible then 485 else 523}
+ z index: 0
+ mask: {if not styling.border_visible then "image_mask.png" else nil}
+ ################H############ Card type
+ type:
+ left: 35
+ top:
+ {if text_shape() == "0" then 432
+ else if text_shape() == "1" then 414
+ else 353}
+ width: { 308 - max(22,card_style.rarity.content_width) }
+ height: 20
+ alignment: top shrink-overflow
+ z index: 2
+ padding top: 2
+ padding bottom: 4
+ padding right: 2
+ font:
+ name: Matrix
+ size: 15
+ color: black
+ separator color: rgb(128,128,128)
+ rarity:
+ right: 342
+ top:
+ { if text_shape() == "0" then 432
+ else if text_shape() == "1" then 414
+ else 353 }
+ width: 44
+ height: 22
+ z index: 3
+ alignment: middle right
+ render style: image
+ choice images:
+ # Images based on the set symbol
+ basic land:
+ script:
+ if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
+ else symbol_variation(symbol: set.symbol, variation: "common")
+ common:
+ script:
+ if styling.inverted_common_symbol then symbol_variation(symbol: set.symbol, variation: "invertedcommon")
+ else symbol_variation(symbol: set.symbol, variation: "common")
+ uncommon: script: symbol_variation(symbol: set.symbol, variation: "uncommon")
+ rare: script: symbol_variation(symbol: set.symbol, variation: "rare")
+ mythic rare: script: symbol_variation(symbol: set.symbol, variation: "mythic rare")
+ special: script: symbol_variation(symbol: set.symbol, variation: "special")
+ ############################# Text box
+ text:
+ left: 31
+ top:
+ { if text_shape() == "0" then 300
+ else if text_shape() == "1" then 443
+ else 388}
+ width: 311
+ height:
+ { if text_shape() == "1" then 27
+ else 80 }
+ font:
+ name: MPlantin
+ italic name: MPlantin-Italic
+ size: 14
+ scale down to: 10
+ color: black
+ symbol font:
+ name: { styling.text_box_mana_symbols }
+ size: 14
+ alignment:
+ script:
+ if (styling.center_text == "short text only" and
+ card_style.text.content_lines <= 2 and
+ not contains(match:",", card.rule_text) and
+ not contains(match: ".", card.rule_text) and
+ not contains(match: ";", card.rule_text) and
+ not contains(match: ":", card.rule_text) and
+ not contains(match: "!", card.rule_text) and
+ not contains(match: "?", card.rule_text) and
+ card.flavor_text == "") or
+ styling.center_text == "always"
+ then "middle center shrink-overflow"
+ else "middle left shrink-overflow"
+ z index: 2
+ padding left: 6
+ padding top: 2
+ padding right: 4
+ padding bottom: 2
+ line height hard: 1.2
+ line height line: 1.5
+ line height soft: 0.9
+ ############################# PT
+ pt:
+ z index: 3
+ left:
+ { if text_shape() == "2" then 288
+ else 284 }
+ top:
+ { if text_shape() == "2" then 471
+ else 466 }
+ width: 60
+ height: 28
+ alignment: center middle shrink-overflow
+ font:
+ name: ModMatrix
+ size: 17
+ weight: bold
+ color: black
+ separator color: rgb(200,0,0)
+ ############################# Copyright stuff
+ illustrator:
+ left: 58
+ top : 479
+ width: 215
+ height: 16
+ z index: 2
+ font:
+ name: Matrix
+ size: 11
+ weight: bold
+ color: { styling.artist_font_color }
+ copyright line:
+ left: 30
+ top : 493
+ width: 247
+ height: 12
+ z index: 2
+ font:
+ name: MPlantin
+ size: 6.5
+ color: { styling.artist_font_color }
+############################################################## Extra card fields
+extra card field:
+ type: choice
+ name: frame
+ script: card.card_color
+ editable: false
+ save value: false
+extra card field:
+ type: choice
+ name: pt box
+ script: card.card_color
+ editable: false
+ save value: false
+extra card field:
+ type: choice
+ name: foil layer
+ choice: foil
+ save value: false
+ editable: false
+extra card field:
+ type: choice
+ name: name box
+ choice: black
+ editable: false
+ save value: false
+extra card field:
+ type: choice
+ name: name box left
+ choice: black
+ editable: false
+ save value: false
+extra card field:
+ type: choice
+ name: name box right
+ choice: black
+ editable: false
+ save value: false
+extra card field:
+ type: choice
+ name: paintbrush
+ script: styling.artist_font_color
+ editable: false
+ save value: false
+extra card style:
+ frame:
+ left: 0
+ top: 0
+ width: 375
+ height: 523
+ z index: 1
+ render style: image
+ popup style: in place
+ image: { set_alpha(("frame" + text_shape() + ".png"), alpha: frame_alpha()) }
+ pt box:
+ left:
+ { if text_shape() == "2" then 12
+ else 8 }
+ top:
+ { if text_shape() == "2" then 52
+ else 47 }
+ width: 366
+ height: 472
+ z index: 2
+ visible: { card.pt != "" }
+ render style: image
+ image: pt_box.png
+ foil layer:
+ left: 0
+ top : 0
+ width: 375
+ height: 523
+ z index: 4
+ render style: image
+ image: {if styling.overlay == "" then nil else styling.overlay + "/overlay.png"}
+ name box:
+ left:
+ { if card_style.name.content_width > 275 then 50
+ else card_style.name.content_width * -0.5 + 185.5 }
+ top: 26
+ width:
+ { if card_style.name.content_width > 275 then 275
+ else card_style.name.content_width + 3}
+ height: 35
+ z index: 2
+ visible: { card.name != "" }
+ render style: image
+ image: name-mid.png
+ name box left:
+ right:
+ { if card_style.name.content_width > 275 then 50
+ else card_style.name.content_width * -0.5 + 185.5 }
+ top: 26
+ width: 15
+ height: 35
+ z index: 2
+ render style: image
+ image: name-left.png
+ name box right:
+ left:
+ { if card_style.name.content_width > 275 then 325
+ else card_style.name.content_width * 0.5 + 187.5 }
+ top: 26
+ width: 14
+ height: 35
+ z index: 2
+ render style: image
+ image: name-right.png
+ paintbrush:
+ left: 27
+ top : 481
+ width: 30
+ height: 11
+ z index: 2
+ render style: image
+ choice images:
+ black: /magic-future-common.mse-include/paintbrush_black.png
+ white: /magic-future-common.mse-include/paintbrush_white.png
diff --git a/data/pl.mse-locale/locale b/data/pl.mse-locale/locale
index d2334d09..3501b50d 100644
--- a/data/pl.mse-locale/locale
+++ b/data/pl.mse-locale/locale
@@ -1,926 +1,926 @@
-mse version: 0.3.8
-installer group: translations/Polski
-full name: Polski
-version: 2009-03-05
-icon: pl.png
-
-# Base translation: Liosan, 03.2009; Licenced under GFDL where applicable
-
-############################################################## Menu items
-menu:
- file: &Plik
- new set: &Nowy... Ctrl+N
- open set: &Otwórz... Ctrl+O
- save set: &Zapisz Ctrl+S
- save set as: Zapisz &Jako... F12
- export: &Eksportuj
- export html: &HTML...
- export image: &Obraz Karty...
- export images: Wszystkie o&brazy kart...
- export apprentice: &Apprentice...
- export mws: Magic &Workstation...
- check updates: Sprawdź akt&ualizacje...
- print preview: &Podgląd wydruku...
- print: &Drukuj... Ctrl+P
- reload data: Przeładuj dane Ctrl+F5
- exit: W&yjscie Alt+F4
-
- edit: &Edycja
- undo: &Cofnij%s Ctrl+Z
- redo: &Powtórz%s Ctrl+Y
- cut: Wy&tnij Ctrl+X
- copy: &Kopiuj Ctrl+C
- paste: &Wklej Ctrl+V
- find: &Szukaj Ctrl+F
- find next: Znajdź &Następny F3
- replace: &Zamień Ctrl+H
- auto replace: Auto Za&mień...
- preferences: &Ustawienia...
-
- cards: &Karty
- previous card: Wybierz &Poprzednią Kartę PgUp
- next card: Wybierz &Następną Kartę PgDn
- add card: &Dodaj Kartę Ctrl+Enter
- add cards: Dodaj &Wiele Kart...
- remove card: &Usuń Wybraną Kartę
- orientation: &Obrócenie
- rotate 0: &Normalne
- rotate 270: 90° w &Prawo
- rotate 90: 90° w &Lewo
- rotate 180: 180°, Do góry &nogami
- card list columns: Kolumny &Listy Kart...
-
- keywords: &Słowa Kluczowe
- previous keyword: Wybierz &Poprzednie Słowo Kluczowe PgUp
- next keyword: Wybierz &Następne Słowo Kluczowe PgDn
- add keyword: &Dodaj Słowo Kluczowe Ctrl+Enter
- remove keyword: &Usuń Słowo Kluczowe Del
-
- format: &Format
- bold: Wy&tłuszczony Ctrl+B
- italic: &Kursywa Ctrl+I
- symbols: &Symbole Ctrl+M
- reminder text: &Tekst przypomnienia Ctrl+R
- insert symbol: &Wstaw symbol
- # spelling
- no spelling suggestions: (brak sugestii)
-
- graph: &Wykres
- pie: &Kołowy 1
- bar: &Słupkowy 2
- stack: Słupkowy z &podziałką 3
- scatter: &Rozproszony 4
- scatter pie: Ro&zproszony Kołowy 5
-
- window: &Okno
- new window: &Nowe okno
- cards tab: &Karty F5
- set info tab: &Informacje o Zestawie F6
- style tab: St&yl F7
- keywords tab: &Słowa Kluczowe F8
- stats tab: S&tatystyki F9
- random pack tab: &Losowe paczki
-
- help: &Pomoc
- index: Spis &treści... F1
- website: &Strona internetowa...
- about: &O programie Magic Set Editor...
-
- # symbol editor
-
- new symbol: &Nowy... Ctrl+N
- open symbol: &Otwórz... Ctrl+O
- save symbol: &Zapisz Ctrl+S
- save symbol as: Zapisz &Jako... F12
- store symbol: Za&chowaj Ctrl+Enter
- close symbol editor:Zamknij Alt+F4
-
- duplicate: &Duplikuj Ctrl+D
- group: &Grupuj Ctrl+G
- ungroup: &Odgrupuj Ctrl+U
-
- tool: &Narzędzie
- select: &Wybór F5
- rotate: &Obrót F6
- points: &Punkty F7
- basic shapes: Podstawowe &Kształty F8
- symmetry: S&ymetria F9
- paint: &Maluj F10
-
-############################################################## Menu help texts
-help:
- welcome: Witaj w programie Magic Set Editor
-
- file:
- new set: Utwórz nowy zestaw
- open set: Otwórz istniejący zestaw
- last opened set: Otwórz '%s'
- save set: Zapisz zestaw
- save set as: Zapisz zestaw pod nową nazwą
- export: Eksportuj zestaw...
- export html: Eksportuj zestaw jako stronę internetową
- export image: Eksportuj wybraną kartę jako obraz
- export images: Eksportuj wszystkie karty jako obrazy
- export apprentice: Eksportuj zestaw tak, by dało się grać w programie Apprentice
- export mws: Eksportuj zestaw tak, by dało się grać w programie Magic Workstation
- check updates: Instaluj/uaktualnij dane programu.
- print preview: Pokaż karty tak, jak zostaną wydrukowane.
- print: Drukuj karty z tego zestawu.
- reload data: Przeładuj wszystkie dane szablonów (gry oraz stylu), a także dane zestawu.
- exit: Opuść program MSE; pojawi się prośba o zapisanie zmian
-
- edit:
- undo: Cofnij poprzednią czynność
- redo: Powtórz poprzednią czynność
- cut: Wytnij zaznaczony tekst do schowka
- cut card: Wytnij wybraną kartę do schowka
- cut keyword: Wytnij wybrane słowo kluczowe do schowka
- copy: Kopiuj zaznaczony tekst do schowka
- copy card: Kopiuj zaznaczoną kartę do schowka
- copy keyword: Kopiuj zaznaczone słowo kluczowe do schowka
- paste: Wklej tekst ze schowka
- paste card: Wklej kartę ze schowka
- paste keyword: Wklej słowo kluczowe ze schowka
- find: Przeszukaj teksty kart
- find next: Znajdź następne wystąpienie
- replace: Zastąp w tekstach kart
- auto replace: Co powinno być automatycznie zastąpione?
- preferences: Zmień ustawienia programu Magic Set Editor
-
- cards:
- previous card: Wybierz poprzednią kartę z listy
- next card: Wybierz następną kartę z listy
- add card: Dodaj nową, pustą kartę do zestawu
- add cards: Dodaj wiele kart do zestawu
- remove card: Usuń wybraną kartę z zestawu
- orientation: Obróć zaznaczoną kartę
- rotate card: Obróc obrazek kartę o 90° zgodnie z ruchem wskazówek zegara
- rotate 0: Obróc kartę "do góry głową"
- rotate 270: Obróc kartę zgodnie z ruchem wskazówek zegara
- rotate 90: Obróc kartę przeciwnie do ruchu wskazówek zegara
- rotate 180: Obróc kartę "do góry nogami"
- card list columns: Wybierz kolumny listy kart i ich kolejność.
-
- keywords:
- previous keyword: Wybiera poprzednie słowo kluczowe z listy
- next keyword: Zaznacza poprzednie słowo kluczowe na liście
- add keyword: Dodaje nowe słowo kluczowe do zestawu
- remove keyword: Usuwa wybrane słowo kluczowe do zestawu
-
- format:
- bold: Pogrubia zaznaczony tekst
- italic: Pochyla zaznaczony tekst
- symbols: Rysuje zaznaczony tekst z symbolami
- reminder text: Pokazuj tekst przypomnienia dla wybranego słowa kluczowego
- no spelling suggestions: Nie ma sugestii co do sposobu korekty tego słowa.
-
- graph:
- pie: Wykres kołowy, wielkość wycinka jest proporcjonalna do ilości kart
- bar: Wykres słupkowy, wysokość słupka jest proporcjonalna do ilości kart
- stack: Wykres słupkowy z podziałką
- scatter: Wykres rozproszony, wielkość kółka jest proporcjonalna do ilości kart
- scatter pie: Wykres rozproszony kołowy - wykres rozproszony, gdzie każde kółko jest małym wykresem kołowym
-
- window:
- new window: Otwiera ten sam zestaw w nowym oknie
- cards tab: Edytuj karty w tym zestawie
- set info tab: Edytuj informacje o zestawie, jego twórcy itp.
- style tab: Zmieniaj style kart
- keywords tab: Dodawaj słowa kluczowe do zestawu
- stats tab: Wyświetl statystyki zestawu
- random pack tab: Wypróbuj zestaw przez generowanie losowych paczek kart
-
- help:
- index:
- website:
- about:
-
- # Cards panel
- collapse notes: Schowaj panel z notatkami
- expand notes: Pokaż panel z notatkami
- # Random pack panel
- random seed: Za każdym razem zostanie wygenerowana inna paczka.
- fixed seed: Używanie tego samego ziarna daje te same 'losowe' paczki.
- seed: Ziarno dla generatora liczb losowych. Używanie tego samego ziarna daje te same 'losowe' paczki.
- edit pack type: Kliknij dwa razy by zmienić rodzaj paczki
- number of packs: Ilość %s do wygenerowania
-
- # Preferences
- app language:
- Uwaga: musisz zrestartować program, aby wprowadzić zmiany w życie.
- zoom export:
- (Kiedy ta opcja jest wyłączona, karty są
- eksportowane i kopiowane w normalnym rozmiarze i obróceniu)
-
- # apprentice export
- set code: Kod zestawu to dwuliterowy skrót, którego Apprentice używa by odwoływać się do zestawu.
-
- # Symbol editor
- new symbol: Utwórz nowy symbol
- open symbol: Otwórz symbol
- save symbol: Zapisz symbol
- save symbol as: Zapisz symbol w innym pliku
- store symbol: Zachowaj symbol w zestawie
- close symbol editor:Zamyka edytor symboli
-
- duplicate: Tworzy kopie zaznaczonych kształtów
- group: Grupuje zaznaczone kształty razem
- ungroup: Rozbija zaznaczoną grupę kształtów
-
- grid: Pokaż siatkę
- snap: Wyrównaj punkty i kształty do siatki
-
- tool:
- select: Zaznacz i przesuwaj kształty
- rotate: Obracaj i tnij kształty
- points: Edytuj punkty kontrolne kształtu
- basic shapes: Rysuj proste kształty - prostokąty, okręgi itp.
- symmetry: Dodaj symetrie do kształtu
- paint: Rysuj po kształcie pędzlem
-
- select editor:
- merge: Scala zaznaczony kształt z kształtami pod nim
- subtract: Odejmuje zaznaczony kształt od kształtów pod nim, zostawia jedynie obszar nie będący częścią zaznaczonego kształtu
- intersect: Przecina zaznaczony kształt z kształtami pod nim, zostawia jedynie obszar będący częścią wspólną
- difference: Różnicuje zaznaczony kształt od kształtów pod nim, zostawia jedynie obszar nie będący częścią żadnego kształtu
- overlap: Umieść zaznaczony kształt ponad kształtami znajdującymi się pod nim
- border: Rysuj ten kształt jako brzeg
-
- drag to shear: Przeciągnij, by przyciąć zaznaczone %s
- drag to rotate: Przeciągnij, by obrócić zaznaczone %s, przytrzymanie Ctrl obraca tylko o wielokrotności 15°
- drag to resize: Przeciągnij, by rozciągnać zaznaczone %s, przytrzymanie Ctrl ograniczna rozmiar
- click to select shape: Kliknij by zaznaczyć kształt, przeciągnij by przemieścić kształt, kliknij dwa razy by edytować kształt
-
- ellipse: Rysuj okręgi i elipsy
- rectangle: Rysuj kwadraty i prostokąty
- polygon: Rysuj trójkąty, pięciokąty i inne regularne wielokąty
- star: Rysuj gwiazdy
- sides: Liczba boków wielokąta bądź gwiazdy
- drag to draw shape: Przeciągnij by zmienić rozmiar, Ctrl ogranicza rozmiar, Shift wyśrodkowuje kształt
- draw ellipse: Kliknij i przeciągnij, by narysować elipsę, przytrzymaj Ctrl by rysować tylko okręgi
- draw rectangle: Kliknij i przeciągnij, by narysować prostokąt, przytrzymaj Ctrl by rysować tylko kwadraty
- draw polygon: Kliknij i przeciągnij, by narysować wielokąt
- draw star: Kliknij i przeciągnij, by narysować gwiazdę
-
- line segment: Prostuje wybrany kawałek linii
- curve segment: Wykrzywia wybrany kawałek linii
- free point: Umożliwia przesuwanie punktów kontrolnych odcinka
- smooth point: Wygładza wybrany punkt poprzez ustawienie punktów kontrolnych naprzeciwko siebie
- symmetric point: Czyni wybrany punkt symetrycznym
- drag to move curve: Przeciągnij, by przemieścić krzywę
- drag to move line: Alt + przeciągnij, by przemieścić krzywę; kliknij dwa razy, by dodać punkt
- drag to move point: Kliknij i przeciągnij, by przemieścić punkt kontrolny; kliknij dwa razy, by go usunąć
-
- rotation: Symetria obrotowa (kołowa)
- reflection: Symetria osiowa (lustrzana)
- add symmetry: Dodaje symetrie do wybranego symbolu
- remove symmetry: Usuwa symetrię
- copies: Ilość odbić (razem z oryginałem)
-
- # Card select
- filename format: (Użyj {card.name} jako nazwy karty ; Format pliku jest ustalany na podstawie rozszerzenia)
-
-############################################################## Toolbar
-tool:
- undo: Cofnij
- redo: Powtórz
-
- cards tab: Karty
- set info tab: Info. o zestawie
- style tab: Styl
- keywords tab: Słowa kluczowe
- stats tab: Statystyki
- random pack tab: Losowe
-
- # symbol editor
- store symbol: Zachowaj
-
- grid: Siatka
- snap: Dopasuj
-
- select: Wybierz
- rotate: Obróć
- points: Punkty
- basic shapes: Kształty
- symmetry: Symetrie
- paint: Maluj
-
- merge: Scal
- subtract: Odejmij
- intersect: Przetnij
- difference: Różnica
- overlap: Nałóż
- border: Obrys
-
- ellipse: Elipsa
- rectangle: Prostokąt
- polygon: Wielokąt
- star: Gwiazda
-
- rotation: Obrót
- reflection: Odbicie
- add symmetry: Dodaj
- remove symmetry: Usuń
-
- line segment: Linia
- curve segment: Krzywa
- free point: Wolny
- smooth point: Gładki
- symmetric point: Symetryczny
-
-############################################################## Toolbar help text
-tooltip:
- cards tab:
- set info tab: Informacje o zetawie
- style tab: Styl karty
- keywords tab:
- stats tab:
- random pack tab: Losowe paczki
-
- new set: Nowy zestaw
- open set: Otwórz zestaw
- save set: Zapisz zestaw
- export: Eksportuj zestaw
-
- cut: Wytnij
- copy: Kopiuj
- paste: Wklej
- undo: Cofnij%s
- redo: Powtórz%s
-
- add card: Dodaj kartę
- remove card: Usuń wybraną kartę
- rotate card: Obróć kartę
-
- add keyword: Dodaj słowo kluczowe
- remove keyword: Usuń słowo kluczowe
-
- bold: Wytłuszczenie
- italic: Kursywa
- symbols: Symbole
- reminder text: Przypomnienie
-
- pie: Kołowy
- bar: Słupkowy
- stack: Słupkowy z podziałką
- scatter: Rozproszony
- scatter pie: Rozproszony kołowy
-
- cards tab:
- set info tab: Informacje o zestawie
- style tab: Styl karty
- keywords tab:
- stats tab:
-
- # symbol editor
- store symbol: Zapisz symbol w zestawie
-
- grid: Pokaż siatkę
- snap: Dopasuj do siatki
-
- select: Wybierz (F5)
- rotate: Obróc (F6)
- points: Punkty (F7)
- basic shapes: Kształty (F8)
- symmetry: Symetrie (F9)
- paint: Maluj po kształcie (F10)
-
- merge: Scal z kształtami poniżej
- subtract: Odejmij od kształtów poniżej
- intersect: Przetnij z kształtami poniżej
- difference: Znajdź różnicę z kształtami poniżej
- overlap: Nałóż na pozostałe kształty
- border: Narysuj jako obrys
-
- ellipse: Okrąg / Elipsa
- rectangle: Kwadrat / Prostokąt
- polygon: Wielokąt
- star: Gwiazda
-
- rotation: Symetria obrotowa (kołowa)
- reflection: Symetria osiowa (lustrzana)
- add symmetry: Dodaj symetrie do wybranego symbolu
- remove symmetry: Usuń symetrię
-
- line segment: Do linii
- curve segment: Do krzywej
- free point: Odblokuj punkt
- smooth point: Wygładź punkt
- symmetric point: Usymetrycznij punkt
-
-############################################################## Labels in the GUI
-label:
- # Cards tab
- card notes: Notatki do karty:
- # Keywords tab
- keyword: Słowo kluczowe
- match: Matches
- mode: Tryb
- uses: Użycia
- reminder: Tekst przypomnienia
- rules: Dodatkowe zasady
- standard keyword:
- To jest standardowe słowo kluczowe z %s, nie możesz go edytować.
- Jeśli zrobisz kopię tego słowa, Twoja wersja będzie miała pierwszeństwo.
-
- # Style tab
- styling options: Opcje styli
-
- # Random pack panel
- pack selection: Wybór paczek
- pack totals: Łącznie
- pack name: Nazwa paczki
- seed: Ziarno
- total cards: Ilość kart
-
- # Open dialogs
- all files Wszystkie pliki
-
- # Other set window dialogs
- save changes:
- Zestaw '%s' został zmieniony.
-
- Czy chcesz zachować zmiany?
-
- # New set window
- game type: Rodzaj &gry:
- style type: &Styl kart:
-
- stylesheet not found:
- Zestaw który próbujesz otworzyć używa stylu z arkusz "%s".
- Nie udało się znaleźć tego arkuszu, wybierz jakiś inny.
-
- # Preferences
- language: Język
- windows: Otwarte zestawy
- app language: Język interfejsu użytkownika:
- card display: Wyświetlanie kart
- zoom: &Przybliżenie:
- percent of normal: % normalnego rozmiaru
- external programs: Zewnętrzne programy
- apprentice: &Apprentice:
- apprentice exe: plik .exe Apprentice
- check at startup: Sprawdzaj uaktualnienia przy uruchomieniu
- checking requires internet:
- Szukanie nowszych wersji wymaga podłączenia do Internetu.
- Przy braku połączenia nie uda się sprawdzić uaktualnień.
-
- Przy sprawdzaniu uaktualnień nie są zbierane żadne informacje.
-
- # Column select
- select columns: Wybierz kolumny, który chcesz wyświetlać
- columns: Kolumny:
-
- # Card select / images export
- select cards: Karty do eksportowania
- selected card count: %s kart zostanie wyeksportowanych.
- select cards print: Wybierz karty, które chcesz wydrukować
- filename format: &Format:
- filename conflicts: Sposób rozwiązywania &konfliktów przy identycznych nazwach plików:
- export filenames: Nazwy plików
- filename is ignored: (nazwa pliku jest ignorowana)
-
- # apprentice export
- set code: &Kod zestawu:
- apprentice export cancelled: Anulowano eksportowanie do Apprentice
-
- # Html export
- html template: Szablon:
- html export options:Opcje eksportu
-
- # Image slicer
- original: Oryginał:
- result: Wynik:
- size: Rozmiar
- original size: &Oryginalny rozmiar
- size to fit: &Dopasuj rozmiar
- force to fit: &Wymuś dopasowanie
- custom size: Własny &rozmiar
- selection: Wybór
- selection left: &Lewo
- selection top: &Góra
- selection width: &Szerokość
- selection height: &Wysokość
- zoom: Zbliżenie
- fix aspect ratio: Zablokuj proporcje (szerokość/wysokość)
- zoom amount: Zbliżenie
- zoom amount x: Zbliżenie &X
- zoom amount y: Zbliżenie &Y
- zoom %: %
- filter: Filtr
- sharpen filter: &Wyostrz filtr
-
- # Auto replace
- auto match: Dopasuj
- auto replace: Zamień
-
- # Symbol editor
- sides: krawędzie
-
- # Packages window
- package name: Paczka
- package status: Stan
- package action: Czynność
-
- package conflicts: konfliktujące zmiany
- package modified: zmiany lokalne
- package updates: dostępne aktualizacje
- package installed: zainstalowana
- package installable: nie zainstalowana
- install package: zainstaluj
- reinstall package: zainstaluj ponownie
- upgrade package: aktualizuj
- remove package: usuń
-
- installed version: Zainstalowana wersja:
- installable version: Najnowsza wersja:
- installer size: Rozmiar:
- installer status: Stan:
- no version: -
-
-############################################################## Buttons/checkboxes/choices in the GUI
-button:
- # Editor
- edit symbol: Edytuj
- symbol gallery: Galeria
-
- # Style panel
- use for all cards: Użyj dla &wszystkich kart
- use custom styling options: Opcje &specyficzne dla tej konkretnej karty
-
- # Keywords panel
- insert parameter: Wstaw parametr...
- refer parameter: Użej parametru...
-
- # Random pack panel
- generate pack: &Generuj paczkę
- random seed: &Ziarno losowości
- fixed seed: &Ustalone ziarno
- add custom pack: Dodaj &własną paczkę...
-
- # Welcome
- new set: Nowy zestaw
- open set: Otwórz zestaw
- check updates: Sprawdź uaktualnienia
- last opened set: Poprzedni zestaw
-
- # Preferences
- open sets in new window: Otwieraj wszystkie zestawy w nowym oknie
- select: &Wybierz...
- browse: &Przeglądaj...
- high quality: &Rysowanie wysokiej jakości...
- show lines: Pokazuj &linie wokól pól
- show editing hints: Pokazuj ramki i podpowiedzi do &edytowania
- zoom export: Używaj ustawień przybliżenia i obrócenia przy eskportowaniu
- check now: Sprawdź &teraz
- always: Zawsze
- if internet connection exists: Jeśli jest połączenie
- never: Nigdy
-
- # Column select
- move up: Przesuń w &górę
- move down: Przesuń w &dół
- show: &Pokaż
- hide: &Schowaj
-
- # Card select
- export entire set: Cały zestaw
- export generated packs: Wygenerowane paczki
- export custom cards selection: Wybór ręczny
- select cards: &Wybierz karty...
- select all: Wybierz &wszystkie
- select none: W&ybierz żadne
- overwrite: Nadpisz stare pliki
- keep old: Zachowaj stare pliki
- number: Dodaj liczbę do nazwy pliku
- number overwrite: Dodaj liczbę do nazwy pliku, nadpisz stare eksporty
-
- # Auto replace
- use auto replace: Użyj automatycznego podmieniania
- add item: &Dodaj
- remove item: &Usuń
- defaults: Ustawienia &domyślne
- enabled: Włączone
- whole word: Dopasuj tylko całe słowa
-
- # Old style update checker (NOTE: this will be removed in a feature version)
- close: &Zamknij
-
- # Packages window
- keep package: &Nie zmieniaj
- don't install package: &Nie instaluj
- install package: &Instaluj
- upgrade package: &Uaktualnij
- reinstall package: Zainstaluj &ponownie
- remove package: &Usuń
- install group: &Instaluj wszystkie
- upgrade group: &Uaktualnij wszystkie
- remove group: &Usuń wszystkie
-
-############################################################## Titles in the GUI
-title:
- magic set editor: Magic Set Editor
- %s - magic set editor: %s - Magic Set Editor
- untitled: Bez tytułu
- about: O programie Magic Set Editor
- symbol editor: Edytor symboli
- # dialogs
- new set: Nowy zestaw
- open set: Otwórz zestaw
- save set: Zapisz zestaw jako
- save image: Zapisz obrazek
- updates available: Aktualizacje są dostępne
- save changes: Zapisać zmiany?
- select stylesheet: Wybierz styl kart
- #preferences
- preferences: Ustawienia
- global: Ogólne
- display: Wyświetlanie
- directories: Katalogi
- updates: Uaktualnienia
- update check: Wyszukiwanie nowszych wersji
- locate apprentice: Znajdź Apprentice
- # select
- select columns: Wybierz kolumny
- select cards: Wybierz karty
- select cards export:Wybierz karty do wyeksportowania
- # slice
- slice image: Tnij obrazek
- # pack
- custom pack: Rodzaj własnej paczki
- # print
- print preview: Podgląd wydruku
- # export
- export images: Eksportuj obrazki
- export cancelled: Anulowano eksportowanie
- export html: Eksportuj do strony HTML
- save html: Zapisz HTML
- # auto replace
- auto replaces: Auto-zamienianie
-
- # Package Update Window
- packages window: Menadżer paczek
- installing updates: Instalowanie uaktualnień
-
- cannot create file: Nie można utworzyć pliku
-
-############################################################## Action (undo/redo) names
-action:
- # List boxes
- add item: Dodaj %s
- remove item: Usuń %s
-
- # Text editor
- typing: Pisanie
- enter: Enter
- soft line break: Miękkie złamanie linii
- insert symbol: Wstawienie symbolu
- backspace: Kasuj
- delete: Kasuj
- cut: Wytnij
- paste: Wklej
- auto replace: Automatyczną zmianę
- correct: Poprawę pisowni
- # Choice/color editors
- change: Zmianę %s
-
- # Symbol Actions
- move: Przemieszczenie %s
- rotate: Obrót %s
- shear: Cięcie %s
- scale: Skalowanie %s
- duplicate: Duplikowanie %s
- reorder parts: Zmianę kolejności
- change combine mode:Zmianę trybu scalania
- change shape name: Zmianę nazwę kształtu
- group parts: Grupowanie
- ungroup parts: Odgrupowywania
-
- # Symbol Part Actions
- convert to line: Zmianę na linię
- convert to curve: Zmianę na krzywą
- lock point: Zablokuj punkt
- move handle: Przemieszczenie uchwytu
- move curve: Przmieszczenie krzywej
- add control point: Dodanie punktu kontrolnego
- delete point: Usunięcie punktu
- delete points: Usunięcie punktu
-
- # Symmetry
- add symmetry: Dodanie symetrii
- #remove symmetry: Usunięcie symetrii
- move symmetry center: Przesunięcie środka symetrii
- move symmetry handle: Zmianę orientacji symetrii
- change symmetry type: Zmianę rodzaju symetrii
- change symmetry copies: Ilość odbić
-
-############################################################## Error messages
-error:
- # File related
- file not found: Nie znaleziono pliku: '%s' w paczce '%s'
- file not found package like:
- Nie znaleziono pliku: '%s' w paczce '%s'
- Jeśli próbujesz otworzyć plik z innej paczki, użyj "/paczka/plik"
- file parse error:
- Błąd parsowania pliku: '%s'
- %s
- package not found: Nie znaleziono paczki: '%s'
- package out of date: Paczka '%s' (w wersji %s) jest przestarzała, potrzebna jest wersja %s.
- package too new: Paczka '%s' (w wersji %s) nie jest kompatybilna z wersją %s, wymaganą przez '%s'
- unable to open output file: Błąd przy zapisywaniu: nie udało się otworzyć docelowego pliku
- unable to store file: Błąd przy zapisywaniu: nie udało się zapisać docelowego pliku
- dependency not given:
- Paczka '%s' używa plików z paczki '%s', ale podaje jej w liście zależności.
- Można to naprawić przez dodanie:
- depends on: %s %s
-
- # Script stuff
- has no member: %s nie posiada pola '%s'
- can't convert: Nie można wykonać konwersji z %s do %s
- has no member value: Napis "%s" nie posiada pola'%s'
- can't convert value: Nie można wykonać konwersji "%s" z %s do %s
- unsupported format: Błędny format napisu: '%s'
- in function:
- %s
- w funkcji %s
- in parameter:
- Parametr %s: %s
- in keyword reminder:
- %s
- w tekscie przypomnienia słowa kluczowego: '%s'
-
- # Image stuff
- coordinates for blending overlap: Współrzędne scalania (blending) nachodzą na siebie
- images used for blending must have the same size: Obrazy użyte do scalania (blending) muszą mieć ten sam rozmiar
-
- # Error from files
- no game specified: Nie podano gry dla %s
- no stylesheet specified for the set: Nie podano arkusza stylu dla zestawu
- stylesheet and set refer to different game:
- arkusz stylu i plik zestawu nie odwołują się do tej samej gry; to jest błąd w pliku stylu
- unsupported field type: Niewspierany typ pola (field): '%s'
- unsupported fill type: Niewspierany typ wypełnienia (fill): '%s'
- unrecognized value: Nierozpoznana wartość: '%s'
- expected key: Oczekiwano wpisu: '%s'
- aborting parsing: Napotkano krytyczne błędy, koniec parsowania.
- newer version:
- %s
- Ten plik został wykonany nowszą wersją programu Magic Set Editor (%s)
- Kiedy go otworzysz, niektóre cechy tego pliku mogą zostać utracone.
- Zaleca się ściągnięcie najnowszej wersji MSE.
- Odwiedź http:://magicseteditor.sourceforge.net/
- word list type not found: "%s" (z etykiety ) nie jest znanym typem listy słów (word list)
- pack item not found: Nie znaleziono elementu paczki "%s" (z typu paczki)
- pack type not found: Nie znaleziono typu paczki "%s" (z typu paczki)
-
- # Update checking
- checking updates failed: Nie udało się sprawdzić uaktualnień.
- no updates: Brak nowych wersji.
-
- # Stats panel
- dimension not found: Nie znaleziono wymiaru '%s' w statystykach
-
- # Random packs
- pack type duplicate name:
- Już istnieje paczka o nazwie '%s'.
- Wybierz inną nazwę.
-
- # Package update window
-# checking updates: Sprawdzanie uaktualnień
- can't download installer:
- Nie udało się pobrać instalatora dla paczki %s z %s.
- Nic nie zostało zainstalowane.
-
- downloading updates: Pobieranie paczek (%d z %d)
- installing updates: Uaktualnianie paczek (%d z %d)
-
- remove packages:
- To spowoduje usunięcie %s paczek, czy chcesz kontynuować?
- remove packages modified:
- To usunie %s paczek, %s z nich zostały zmodyfikowane po zainstalowaniu.
- Po usunięciu zmiany zostaną utracone - nie mogą być cofnięte.
-
- Czy chcesz kontynuować?
- install packages successful: Zainstalowano %s paczkę (paczki).
- remove packages successful: Usunięto %s paczkę (paczki).
- change packages successful: Zmieniono %s paczkę (paczki).
-
- cannot create file: Nie udało się utworzyć pliku '%s', kontynuować?
-
-############################################################## Types used in scripts / shape names
-type:
- function: funkcja (function)
- collection: kolekcja (collection)
- collection of: kolekcja (collection) obiektów typu %s
- object: obiekt (object)
- double: liczba rzeczywista (real number)
- integer: liczba całkowita (integer number)
- string: napis (string)
- boolean: wartość logiczna (boolean)
- color: kolor (color)
- image: obraz (image)
- date: data (date)
- nil: nic (nothing)
-
- # Object types
- package: paczka (package)
- locale: tłumaczenie (translation)
- game: gra (game)
- set: zestaw (set)
- stylesheet: arkusz stylów (stylesheet)
- export template:szablon eksportu (export template)
- symbol: symbol (symbol)
- card: karta (card)
- cards: karty (cards)
- field: pole (field)
- style: styl (style)
- value: wartość (value)
- keyword: słowo kluczowe (keyword)
- keywords: słowa kluczowe (keywords)
- pack: rodzaj paczki (pack type)
-
- # Symbol editor shapes
- shape: kształt
- shapes: kształty
- circle: okrąg
- ellipse: elipsa
- square: kwadrat
- rectangle: prostokąt
- triangle: trójkąt
- rhombus: romb
- pentagon: pięciokąt
- hexagon: sześciokąt
- polygon: wielokąt
- star: gwiazda
-
- rotation: obrót
- reflection: odbicie
- group: grupa
-
- point: punkt
- points: punkty
-
-############################################################## Magic
-package:
- magic.mse-game:
- # Card fields
- name: Name
- cc: CC
- type: Type
- p/t: P/T
- rarity: Rarity
- card name: Card Name
-
- # Set info
-
- # descriptions/help text
-
- magic-mana-*.mse-symbol-font:
- # note: reminder/shortcut must start with a space, otherwise it is used as a shortcut
- # so typing T *anywhere* would insert a symbol (which would be bad)
- menu item T: &Tap symbol T
- menu item Q: &Untap symbol Q
- menu item W: &White mana W
- menu item U: Bl&ue mana U
- menu item B: &Black mana B
- menu item R: &Red mana R
- menu item G: &Green mana G
- menu item S: &Snow mana S
- menu item X: Variable mana &X X
- menu item Y: Variable mana &Y Y
- menu item Z: Variable mana &Z Z
- menu item I: &Infinite mana I
- menu item colorless: &Colorless mana...
- title colorless: Colorless mana
- message colorless: Enter amount of colorless mana:
- menu item half: &Half mana
- menu item |W: &White |W
- menu item |U: Bl&ue |U
- menu item |B: &Black |B
- menu item |R: &Red |R
- menu item |G: &Green |G
- menu item |S: &Snow |S
- menu item 1/2: &Colorless 1/2
- menu item hybrid: H&ybrid mana (two color)
- menu item W/U: White/Blue mana W/U
- menu item U/B: Blue/Black mana U/B
- menu item B/R: Black/Red mana B/R
- menu item R/G: Red/Green mana R/G
- menu item G/W: Green/White mana G/W
- menu item W/B: White/Black mana W/B
- menu item U/R: Blue/Red mana U/R
- menu item B/G: Black/Green mana B/G
- menu item R/W: Red/White mana R/W
- menu item G/U: Green/Blue mana G/U
- menu item hybrid 3: H&ybrid mana (three color)
- menu item W/U/B: White/Blue/Black mana W/U/B
- menu item U/B/R: Blue/Black/Red mana U/B/R
- menu item B/R/G: Black/Red/Green mana B/R/G
- menu item R/G/W: Red/Green/White mana R/G/W
- menu item G/W/U: Green/White/Blue mana G/W/U
- menu item W/B/R: White/Black/Red mana W/B/R
- menu item U/R/G: Blue/Red/Green mana U/R/G
- menu item B/G/W: Black/Green/White mana B/G/W
- menu item R/W/U: Red/White/Blue mana R/W/U
- menu item G/U/B: Green/Blue/Black mana G/U/B
-
+mse version: 0.3.8
+installer group: translations/Polski
+full name: Polski
+version: 2009-03-05
+icon: pl.png
+
+# Base translation: Liosan, 03.2009; Licenced under GFDL where applicable
+
+############################################################## Menu items
+menu:
+ file: &Plik
+ new set: &Nowy... Ctrl+N
+ open set: &Otwórz... Ctrl+O
+ save set: &Zapisz Ctrl+S
+ save set as: Zapisz &Jako... F12
+ export: &Eksportuj
+ export html: &HTML...
+ export image: &Obraz Karty...
+ export images: Wszystkie o&brazy kart...
+ export apprentice: &Apprentice...
+ export mws: Magic &Workstation...
+ check updates: Sprawdź akt&ualizacje...
+ print preview: &Podgląd wydruku...
+ print: &Drukuj... Ctrl+P
+ reload data: Przeładuj dane Ctrl+F5
+ exit: W&yjscie Alt+F4
+
+ edit: &Edycja
+ undo: &Cofnij%s Ctrl+Z
+ redo: &Powtórz%s Ctrl+Y
+ cut: Wy&tnij Ctrl+X
+ copy: &Kopiuj Ctrl+C
+ paste: &Wklej Ctrl+V
+ find: &Szukaj Ctrl+F
+ find next: Znajdź &Następny F3
+ replace: &Zamień Ctrl+H
+ auto replace: Auto Za&mień...
+ preferences: &Ustawienia...
+
+ cards: &Karty
+ previous card: Wybierz &Poprzednią Kartę PgUp
+ next card: Wybierz &Następną Kartę PgDn
+ add card: &Dodaj Kartę Ctrl+Enter
+ add cards: Dodaj &Wiele Kart...
+ remove card: &Usuń Wybraną Kartę
+ orientation: &Obrócenie
+ rotate 0: &Normalne
+ rotate 270: 90° w &Prawo
+ rotate 90: 90° w &Lewo
+ rotate 180: 180°, Do góry &nogami
+ card list columns: Kolumny &Listy Kart...
+
+ keywords: &Słowa Kluczowe
+ previous keyword: Wybierz &Poprzednie Słowo Kluczowe PgUp
+ next keyword: Wybierz &Następne Słowo Kluczowe PgDn
+ add keyword: &Dodaj Słowo Kluczowe Ctrl+Enter
+ remove keyword: &Usuń Słowo Kluczowe Del
+
+ format: &Format
+ bold: Wy&tłuszczony Ctrl+B
+ italic: &Kursywa Ctrl+I
+ symbols: &Symbole Ctrl+M
+ reminder text: &Tekst przypomnienia Ctrl+R
+ insert symbol: &Wstaw symbol
+ # spelling
+ no spelling suggestions: (brak sugestii)
+
+ graph: &Wykres
+ pie: &Kołowy 1
+ bar: &Słupkowy 2
+ stack: Słupkowy z &podziałką 3
+ scatter: &Rozproszony 4
+ scatter pie: Ro&zproszony Kołowy 5
+
+ window: &Okno
+ new window: &Nowe okno
+ cards tab: &Karty F5
+ set info tab: &Informacje o Zestawie F6
+ style tab: St&yl F7
+ keywords tab: &Słowa Kluczowe F8
+ stats tab: S&tatystyki F9
+ random pack tab: &Losowe paczki
+
+ help: &Pomoc
+ index: Spis &treści... F1
+ website: &Strona internetowa...
+ about: &O programie Magic Set Editor...
+
+ # symbol editor
+
+ new symbol: &Nowy... Ctrl+N
+ open symbol: &Otwórz... Ctrl+O
+ save symbol: &Zapisz Ctrl+S
+ save symbol as: Zapisz &Jako... F12
+ store symbol: Za&chowaj Ctrl+Enter
+ close symbol editor:Zamknij Alt+F4
+
+ duplicate: &Duplikuj Ctrl+D
+ group: &Grupuj Ctrl+G
+ ungroup: &Odgrupuj Ctrl+U
+
+ tool: &Narzędzie
+ select: &Wybór F5
+ rotate: &Obrót F6
+ points: &Punkty F7
+ basic shapes: Podstawowe &Kształty F8
+ symmetry: S&ymetria F9
+ paint: &Maluj F10
+
+############################################################## Menu help texts
+help:
+ welcome: Witaj w programie Magic Set Editor
+
+ file:
+ new set: Utwórz nowy zestaw
+ open set: Otwórz istniejący zestaw
+ last opened set: Otwórz '%s'
+ save set: Zapisz zestaw
+ save set as: Zapisz zestaw pod nową nazwą
+ export: Eksportuj zestaw...
+ export html: Eksportuj zestaw jako stronę internetową
+ export image: Eksportuj wybraną kartę jako obraz
+ export images: Eksportuj wszystkie karty jako obrazy
+ export apprentice: Eksportuj zestaw tak, by dało się grać w programie Apprentice
+ export mws: Eksportuj zestaw tak, by dało się grać w programie Magic Workstation
+ check updates: Instaluj/uaktualnij dane programu.
+ print preview: Pokaż karty tak, jak zostaną wydrukowane.
+ print: Drukuj karty z tego zestawu.
+ reload data: Przeładuj wszystkie dane szablonów (gry oraz stylu), a także dane zestawu.
+ exit: Opuść program MSE; pojawi się prośba o zapisanie zmian
+
+ edit:
+ undo: Cofnij poprzednią czynność
+ redo: Powtórz poprzednią czynność
+ cut: Wytnij zaznaczony tekst do schowka
+ cut card: Wytnij wybraną kartę do schowka
+ cut keyword: Wytnij wybrane słowo kluczowe do schowka
+ copy: Kopiuj zaznaczony tekst do schowka
+ copy card: Kopiuj zaznaczoną kartę do schowka
+ copy keyword: Kopiuj zaznaczone słowo kluczowe do schowka
+ paste: Wklej tekst ze schowka
+ paste card: Wklej kartę ze schowka
+ paste keyword: Wklej słowo kluczowe ze schowka
+ find: Przeszukaj teksty kart
+ find next: Znajdź następne wystąpienie
+ replace: Zastąp w tekstach kart
+ auto replace: Co powinno być automatycznie zastąpione?
+ preferences: Zmień ustawienia programu Magic Set Editor
+
+ cards:
+ previous card: Wybierz poprzednią kartę z listy
+ next card: Wybierz następną kartę z listy
+ add card: Dodaj nową, pustą kartę do zestawu
+ add cards: Dodaj wiele kart do zestawu
+ remove card: Usuń wybraną kartę z zestawu
+ orientation: Obróć zaznaczoną kartę
+ rotate card: Obróc obrazek kartę o 90° zgodnie z ruchem wskazówek zegara
+ rotate 0: Obróc kartę "do góry głową"
+ rotate 270: Obróc kartę zgodnie z ruchem wskazówek zegara
+ rotate 90: Obróc kartę przeciwnie do ruchu wskazówek zegara
+ rotate 180: Obróc kartę "do góry nogami"
+ card list columns: Wybierz kolumny listy kart i ich kolejność.
+
+ keywords:
+ previous keyword: Wybiera poprzednie słowo kluczowe z listy
+ next keyword: Zaznacza poprzednie słowo kluczowe na liście
+ add keyword: Dodaje nowe słowo kluczowe do zestawu
+ remove keyword: Usuwa wybrane słowo kluczowe do zestawu
+
+ format:
+ bold: Pogrubia zaznaczony tekst
+ italic: Pochyla zaznaczony tekst
+ symbols: Rysuje zaznaczony tekst z symbolami
+ reminder text: Pokazuj tekst przypomnienia dla wybranego słowa kluczowego
+ no spelling suggestions: Nie ma sugestii co do sposobu korekty tego słowa.
+
+ graph:
+ pie: Wykres kołowy, wielkość wycinka jest proporcjonalna do ilości kart
+ bar: Wykres słupkowy, wysokość słupka jest proporcjonalna do ilości kart
+ stack: Wykres słupkowy z podziałką
+ scatter: Wykres rozproszony, wielkość kółka jest proporcjonalna do ilości kart
+ scatter pie: Wykres rozproszony kołowy - wykres rozproszony, gdzie każde kółko jest małym wykresem kołowym
+
+ window:
+ new window: Otwiera ten sam zestaw w nowym oknie
+ cards tab: Edytuj karty w tym zestawie
+ set info tab: Edytuj informacje o zestawie, jego twórcy itp.
+ style tab: Zmieniaj style kart
+ keywords tab: Dodawaj słowa kluczowe do zestawu
+ stats tab: Wyświetl statystyki zestawu
+ random pack tab: Wypróbuj zestaw przez generowanie losowych paczek kart
+
+ help:
+ index:
+ website:
+ about:
+
+ # Cards panel
+ collapse notes: Schowaj panel z notatkami
+ expand notes: Pokaż panel z notatkami
+ # Random pack panel
+ random seed: Za każdym razem zostanie wygenerowana inna paczka.
+ fixed seed: Używanie tego samego ziarna daje te same 'losowe' paczki.
+ seed: Ziarno dla generatora liczb losowych. Używanie tego samego ziarna daje te same 'losowe' paczki.
+ edit pack type: Kliknij dwa razy by zmienić rodzaj paczki
+ number of packs: Ilość %s do wygenerowania
+
+ # Preferences
+ app language:
+ Uwaga: musisz zrestartować program, aby wprowadzić zmiany w życie.
+ zoom export:
+ (Kiedy ta opcja jest wyłączona, karty są
+ eksportowane i kopiowane w normalnym rozmiarze i obróceniu)
+
+ # apprentice export
+ set code: Kod zestawu to dwuliterowy skrót, którego Apprentice używa by odwoływać się do zestawu.
+
+ # Symbol editor
+ new symbol: Utwórz nowy symbol
+ open symbol: Otwórz symbol
+ save symbol: Zapisz symbol
+ save symbol as: Zapisz symbol w innym pliku
+ store symbol: Zachowaj symbol w zestawie
+ close symbol editor:Zamyka edytor symboli
+
+ duplicate: Tworzy kopie zaznaczonych kształtów
+ group: Grupuje zaznaczone kształty razem
+ ungroup: Rozbija zaznaczoną grupę kształtów
+
+ grid: Pokaż siatkę
+ snap: Wyrównaj punkty i kształty do siatki
+
+ tool:
+ select: Zaznacz i przesuwaj kształty
+ rotate: Obracaj i tnij kształty
+ points: Edytuj punkty kontrolne kształtu
+ basic shapes: Rysuj proste kształty - prostokąty, okręgi itp.
+ symmetry: Dodaj symetrie do kształtu
+ paint: Rysuj po kształcie pędzlem
+
+ select editor:
+ merge: Scala zaznaczony kształt z kształtami pod nim
+ subtract: Odejmuje zaznaczony kształt od kształtów pod nim, zostawia jedynie obszar nie będący częścią zaznaczonego kształtu
+ intersect: Przecina zaznaczony kształt z kształtami pod nim, zostawia jedynie obszar będący częścią wspólną
+ difference: Różnicuje zaznaczony kształt od kształtów pod nim, zostawia jedynie obszar nie będący częścią żadnego kształtu
+ overlap: Umieść zaznaczony kształt ponad kształtami znajdującymi się pod nim
+ border: Rysuj ten kształt jako brzeg
+
+ drag to shear: Przeciągnij, by przyciąć zaznaczone %s
+ drag to rotate: Przeciągnij, by obrócić zaznaczone %s, przytrzymanie Ctrl obraca tylko o wielokrotności 15°
+ drag to resize: Przeciągnij, by rozciągnać zaznaczone %s, przytrzymanie Ctrl ograniczna rozmiar
+ click to select shape: Kliknij by zaznaczyć kształt, przeciągnij by przemieścić kształt, kliknij dwa razy by edytować kształt
+
+ ellipse: Rysuj okręgi i elipsy
+ rectangle: Rysuj kwadraty i prostokąty
+ polygon: Rysuj trójkąty, pięciokąty i inne regularne wielokąty
+ star: Rysuj gwiazdy
+ sides: Liczba boków wielokąta bądź gwiazdy
+ drag to draw shape: Przeciągnij by zmienić rozmiar, Ctrl ogranicza rozmiar, Shift wyśrodkowuje kształt
+ draw ellipse: Kliknij i przeciągnij, by narysować elipsę, przytrzymaj Ctrl by rysować tylko okręgi
+ draw rectangle: Kliknij i przeciągnij, by narysować prostokąt, przytrzymaj Ctrl by rysować tylko kwadraty
+ draw polygon: Kliknij i przeciągnij, by narysować wielokąt
+ draw star: Kliknij i przeciągnij, by narysować gwiazdę
+
+ line segment: Prostuje wybrany kawałek linii
+ curve segment: Wykrzywia wybrany kawałek linii
+ free point: Umożliwia przesuwanie punktów kontrolnych odcinka
+ smooth point: Wygładza wybrany punkt poprzez ustawienie punktów kontrolnych naprzeciwko siebie
+ symmetric point: Czyni wybrany punkt symetrycznym
+ drag to move curve: Przeciągnij, by przemieścić krzywę
+ drag to move line: Alt + przeciągnij, by przemieścić krzywę; kliknij dwa razy, by dodać punkt
+ drag to move point: Kliknij i przeciągnij, by przemieścić punkt kontrolny; kliknij dwa razy, by go usunąć
+
+ rotation: Symetria obrotowa (kołowa)
+ reflection: Symetria osiowa (lustrzana)
+ add symmetry: Dodaje symetrie do wybranego symbolu
+ remove symmetry: Usuwa symetrię
+ copies: Ilość odbić (razem z oryginałem)
+
+ # Card select
+ filename format: (Użyj {card.name} jako nazwy karty ; Format pliku jest ustalany na podstawie rozszerzenia)
+
+############################################################## Toolbar
+tool:
+ undo: Cofnij
+ redo: Powtórz
+
+ cards tab: Karty
+ set info tab: Info. o zestawie
+ style tab: Styl
+ keywords tab: Słowa kluczowe
+ stats tab: Statystyki
+ random pack tab: Losowe
+
+ # symbol editor
+ store symbol: Zachowaj
+
+ grid: Siatka
+ snap: Dopasuj
+
+ select: Wybierz
+ rotate: Obróć
+ points: Punkty
+ basic shapes: Kształty
+ symmetry: Symetrie
+ paint: Maluj
+
+ merge: Scal
+ subtract: Odejmij
+ intersect: Przetnij
+ difference: Różnica
+ overlap: Nałóż
+ border: Obrys
+
+ ellipse: Elipsa
+ rectangle: Prostokąt
+ polygon: Wielokąt
+ star: Gwiazda
+
+ rotation: Obrót
+ reflection: Odbicie
+ add symmetry: Dodaj
+ remove symmetry: Usuń
+
+ line segment: Linia
+ curve segment: Krzywa
+ free point: Wolny
+ smooth point: Gładki
+ symmetric point: Symetryczny
+
+############################################################## Toolbar help text
+tooltip:
+ cards tab:
+ set info tab: Informacje o zetawie
+ style tab: Styl karty
+ keywords tab:
+ stats tab:
+ random pack tab: Losowe paczki
+
+ new set: Nowy zestaw
+ open set: Otwórz zestaw
+ save set: Zapisz zestaw
+ export: Eksportuj zestaw
+
+ cut: Wytnij
+ copy: Kopiuj
+ paste: Wklej
+ undo: Cofnij%s
+ redo: Powtórz%s
+
+ add card: Dodaj kartę
+ remove card: Usuń wybraną kartę
+ rotate card: Obróć kartę
+
+ add keyword: Dodaj słowo kluczowe
+ remove keyword: Usuń słowo kluczowe
+
+ bold: Wytłuszczenie
+ italic: Kursywa
+ symbols: Symbole
+ reminder text: Przypomnienie
+
+ pie: Kołowy
+ bar: Słupkowy
+ stack: Słupkowy z podziałką
+ scatter: Rozproszony
+ scatter pie: Rozproszony kołowy
+
+ cards tab:
+ set info tab: Informacje o zestawie
+ style tab: Styl karty
+ keywords tab:
+ stats tab:
+
+ # symbol editor
+ store symbol: Zapisz symbol w zestawie
+
+ grid: Pokaż siatkę
+ snap: Dopasuj do siatki
+
+ select: Wybierz (F5)
+ rotate: Obróc (F6)
+ points: Punkty (F7)
+ basic shapes: Kształty (F8)
+ symmetry: Symetrie (F9)
+ paint: Maluj po kształcie (F10)
+
+ merge: Scal z kształtami poniżej
+ subtract: Odejmij od kształtów poniżej
+ intersect: Przetnij z kształtami poniżej
+ difference: Znajdź różnicę z kształtami poniżej
+ overlap: Nałóż na pozostałe kształty
+ border: Narysuj jako obrys
+
+ ellipse: Okrąg / Elipsa
+ rectangle: Kwadrat / Prostokąt
+ polygon: Wielokąt
+ star: Gwiazda
+
+ rotation: Symetria obrotowa (kołowa)
+ reflection: Symetria osiowa (lustrzana)
+ add symmetry: Dodaj symetrie do wybranego symbolu
+ remove symmetry: Usuń symetrię
+
+ line segment: Do linii
+ curve segment: Do krzywej
+ free point: Odblokuj punkt
+ smooth point: Wygładź punkt
+ symmetric point: Usymetrycznij punkt
+
+############################################################## Labels in the GUI
+label:
+ # Cards tab
+ card notes: Notatki do karty:
+ # Keywords tab
+ keyword: Słowo kluczowe
+ match: Matches
+ mode: Tryb
+ uses: Użycia
+ reminder: Tekst przypomnienia
+ rules: Dodatkowe zasady
+ standard keyword:
+ To jest standardowe słowo kluczowe z %s, nie możesz go edytować.
+ Jeśli zrobisz kopię tego słowa, Twoja wersja będzie miała pierwszeństwo.
+
+ # Style tab
+ styling options: Opcje styli
+
+ # Random pack panel
+ pack selection: Wybór paczek
+ pack totals: Łącznie
+ pack name: Nazwa paczki
+ seed: Ziarno
+ total cards: Ilość kart
+
+ # Open dialogs
+ all files Wszystkie pliki
+
+ # Other set window dialogs
+ save changes:
+ Zestaw '%s' został zmieniony.
+
+ Czy chcesz zachować zmiany?
+
+ # New set window
+ game type: Rodzaj &gry:
+ style type: &Styl kart:
+
+ stylesheet not found:
+ Zestaw który próbujesz otworzyć używa stylu z arkusz "%s".
+ Nie udało się znaleźć tego arkuszu, wybierz jakiś inny.
+
+ # Preferences
+ language: Język
+ windows: Otwarte zestawy
+ app language: Język interfejsu użytkownika:
+ card display: Wyświetlanie kart
+ zoom: &Przybliżenie:
+ percent of normal: % normalnego rozmiaru
+ external programs: Zewnętrzne programy
+ apprentice: &Apprentice:
+ apprentice exe: plik .exe Apprentice
+ check at startup: Sprawdzaj uaktualnienia przy uruchomieniu
+ checking requires internet:
+ Szukanie nowszych wersji wymaga podłączenia do Internetu.
+ Przy braku połączenia nie uda się sprawdzić uaktualnień.
+
+ Przy sprawdzaniu uaktualnień nie są zbierane żadne informacje.
+
+ # Column select
+ select columns: Wybierz kolumny, który chcesz wyświetlać
+ columns: Kolumny:
+
+ # Card select / images export
+ select cards: Karty do eksportowania
+ selected card count: %s kart zostanie wyeksportowanych.
+ select cards print: Wybierz karty, które chcesz wydrukować
+ filename format: &Format:
+ filename conflicts: Sposób rozwiązywania &konfliktów przy identycznych nazwach plików:
+ export filenames: Nazwy plików
+ filename is ignored: (nazwa pliku jest ignorowana)
+
+ # apprentice export
+ set code: &Kod zestawu:
+ apprentice export cancelled: Anulowano eksportowanie do Apprentice
+
+ # Html export
+ html template: Szablon:
+ html export options:Opcje eksportu
+
+ # Image slicer
+ original: Oryginał:
+ result: Wynik:
+ size: Rozmiar
+ original size: &Oryginalny rozmiar
+ size to fit: &Dopasuj rozmiar
+ force to fit: &Wymuś dopasowanie
+ custom size: Własny &rozmiar
+ selection: Wybór
+ selection left: &Lewo
+ selection top: &Góra
+ selection width: &Szerokość
+ selection height: &Wysokość
+ zoom: Zbliżenie
+ fix aspect ratio: Zablokuj proporcje (szerokość/wysokość)
+ zoom amount: Zbliżenie
+ zoom amount x: Zbliżenie &X
+ zoom amount y: Zbliżenie &Y
+ zoom %: %
+ filter: Filtr
+ sharpen filter: &Wyostrz filtr
+
+ # Auto replace
+ auto match: Dopasuj
+ auto replace: Zamień
+
+ # Symbol editor
+ sides: krawędzie
+
+ # Packages window
+ package name: Paczka
+ package status: Stan
+ package action: Czynność
+
+ package conflicts: konfliktujące zmiany
+ package modified: zmiany lokalne
+ package updates: dostępne aktualizacje
+ package installed: zainstalowana
+ package installable: nie zainstalowana
+ install package: zainstaluj
+ reinstall package: zainstaluj ponownie
+ upgrade package: aktualizuj
+ remove package: usuń
+
+ installed version: Zainstalowana wersja:
+ installable version: Najnowsza wersja:
+ installer size: Rozmiar:
+ installer status: Stan:
+ no version: -
+
+############################################################## Buttons/checkboxes/choices in the GUI
+button:
+ # Editor
+ edit symbol: Edytuj
+ symbol gallery: Galeria
+
+ # Style panel
+ use for all cards: Użyj dla &wszystkich kart
+ use custom styling options: Opcje &specyficzne dla tej konkretnej karty
+
+ # Keywords panel
+ insert parameter: Wstaw parametr...
+ refer parameter: Użej parametru...
+
+ # Random pack panel
+ generate pack: &Generuj paczkę
+ random seed: &Ziarno losowości
+ fixed seed: &Ustalone ziarno
+ add custom pack: Dodaj &własną paczkę...
+
+ # Welcome
+ new set: Nowy zestaw
+ open set: Otwórz zestaw
+ check updates: Sprawdź uaktualnienia
+ last opened set: Poprzedni zestaw
+
+ # Preferences
+ open sets in new window: Otwieraj wszystkie zestawy w nowym oknie
+ select: &Wybierz...
+ browse: &Przeglądaj...
+ high quality: &Rysowanie wysokiej jakości...
+ show lines: Pokazuj &linie wokól pól
+ show editing hints: Pokazuj ramki i podpowiedzi do &edytowania
+ zoom export: Używaj ustawień przybliżenia i obrócenia przy eskportowaniu
+ check now: Sprawdź &teraz
+ always: Zawsze
+ if internet connection exists: Jeśli jest połączenie
+ never: Nigdy
+
+ # Column select
+ move up: Przesuń w &górę
+ move down: Przesuń w &dół
+ show: &Pokaż
+ hide: &Schowaj
+
+ # Card select
+ export entire set: Cały zestaw
+ export generated packs: Wygenerowane paczki
+ export custom cards selection: Wybór ręczny
+ select cards: &Wybierz karty...
+ select all: Wybierz &wszystkie
+ select none: W&ybierz żadne
+ overwrite: Nadpisz stare pliki
+ keep old: Zachowaj stare pliki
+ number: Dodaj liczbę do nazwy pliku
+ number overwrite: Dodaj liczbę do nazwy pliku, nadpisz stare eksporty
+
+ # Auto replace
+ use auto replace: Użyj automatycznego podmieniania
+ add item: &Dodaj
+ remove item: &Usuń
+ defaults: Ustawienia &domyślne
+ enabled: Włączone
+ whole word: Dopasuj tylko całe słowa
+
+ # Old style update checker (NOTE: this will be removed in a feature version)
+ close: &Zamknij
+
+ # Packages window
+ keep package: &Nie zmieniaj
+ don't install package: &Nie instaluj
+ install package: &Instaluj
+ upgrade package: &Uaktualnij
+ reinstall package: Zainstaluj &ponownie
+ remove package: &Usuń
+ install group: &Instaluj wszystkie
+ upgrade group: &Uaktualnij wszystkie
+ remove group: &Usuń wszystkie
+
+############################################################## Titles in the GUI
+title:
+ magic set editor: Magic Set Editor
+ %s - magic set editor: %s - Magic Set Editor
+ untitled: Bez tytułu
+ about: O programie Magic Set Editor
+ symbol editor: Edytor symboli
+ # dialogs
+ new set: Nowy zestaw
+ open set: Otwórz zestaw
+ save set: Zapisz zestaw jako
+ save image: Zapisz obrazek
+ updates available: Aktualizacje są dostępne
+ save changes: Zapisać zmiany?
+ select stylesheet: Wybierz styl kart
+ #preferences
+ preferences: Ustawienia
+ global: Ogólne
+ display: Wyświetlanie
+ directories: Katalogi
+ updates: Uaktualnienia
+ update check: Wyszukiwanie nowszych wersji
+ locate apprentice: Znajdź Apprentice
+ # select
+ select columns: Wybierz kolumny
+ select cards: Wybierz karty
+ select cards export:Wybierz karty do wyeksportowania
+ # slice
+ slice image: Tnij obrazek
+ # pack
+ custom pack: Rodzaj własnej paczki
+ # print
+ print preview: Podgląd wydruku
+ # export
+ export images: Eksportuj obrazki
+ export cancelled: Anulowano eksportowanie
+ export html: Eksportuj do strony HTML
+ save html: Zapisz HTML
+ # auto replace
+ auto replaces: Auto-zamienianie
+
+ # Package Update Window
+ packages window: Menadżer paczek
+ installing updates: Instalowanie uaktualnień
+
+ cannot create file: Nie można utworzyć pliku
+
+############################################################## Action (undo/redo) names
+action:
+ # List boxes
+ add item: Dodaj %s
+ remove item: Usuń %s
+
+ # Text editor
+ typing: Pisanie
+ enter: Enter
+ soft line break: Miękkie złamanie linii
+ insert symbol: Wstawienie symbolu
+ backspace: Kasuj
+ delete: Kasuj
+ cut: Wytnij
+ paste: Wklej
+ auto replace: Automatyczną zmianę
+ correct: Poprawę pisowni
+ # Choice/color editors
+ change: Zmianę %s
+
+ # Symbol Actions
+ move: Przemieszczenie %s
+ rotate: Obrót %s
+ shear: Cięcie %s
+ scale: Skalowanie %s
+ duplicate: Duplikowanie %s
+ reorder parts: Zmianę kolejności
+ change combine mode:Zmianę trybu scalania
+ change shape name: Zmianę nazwę kształtu
+ group parts: Grupowanie
+ ungroup parts: Odgrupowywania
+
+ # Symbol Part Actions
+ convert to line: Zmianę na linię
+ convert to curve: Zmianę na krzywą
+ lock point: Zablokuj punkt
+ move handle: Przemieszczenie uchwytu
+ move curve: Przmieszczenie krzywej
+ add control point: Dodanie punktu kontrolnego
+ delete point: Usunięcie punktu
+ delete points: Usunięcie punktu
+
+ # Symmetry
+ add symmetry: Dodanie symetrii
+ #remove symmetry: Usunięcie symetrii
+ move symmetry center: Przesunięcie środka symetrii
+ move symmetry handle: Zmianę orientacji symetrii
+ change symmetry type: Zmianę rodzaju symetrii
+ change symmetry copies: Ilość odbić
+
+############################################################## Error messages
+error:
+ # File related
+ file not found: Nie znaleziono pliku: '%s' w paczce '%s'
+ file not found package like:
+ Nie znaleziono pliku: '%s' w paczce '%s'
+ Jeśli próbujesz otworzyć plik z innej paczki, użyj "/paczka/plik"
+ file parse error:
+ Błąd parsowania pliku: '%s'
+ %s
+ package not found: Nie znaleziono paczki: '%s'
+ package out of date: Paczka '%s' (w wersji %s) jest przestarzała, potrzebna jest wersja %s.
+ package too new: Paczka '%s' (w wersji %s) nie jest kompatybilna z wersją %s, wymaganą przez '%s'
+ unable to open output file: Błąd przy zapisywaniu: nie udało się otworzyć docelowego pliku
+ unable to store file: Błąd przy zapisywaniu: nie udało się zapisać docelowego pliku
+ dependency not given:
+ Paczka '%s' używa plików z paczki '%s', ale podaje jej w liście zależności.
+ Można to naprawić przez dodanie:
+ depends on: %s %s
+
+ # Script stuff
+ has no member: %s nie posiada pola '%s'
+ can't convert: Nie można wykonać konwersji z %s do %s
+ has no member value: Napis "%s" nie posiada pola'%s'
+ can't convert value: Nie można wykonać konwersji "%s" z %s do %s
+ unsupported format: Błędny format napisu: '%s'
+ in function:
+ %s
+ w funkcji %s
+ in parameter:
+ Parametr %s: %s
+ in keyword reminder:
+ %s
+ w tekscie przypomnienia słowa kluczowego: '%s'
+
+ # Image stuff
+ coordinates for blending overlap: Współrzędne scalania (blending) nachodzą na siebie
+ images used for blending must have the same size: Obrazy użyte do scalania (blending) muszą mieć ten sam rozmiar
+
+ # Error from files
+ no game specified: Nie podano gry dla %s
+ no stylesheet specified for the set: Nie podano arkusza stylu dla zestawu
+ stylesheet and set refer to different game:
+ arkusz stylu i plik zestawu nie odwołują się do tej samej gry; to jest błąd w pliku stylu
+ unsupported field type: Niewspierany typ pola (field): '%s'
+ unsupported fill type: Niewspierany typ wypełnienia (fill): '%s'
+ unrecognized value: Nierozpoznana wartość: '%s'
+ expected key: Oczekiwano wpisu: '%s'
+ aborting parsing: Napotkano krytyczne błędy, koniec parsowania.
+ newer version:
+ %s
+ Ten plik został wykonany nowszą wersją programu Magic Set Editor (%s)
+ Kiedy go otworzysz, niektóre cechy tego pliku mogą zostać utracone.
+ Zaleca się ściągnięcie najnowszej wersji MSE.
+ Odwiedź http:://magicseteditor.sourceforge.net/
+ word list type not found: "%s" (z etykiety ) nie jest znanym typem listy słów (word list)
+ pack item not found: Nie znaleziono elementu paczki "%s" (z typu paczki)
+ pack type not found: Nie znaleziono typu paczki "%s" (z typu paczki)
+
+ # Update checking
+ checking updates failed: Nie udało się sprawdzić uaktualnień.
+ no updates: Brak nowych wersji.
+
+ # Stats panel
+ dimension not found: Nie znaleziono wymiaru '%s' w statystykach
+
+ # Random packs
+ pack type duplicate name:
+ Już istnieje paczka o nazwie '%s'.
+ Wybierz inną nazwę.
+
+ # Package update window
+# checking updates: Sprawdzanie uaktualnień
+ can't download installer:
+ Nie udało się pobrać instalatora dla paczki %s z %s.
+ Nic nie zostało zainstalowane.
+
+ downloading updates: Pobieranie paczek (%d z %d)
+ installing updates: Uaktualnianie paczek (%d z %d)
+
+ remove packages:
+ To spowoduje usunięcie %s paczek, czy chcesz kontynuować?
+ remove packages modified:
+ To usunie %s paczek, %s z nich zostały zmodyfikowane po zainstalowaniu.
+ Po usunięciu zmiany zostaną utracone - nie mogą być cofnięte.
+
+ Czy chcesz kontynuować?
+ install packages successful: Zainstalowano %s paczkę (paczki).
+ remove packages successful: Usunięto %s paczkę (paczki).
+ change packages successful: Zmieniono %s paczkę (paczki).
+
+ cannot create file: Nie udało się utworzyć pliku '%s', kontynuować?
+
+############################################################## Types used in scripts / shape names
+type:
+ function: funkcja (function)
+ collection: kolekcja (collection)
+ collection of: kolekcja (collection) obiektów typu %s
+ object: obiekt (object)
+ double: liczba rzeczywista (real number)
+ integer: liczba całkowita (integer number)
+ string: napis (string)
+ boolean: wartość logiczna (boolean)
+ color: kolor (color)
+ image: obraz (image)
+ date: data (date)
+ nil: nic (nothing)
+
+ # Object types
+ package: paczka (package)
+ locale: tłumaczenie (translation)
+ game: gra (game)
+ set: zestaw (set)
+ stylesheet: arkusz stylów (stylesheet)
+ export template:szablon eksportu (export template)
+ symbol: symbol (symbol)
+ card: karta (card)
+ cards: karty (cards)
+ field: pole (field)
+ style: styl (style)
+ value: wartość (value)
+ keyword: słowo kluczowe (keyword)
+ keywords: słowa kluczowe (keywords)
+ pack: rodzaj paczki (pack type)
+
+ # Symbol editor shapes
+ shape: kształt
+ shapes: kształty
+ circle: okrąg
+ ellipse: elipsa
+ square: kwadrat
+ rectangle: prostokąt
+ triangle: trójkąt
+ rhombus: romb
+ pentagon: pięciokąt
+ hexagon: sześciokąt
+ polygon: wielokąt
+ star: gwiazda
+
+ rotation: obrót
+ reflection: odbicie
+ group: grupa
+
+ point: punkt
+ points: punkty
+
+############################################################## Magic
+package:
+ magic.mse-game:
+ # Card fields
+ name: Name
+ cc: CC
+ type: Type
+ p/t: P/T
+ rarity: Rarity
+ card name: Card Name
+
+ # Set info
+
+ # descriptions/help text
+
+ magic-mana-*.mse-symbol-font:
+ # note: reminder/shortcut must start with a space, otherwise it is used as a shortcut
+ # so typing T *anywhere* would insert a symbol (which would be bad)
+ menu item T: &Tap symbol T
+ menu item Q: &Untap symbol Q
+ menu item W: &White mana W
+ menu item U: Bl&ue mana U
+ menu item B: &Black mana B
+ menu item R: &Red mana R
+ menu item G: &Green mana G
+ menu item S: &Snow mana S
+ menu item X: Variable mana &X X
+ menu item Y: Variable mana &Y Y
+ menu item Z: Variable mana &Z Z
+ menu item I: &Infinite mana I
+ menu item colorless: &Colorless mana...
+ title colorless: Colorless mana
+ message colorless: Enter amount of colorless mana:
+ menu item half: &Half mana
+ menu item |W: &White |W
+ menu item |U: Bl&ue |U
+ menu item |B: &Black |B
+ menu item |R: &Red |R
+ menu item |G: &Green |G
+ menu item |S: &Snow |S
+ menu item 1/2: &Colorless 1/2
+ menu item hybrid: H&ybrid mana (two color)
+ menu item W/U: White/Blue mana W/U
+ menu item U/B: Blue/Black mana U/B
+ menu item B/R: Black/Red mana B/R
+ menu item R/G: Red/Green mana R/G
+ menu item G/W: Green/White mana G/W
+ menu item W/B: White/Black mana W/B
+ menu item U/R: Blue/Red mana U/R
+ menu item B/G: Black/Green mana B/G
+ menu item R/W: Red/White mana R/W
+ menu item G/U: Green/Blue mana G/U
+ menu item hybrid 3: H&ybrid mana (three color)
+ menu item W/U/B: White/Blue/Black mana W/U/B
+ menu item U/B/R: Blue/Black/Red mana U/B/R
+ menu item B/R/G: Black/Red/Green mana B/R/G
+ menu item R/G/W: Red/Green/White mana R/G/W
+ menu item G/W/U: Green/White/Blue mana G/W/U
+ menu item W/B/R: White/Black/Red mana W/B/R
+ menu item U/R/G: Blue/Red/Green mana U/R/G
+ menu item B/G/W: Black/Green/White mana B/G/W
+ menu item R/W/U: Red/White/Blue mana R/W/U
+ menu item G/U/B: Green/Blue/Black mana G/U/B
+
diff --git a/data/planechase-forum.mse-export-template/export-template b/data/planechase-forum.mse-export-template/export-template
index 5ee34e08..817a7261 100644
--- a/data/planechase-forum.mse-export-template/export-template
+++ b/data/planechase-forum.mse-export-template/export-template
@@ -1,215 +1,215 @@
-mse version: 0.3.8
-short name: Forum
-full name: Spoiler Exporter
-position hint: 002
-icon: icon.png
-version: 2010-05-11
-installer group: Magic Planes/Export/forum
-
-depends on:
- package: planechase.mse-game
- version: 2009-08-11
-
-game: planechase
-file type: *.txt|*.txt|*.*|*.*
-
-# By Pichoro
-# Based on code by Idle Muse, Innuendo and Seeonee
-
-option field:
- type: choice
- name: forum
- choice: mse
- choice: mtgsalvation
- description: What forum should the spoiler be formatted for?
-option field:
- type: boolean
- name: text costs
- initial: yes
- description: Should mana costs be plain text? Symbols usually can't be copied and pasted.
-option field:
- type: text
- name: creator
- description: The creator of the set.
-option field:
- type: boolean
- name: include notes
- description: Should card notes be included?
- initial: no
-option field:
- type: boolean
- name: color rarities
- description: Should rarities be colored?
- initial: yes
-script:
- # Colored rarity markers.
- rarity_color := {
- if card.rarity == "basic land" then " (C)"
- else if card.rarity == "common" then " (C)"
- else if card.rarity == "uncommon" then " [color=silver](U)[/color]"
- else if card.rarity == "rare" then " [color=gold](R)[/color]"
- else if card.rarity == "mythic rare" then " [color=orange](M)[/color]"
- else if card.rarity == "special" then " [color=purple](S)[/color]"
- else " (C)"
- }
- # Non colored rarity markers.
- rarity_uncolor := {
- if card.rarity == "basic land" then " (C)"
- else if card.rarity == "common" then " (C)"
- else if card.rarity == "uncommon" then " (U)"
- else if card.rarity == "rare" then " (R)"
- else if card.rarity == "mythic rare" then " (M)"
- else if card.rarity == "special" then " (S)"
- else " (C)"
- }
- # Formats rules text w/ only italic tags.
- forum_rules_filter_plain := replace@(match:"[(]", replace:"[i](")+
- replace@(match:"[)]", replace: ")[/i]")
- # Formats rules text w/ mana symbols. MSE and mtgsally use same bbcode tags for mana.
- forum_rules_filter_mtgsally_mse :=
- # Italics around parenthesis.
- replace@(match:"[(]", replace:"[i](")+
- replace@(match:"[)]", replace: ")[/i]")+
- # 2/C's don't appear in regular english, format them all.
- replace@(match:"2/W", replace:":sym2w:")+
- replace@(match:"2/U", replace:":sym2u:")+
- replace@(match:"2/B", replace:":sym2b:")+
- replace@(match:"2/R", replace:":sym2r:")+
- replace@(match:"2/G", replace:":sym2g:")+
- # C/D's don't appear in regular english, format them all.
- replace@(match:"W/U", replace:":symwu:")+
- replace@(match:"W/B", replace:":symwb:")+
- replace@(match:"U/B", replace:":symub:")+
- replace@(match:"U/R", replace:":symur:")+
- replace@(match:"B/R", replace:":symbr:")+
- replace@(match:"B/G", replace:":symbg:")+
- replace@(match:"R/G", replace:":symrg:")+
- replace@(match:"R/W", replace:":symrw:")+
- replace@(match:"G/W", replace:":symgw:")+
- replace@(match:"G/U", replace:":symgu:")+
- # Various positions for taps, untaps and chaos symbols.
- replace@(match:" T ", replace:" :symtap: ")+
- replace@(match:" Q ", replace:" :symq: ")+
- replace@(match:" C ", replace:" :symch: ")+
- replace@(match:"T,", replace:":symtap:,")+
- replace@(match:"Q,", replace:":symq:,")+
- replace@(match:"C,", replace:":symch:,")+
- replace@(match:"T:", replace:":symtap::")+
- replace@(match:"Q:", replace:":symq::")+
- replace@(match:"C:", replace:":symch::")+
- # Mana right before a space.
- replace@(match:"G ", replace:":symg: ")+
- replace@(match:"R ", replace:":symr: ")+
- replace@(match:"B ", replace:":symb: ")+
- replace@(match:"U ", replace:":symu: ")+
- replace@(match:"W ", replace:":symw: ")+
- replace@(match:"S ", replace:":snow: ")+
- # Mana right before a comma.
- replace@(match:"G,", replace:":symg:,")+
- replace@(match:"R,", replace:":symr:,")+
- replace@(match:"B,", replace:":symb:,")+
- replace@(match:"U,", replace:":symu:,")+
- replace@(match:"W,", replace:":symw:,")+
- replace@(match:"S,", replace:":snow:,")+
- # Mana right before a colon.
- replace@(match:"G:", replace:":symg::")+
- replace@(match:"R:", replace:":symr::")+
- replace@(match:"B:", replace:":symb::")+
- replace@(match:"U:", replace:":symu::")+
- replace@(match:"W:", replace:":symw::")+
- # Drag rules text to search for more mana characters. Reverse color wheel order works better. Repeat several times.
- replace@(match:"G:", replace:":symg::")+
- replace@(match:"R:", replace:":symr::")+
- replace@(match:"B:", replace:":symb::")+
- replace@(match:"U:", replace:":symu::")+
- replace@(match:"W:", replace:":symw::")+
- replace@(match:"G:", replace:":symg::")+
- replace@(match:"R:", replace:":symr::")+
- replace@(match:"B:", replace:":symb::")+
- replace@(match:"U:", replace:":symu::")+
- replace@(match:"W:", replace:":symw::")+
- replace@(match:"G:", replace:":symg::")+
- replace@(match:"R:", replace:":symr::")+
- replace@(match:"B:", replace:":symb::")+
- replace@(match:"U:", replace:":symu::")+
- replace@(match:"W:", replace:":symw::")+
- # Symbolize snow.
- replace@(match:"S:", replace:":snow::")+
- replace@(match:"S:", replace:":snow::")+
- replace@(match:"S:", replace:":snow::")+
- # Symbolize numbers from 20-0 when before a comma.
- replace@(match:"20,", replace:":20mana:,")+
- replace@(match:"19,", replace:":19mana:,")+
- replace@(match:"18,", replace:":18mana:,")+
- replace@(match:"17,", replace:":17mana:,")+
- replace@(match:"16,", replace:":16mana:,")+
- replace@(match:"15,", replace:":15mana:,")+
- replace@(match:"14,", replace:":14mana:,")+
- replace@(match:"13,", replace:":13mana:,")+
- replace@(match:"12,", replace:":12mana:,")+
- replace@(match:"11,", replace:":11mana:,")+
- replace@(match:"10,", replace:":10mana:,")+
- replace@(match:"9,", replace:":9mana:,")+
- replace@(match:"8,", replace:":8mana:,")+
- replace@(match:"7,", replace:":7mana:,")+
- replace@(match:"6,", replace:":6mana:,")+
- replace@(match:"5,", replace:":5mana:,")+
- replace@(match:"4,", replace:":4mana:,")+
- replace@(match:"3,", replace:":3mana:,")+
- replace@(match:"2,", replace:":2mana:,")+
- replace@(match:"1,", replace:":1mana:,")+
- replace@(match:"0,", replace:":0mana:,")+
- # Symbolize numbers from 20-0 when before another symbol or a colon.
- replace@(match:"20:", replace:":20mana::")+
- replace@(match:"19:", replace:":19mana::")+
- replace@(match:"18:", replace:":18mana::")+
- replace@(match:"17:", replace:":17mana::")+
- replace@(match:"16:", replace:":16mana::")+
- replace@(match:"15:", replace:":15mana::")+
- replace@(match:"14:", replace:":14mana::")+
- replace@(match:"13:", replace:":13mana::")+
- replace@(match:"12:", replace:":12mana::")+
- replace@(match:"11:", replace:":11mana::")+
- replace@(match:"10:", replace:":10mana::")+
- replace@(match:"9:", replace:":9mana::")+
- replace@(match:"8:", replace:":8mana::")+
- replace@(match:"7:", replace:":7mana::")+
- replace@(match:"6:", replace:":6mana::")+
- replace@(match:"5:", replace:":5mana::")+
- replace@(match:"4:", replace:":4mana::")+
- replace@(match:"3:", replace:":3mana::")+
- replace@(match:"2:", replace:":2mana::")+
- replace@(match:"1:", replace:":1mana::")+
- replace@(match:"0:", replace:":0mana::")+
- # Symbolize X and Y when before a comma.
- replace@(match:"Y,", replace:":symy:,")+
- replace@(match:"X,", replace:":symx:,")+
- # Symbolize X and Y when before another symbol or a colon.
- replace@(match:"Y:", replace:":symy::")+
- replace@(match:"X:", replace:":symx::")+
- # Add a Chaos symbol in front of Chaos abilities.
- replace@(match:"Whenever you roll :symch:,", replace:":symch: - Whenever you roll :symch:,")+
- # Remove consecutive spaces, as they are meant to adjust text position.
- replace@(match:" ", replace:"")
- # Count the number of paragraphs to detect number of walker abilities.
- write_card := {
- # The Name
- "\n[b]"+card.name+"[/b]"
- # The Type and Rarity
- +"\n"+card.type+(if options.color_rarities then rarity_color() else rarity_uncolor())
- # The Rules Text
- +(if card.rule_text != "" then "\n")
- +(if not options.text_costs then forum_rules_filter_mtgsally_mse(remove_tags(card.rule_text)))
- +(if options.text_costs then forum_rules_filter_plain(card.rule_text))
- # The Flavor Text
- +(if card.flavor_text != "" then "\n[i]")
- +card.flavor_text
- +(if card.flavor_text != "" then "[/i]")
- # The Notes
- +(if options.include_notes and card.notes !="" then "\n[spoiler]Card Notes: ")
- +(if options.include_notes and card.notes !="" then card.notes)
- +(if options.include_notes and card.notes !="" then "[/spoiler]")
- +"\n"
- }
- write_cards := to_text(for each card in sort_list(cards, order_by: {input.card_number}) do write_card())
- to_string("Full Spoiler List for "+set.title+"\nSet by "+options.creator+"\n"+set.description+"\n"+write_cards)
+mse version: 0.3.8
+short name: Forum
+full name: Spoiler Exporter
+position hint: 002
+icon: icon.png
+version: 2010-05-11
+installer group: Magic Planes/Export/forum
+
+depends on:
+ package: planechase.mse-game
+ version: 2009-08-11
+
+game: planechase
+file type: *.txt|*.txt|*.*|*.*
+
+# By Pichoro
+# Based on code by Idle Muse, Innuendo and Seeonee
+
+option field:
+ type: choice
+ name: forum
+ choice: mse
+ choice: mtgsalvation
+ description: What forum should the spoiler be formatted for?
+option field:
+ type: boolean
+ name: text costs
+ initial: yes
+ description: Should mana costs be plain text? Symbols usually can't be copied and pasted.
+option field:
+ type: text
+ name: creator
+ description: The creator of the set.
+option field:
+ type: boolean
+ name: include notes
+ description: Should card notes be included?
+ initial: no
+option field:
+ type: boolean
+ name: color rarities
+ description: Should rarities be colored?
+ initial: yes
+script:
+ # Colored rarity markers.
+ rarity_color := {
+ if card.rarity == "basic land" then " (C)"
+ else if card.rarity == "common" then " (C)"
+ else if card.rarity == "uncommon" then " [color=silver](U)[/color]"
+ else if card.rarity == "rare" then " [color=gold](R)[/color]"
+ else if card.rarity == "mythic rare" then " [color=orange](M)[/color]"
+ else if card.rarity == "special" then " [color=purple](S)[/color]"
+ else " (C)"
+ }
+ # Non colored rarity markers.
+ rarity_uncolor := {
+ if card.rarity == "basic land" then " (C)"
+ else if card.rarity == "common" then " (C)"
+ else if card.rarity == "uncommon" then " (U)"
+ else if card.rarity == "rare" then " (R)"
+ else if card.rarity == "mythic rare" then " (M)"
+ else if card.rarity == "special" then " (S)"
+ else " (C)"
+ }
+ # Formats rules text w/ only italic tags.
+ forum_rules_filter_plain := replace@(match:"[(]", replace:"[i](")+
+ replace@(match:"[)]", replace: ")[/i]")
+ # Formats rules text w/ mana symbols. MSE and mtgsally use same bbcode tags for mana.
+ forum_rules_filter_mtgsally_mse :=
+ # Italics around parenthesis.
+ replace@(match:"[(]", replace:"[i](")+
+ replace@(match:"[)]", replace: ")[/i]")+
+ # 2/C's don't appear in regular english, format them all.
+ replace@(match:"2/W", replace:":sym2w:")+
+ replace@(match:"2/U", replace:":sym2u:")+
+ replace@(match:"2/B", replace:":sym2b:")+
+ replace@(match:"2/R", replace:":sym2r:")+
+ replace@(match:"2/G", replace:":sym2g:")+
+ # C/D's don't appear in regular english, format them all.
+ replace@(match:"W/U", replace:":symwu:")+
+ replace@(match:"W/B", replace:":symwb:")+
+ replace@(match:"U/B", replace:":symub:")+
+ replace@(match:"U/R", replace:":symur:")+
+ replace@(match:"B/R", replace:":symbr:")+
+ replace@(match:"B/G", replace:":symbg:")+
+ replace@(match:"R/G", replace:":symrg:")+
+ replace@(match:"R/W", replace:":symrw:")+
+ replace@(match:"G/W", replace:":symgw:")+
+ replace@(match:"G/U", replace:":symgu:")+
+ # Various positions for taps, untaps and chaos symbols.
+ replace@(match:" T ", replace:" :symtap: ")+
+ replace@(match:" Q ", replace:" :symq: ")+
+ replace@(match:" C ", replace:" :symch: ")+
+ replace@(match:"T,", replace:":symtap:,")+
+ replace@(match:"Q,", replace:":symq:,")+
+ replace@(match:"C,", replace:":symch:,")+
+ replace@(match:"T:", replace:":symtap::")+
+ replace@(match:"Q:", replace:":symq::")+
+ replace@(match:"C:", replace:":symch::")+
+ # Mana right before a space.
+ replace@(match:"G ", replace:":symg: ")+
+ replace@(match:"R ", replace:":symr: ")+
+ replace@(match:"B ", replace:":symb: ")+
+ replace@(match:"U ", replace:":symu: ")+
+ replace@(match:"W ", replace:":symw: ")+
+ replace@(match:"S ", replace:":snow: ")+
+ # Mana right before a comma.
+ replace@(match:"G,", replace:":symg:,")+
+ replace@(match:"R,", replace:":symr:,")+
+ replace@(match:"B,", replace:":symb:,")+
+ replace@(match:"U,", replace:":symu:,")+
+ replace@(match:"W,", replace:":symw:,")+
+ replace@(match:"S,", replace:":snow:,")+
+ # Mana right before a colon.
+ replace@(match:"G:", replace:":symg::")+
+ replace@(match:"R:", replace:":symr::")+
+ replace@(match:"B:", replace:":symb::")+
+ replace@(match:"U:", replace:":symu::")+
+ replace@(match:"W:", replace:":symw::")+
+ # Drag rules text to search for more mana characters. Reverse color wheel order works better. Repeat several times.
+ replace@(match:"G:", replace:":symg::")+
+ replace@(match:"R:", replace:":symr::")+
+ replace@(match:"B:", replace:":symb::")+
+ replace@(match:"U:", replace:":symu::")+
+ replace@(match:"W:", replace:":symw::")+
+ replace@(match:"G:", replace:":symg::")+
+ replace@(match:"R:", replace:":symr::")+
+ replace@(match:"B:", replace:":symb::")+
+ replace@(match:"U:", replace:":symu::")+
+ replace@(match:"W:", replace:":symw::")+
+ replace@(match:"G:", replace:":symg::")+
+ replace@(match:"R:", replace:":symr::")+
+ replace@(match:"B:", replace:":symb::")+
+ replace@(match:"U:", replace:":symu::")+
+ replace@(match:"W:", replace:":symw::")+
+ # Symbolize snow.
+ replace@(match:"S:", replace:":snow::")+
+ replace@(match:"S:", replace:":snow::")+
+ replace@(match:"S:", replace:":snow::")+
+ # Symbolize numbers from 20-0 when before a comma.
+ replace@(match:"20,", replace:":20mana:,")+
+ replace@(match:"19,", replace:":19mana:,")+
+ replace@(match:"18,", replace:":18mana:,")+
+ replace@(match:"17,", replace:":17mana:,")+
+ replace@(match:"16,", replace:":16mana:,")+
+ replace@(match:"15,", replace:":15mana:,")+
+ replace@(match:"14,", replace:":14mana:,")+
+ replace@(match:"13,", replace:":13mana:,")+
+ replace@(match:"12,", replace:":12mana:,")+
+ replace@(match:"11,", replace:":11mana:,")+
+ replace@(match:"10,", replace:":10mana:,")+
+ replace@(match:"9,", replace:":9mana:,")+
+ replace@(match:"8,", replace:":8mana:,")+
+ replace@(match:"7,", replace:":7mana:,")+
+ replace@(match:"6,", replace:":6mana:,")+
+ replace@(match:"5,", replace:":5mana:,")+
+ replace@(match:"4,", replace:":4mana:,")+
+ replace@(match:"3,", replace:":3mana:,")+
+ replace@(match:"2,", replace:":2mana:,")+
+ replace@(match:"1,", replace:":1mana:,")+
+ replace@(match:"0,", replace:":0mana:,")+
+ # Symbolize numbers from 20-0 when before another symbol or a colon.
+ replace@(match:"20:", replace:":20mana::")+
+ replace@(match:"19:", replace:":19mana::")+
+ replace@(match:"18:", replace:":18mana::")+
+ replace@(match:"17:", replace:":17mana::")+
+ replace@(match:"16:", replace:":16mana::")+
+ replace@(match:"15:", replace:":15mana::")+
+ replace@(match:"14:", replace:":14mana::")+
+ replace@(match:"13:", replace:":13mana::")+
+ replace@(match:"12:", replace:":12mana::")+
+ replace@(match:"11:", replace:":11mana::")+
+ replace@(match:"10:", replace:":10mana::")+
+ replace@(match:"9:", replace:":9mana::")+
+ replace@(match:"8:", replace:":8mana::")+
+ replace@(match:"7:", replace:":7mana::")+
+ replace@(match:"6:", replace:":6mana::")+
+ replace@(match:"5:", replace:":5mana::")+
+ replace@(match:"4:", replace:":4mana::")+
+ replace@(match:"3:", replace:":3mana::")+
+ replace@(match:"2:", replace:":2mana::")+
+ replace@(match:"1:", replace:":1mana::")+
+ replace@(match:"0:", replace:":0mana::")+
+ # Symbolize X and Y when before a comma.
+ replace@(match:"Y,", replace:":symy:,")+
+ replace@(match:"X,", replace:":symx:,")+
+ # Symbolize X and Y when before another symbol or a colon.
+ replace@(match:"Y:", replace:":symy::")+
+ replace@(match:"X:", replace:":symx::")+
+ # Add a Chaos symbol in front of Chaos abilities.
+ replace@(match:"Whenever you roll :symch:,", replace:":symch: - Whenever you roll :symch:,")+
+ # Remove consecutive spaces, as they are meant to adjust text position.
+ replace@(match:" ", replace:"")
+ # Count the number of paragraphs to detect number of walker abilities.
+ write_card := {
+ # The Name
+ "\n[b]"+card.name+"[/b]"
+ # The Type and Rarity
+ +"\n"+card.type+(if options.color_rarities then rarity_color() else rarity_uncolor())
+ # The Rules Text
+ +(if card.rule_text != "" then "\n")
+ +(if not options.text_costs then forum_rules_filter_mtgsally_mse(remove_tags(card.rule_text)))
+ +(if options.text_costs then forum_rules_filter_plain(card.rule_text))
+ # The Flavor Text
+ +(if card.flavor_text != "" then "\n[i]")
+ +card.flavor_text
+ +(if card.flavor_text != "" then "[/i]")
+ # The Notes
+ +(if options.include_notes and card.notes !="" then "\n[spoiler]Card Notes: ")
+ +(if options.include_notes and card.notes !="" then card.notes)
+ +(if options.include_notes and card.notes !="" then "[/spoiler]")
+ +"\n"
+ }
+ write_cards := to_text(for each card in sort_list(cards, order_by: {input.card_number}) do write_card())
+ to_string("Full Spoiler List for "+set.title+"\nSet by "+options.creator+"\n"+set.description+"\n"+write_cards)
diff --git a/data/pt-br.mse-locale/locale b/data/pt-br.mse-locale/locale
index e815bc78..37d98291 100644
--- a/data/pt-br.mse-locale/locale
+++ b/data/pt-br.mse-locale/locale
@@ -1,926 +1,926 @@
-mse version: 0.3.8
-installer group: translations/Portuguese/Brazilian
-full name: Português do Brasil (Brazilian Portuguese)
-version: 2009-07-23
-icon: br.png
-
-#By Luciano da Silva
-############################################################## Menu items
-menu:
- file: &Arquivo
- new set: &Novo... Ctrl+N
- open set: &Abrir... Ctrl+O
- save set: &Salvar Ctrl+S
- save set as: Salvar &Como... F12
- export: &Exportar
- export html: &HTML...
- export image: &Imagem do card...
- export images: Todas as I&magens dos cards...
- export apprentice: &Apprentice...
- export mws: Magic &Workstation...
- check updates: &Atualizações...
- print preview: V&izualização da Imprensão...
- print: &Imprimir... Ctrl+P
- reload data: Recarregar Dados Ctrl+F5
- exit: S&air Alt+F4
-
- edit: &Editar
- undo: &Desfazer%s Ctrl+Z
- redo: &Refazer%s Ctrl+Y
- cut: Cor&tar Ctrl+X
- copy: &Copiar Ctrl+C
- paste: &Colar Ctrl+V
- find: &Encontrar Ctrl+F
- find next: Encontrar &Próximo F3
- replace: S&ubstituir Ctrl+H
- auto replace: Auto Sub&stituição...
- preferences: &Preferencias...
-
- cards: &Cards
- previous card: Selecionar card &Anterior PgUp
- next card: Selecionar Próximo ca&rd PgDn
- add card: &Adicionar Card Ctrl+Enter
- add cards: Adicionar &Multiplos Cards...
- remove card: &Deletar Card Selecionado
- orientation: &Orientação
- rotate 0: &Normal
- rotate 270: Girar à 90° &no Sentido Horário
- rotate 90: Girar à 90° no Sentido Ant&i-Horário
- rotate 180: Girar à 180°, &Cima, Baixo
- card list columns: Lista de Coluna dos C&ards...
-
- keywords: &Palavra Chave
- previous keyword: Selecionar &Palavra Chave Anterior PgUp
- next keyword: Selecionar Próxima Pa&lavra Chave PgDn
- add keyword: &Adicionar Palavra Chave Ctrl+Enter
- remove keyword: &Remover Palavra Chave Selecionada Del
-
- format: F&ormatar
- bold: &Negrito Ctrl+B
- italic: &Italico Ctrl+I
- symbols: &Simbolos Ctrl+M
- reminder text: &Texto Explicativo Ctrl+R
- insert symbol: I&nserir Símbolo
- # spelling
- no spelling suggestions: (Sem sugestões)
-
- graph: &Grafico
- pie: &Pizza 1
- bar: &Barra 2
- stack: &Barras Empilhadas 3
- scatter: G&áfico de linhas 4
- scatter pie: Sc&atter-Pie 5
-
- window: &Janela
- new window: &Nova Janela
- cards tab: C&ards F5
- set info tab: I&nformação da Edição F6
- style tab: Est&ilo F7
- keywords tab: &Palavras Chaves F8
- stats tab: Es&tatísticas F9
- random pack tab: Pa&cks Aleatório
-
- help: &Ajuda
- index: &Indíce... F1
- website: &Site...
- about:s &About Magic Set Editor...
-
- # symbol editor
- &Arquivo
- new symbol: &Novo... Ctrl+N
- open symbol: &Abrir... Ctrl+O
- save symbol: &Salvar Ctrl+S
- save symbol as: Salvar &Como... F12
- store symbol: U&sar Simbolo Ctrl+Enter
- close symbol editor: Sair Alt+F4
-
- duplicate: &Duplicar Ctrl+D
- group: A&grupar Ctrl+G
- ungroup: &Desagrupar Ctrl+U
-
- tool: &Ferramentas
- select: &Selecionar F5
- rotate: &Girar F6
- points: &Pontos F7
- basic shapes: &Formas Básicas F8
- symmetry: S&imétrico F9
- paint: P&intar F10
-
-############################################################## Menu help texts
-help:
- welcome: Bem-Vindo ao Magic Set Editor
-
- file:
- new set: Criar uma nova Edição.
- open set: Abrir uma Edição existente.
- last opened set: Abrir '%s'
- save set: Salva a Edição.
- save set as: Salva a Edição com um nome diferente.
- export: Exportar a Edição...
- export html: Exporta a Edição como uma página da Internet.
- export image: Exporta o card selecionado como um arquivo de imagem.
- export images: Exporta todos os cards como um arquivo de imagem.
- export apprentice: Exporta a Edição para que se possa ser usada no Apprentice.
- export mws: Exporta a Edição para que se possa jogar com ela no Magic Workstation.
- check updates: Instala pacotes de Atualizações.
- print preview: Mostra todos os cards como se fossem para serem Impressos.
- print: Imprimi os cards dessa Edição.
- reload data: Recarrega todos os Dados.
- exit: Fecha o Magic Set Editor; e pergunta se você gostaria de salvar a suas alterações.
-
- edit:
- undo: Desfaz a última ação.
- redo: Resfaz a última ação.
- cut: Move o texto selecionado para à Área de Transferência.
- cut card: Move o card selecionado para à Área de Transferência.
- cut keyword: Move a Palavra Chave selecionada para à Área de Transferência.
- copy: Coloca o texto selecionado na Área de Transferência.
- copy card: Coloca o Card selecionado na Área de Transferência.
- copy keyword: Coloca a Palavra Chave selecionada na Área de Transferência.
- paste: Introduz o texto que está na Área de Transferência.
- paste card: Introduz o Card que está na Área de Transferência.
- paste keyword: Introduz a Palavra Chave que está na Área de Transferência.
- find: Busca pelo texto do card.
- find next: Busca pelo próximo texto do card.
- replace: Substitui o texto dos cards.
- auto replace: O texto deve ser substituido automaticamente?
- preferences: configurações do Magic Set Editor.
-
- cards:
- previous card: Seleciona o card anterior da lista.
- next card: Seleciona o próximo card da lista.
- add card: Adicione um novo, em branco, card para esta Edição.
- add cards: Adicione multiplos cards à esta Edição.
- remove card: Apaga o card selecionado desta Edição.
- orientation: Orientação do card exibido.
- rotate card: Gira o card exibido à 90° no sentido horário.
- rotate 0: O card fica na posição original.
- rotate 270: Aprensenta o card girado no sentido horário.
- rotate 90: Apresenta o card selecionado no sentido anti-horário.
- rotate 180: Mostra o card selecionado de cabeça para baixo.
- card list columns: Seleciona qual coluna deve ser mostradra em uma determinada ordem.
-
- keywords:
- previous keyword: Seleciona uma Palavra-Chave anterior da lista.
- next keyword: Seleciona uma próxima Palavra-Chave da lista.
- add keyword: Adiciona uma nova palavra chave na lista.
- remove keyword: Deleta a Palavra-Chave selecionada da lista.
-
- format:
- bold: Faça o texto selecionado transformar-se em Negrito.
- italic: Faça o texto selecionado transformar-se em Itálico.
- symbols: Transforma uma parte do texto selecionada em simbolos.
- reminder text: Mostra ou oculta o Texto Explicativo de uma Palavra-Chave selecionado.
- # spelling
- no spelling suggestions: Não há sugestões para poder corrigir este erro.
-
- graph:
- pie: Um gráfico no formato de Pizza, o tamanho de sua fatia indica o número de cards.
- bar: Um gráfico no formato de Barras, a altura das barras indica o número de card.
- stack: Um gráfico de Barra com Barras em pilhadas.
- scatter: Um scatter plot, o tamanho indica o número de cards.
- scatter pie: A dispersão parcela em que cada item é um gráfico de um pequena torta.
-
- window:
- new window: &Cria uma outra janela para editar a mesma Edição.
- cards tab: &Edita o card da Edição.
- set info tab: &Edita informações sobre a Edição, seu criador, etc.
- style tab: &Escolhe o estilo dos cards.
- keywords tab: &Define Palavra-Chaves extras para esta Edição.
- stats tab: &Mostra todas as estatísticas sobre o card na Edição.
- random pack tab: &Teste você mesmo, veja o que você ganharia se abrisse packs aleatórios agora.
-
- help:
- index:
- website:
- about:
-
- # Cards panel
- collapse notes: Oculta a caixa de anotações do card.
- expand notes: Mostra a caixa de anotações do card.
- # Random pack panel
- random seed: Packs diferentes se for de sua vontade podem ser gerados em tempos diferentes.
- fixed seed: Usando a mesma maneira, você poderá gerar packs 'aleatórios' só que por números.
- seed: Veja o número gerado pelo o Aleatório. Usando o mesmo número você poderá escolher aquele mesmo pack gerado 'aleatóriamente'.
- edit pack type: Clique aqui para editar o tipo do pack.
- number of packs: O número de %ss para ser gerado
-
- # Preferences
- app language:
- Nota: Você deve reiniciar o MSE para que suas alterações tenhão efeito.
- zoom export:
- (Em off, os cards são exportados
- e copiados 100% no tamanho e rotação normal)
-
- # apprentice export
- set code: Um conjunto de códigos de dois caracteres, que é utilizado pelo Apprendice para se referir a uma Edição.
-
- # Symbol editor
- new symbol: Cria um novo simbolo.
- open symbol: Abre o simbolo.
- save symbol: Salva o simbolo.
- save symbol as: Salva o simbolo com um nome diferente.
- store symbol: Usa o simbolo na Edição corrente.
- close symbol editor: Sai do Editor de simbolo.
-
- duplicate: Duplica os pontos selecionados.
- group: Agrupa os pontos selecionados.
- ungroup: Desagrupa o que esta selecionado.
-
- grid: Mostra as linhas guias.
- snap: Com a ferramenta Ímã, centralize os objetos selecionados.
-
- tool:
- select: Seleciona e move a Forma.
- rotate: Seleciona e gira a Forma.
- points: Edita os pontos de um simbolo.
- basic shapes: Adiciona Formas de Simbolos como retângulos ou círculos.
- symmetry: Adiciona simetrias ao simbolo.
- paint: Pinta a forma usando um paintbrush.
-
- select editor:
- merge: Junta esta forma com outra.
- subtract: Subtrai esta forma com outra.
- intersect: Intersecione esta forma com outra, somente a área que são as formas.
- difference: Diferencia esta forma com outra, a área criada não será uma forma.
- overlap: Coloque esta forma, e a sua borda acima da forma dela.
- border: A forma desta forma passa a ser sua borda.
-
- drag to shear: Arraste para tosar o selecionado %s.
- drag to rotate: Arraste para girar selecionado %s, ângulo Ctrl restringe a múltiplos de 15 degrees.
- drag to resize: Arraste para redimensionar o objeto selecionado %s, Ctrl restringe tamanho.
- click to select shape: Clique para selecionar forma, arraste a forma circular, duplo clique para editar forma.
-
- ellipse: Desenhe círculos e elípses.
- rectangle: Desenhe retângulos e triângulos.
- polygon: Desenhe triângulos, pentagramas e outros polígonos regulares.
- star: Desenhe estrelas.
- sides: O número de lados de um polígono e de pontas de uma estrela.
- drag to draw shape: Arraste para dar forma a uma forma novamente, Ctrl constrai a forma, Shift centraliza a forma.
- draw ellipse: Clique e arraste para desenhar uma elipse, pressione Ctrl para um círculo.
- draw rectangle: Clique e arraste para desenhar um retângulo, pressione Ctrl para um quadrado.
- draw polygon: Clique e arraste para desenhar um polígono.
- draw star: Clique e arraste para desenhar uma estrela.
-
- line segment: Faz com que a linha selecionada torna-se um segmento de uma reta.
- curve segment: Faz com que a linha selecionada torna-se um segmento de uma curva.
- free point: Permite que os pontos de controle ao ponto a ser movido possa a ser movido livremente.
- smooth point: Faz o ponto selecionado torna-se suave, colocando a dois pontos de controle oposto ao outro.
- symmetric point: Faz o ponto selecionado torna-se simétrico.
- drag to move curve: Arraste para mover as curvas.
- drag to move line: Alt + arraste para mover a curva; um clique duplo serve para adicionar um ponto sobre esta linha.
- drag to move point: Clique e arraste para mover o controle de ponto; dee um clique duplo para remover o ponto.
- rotation: Simetria rotacional (rodar).
- reflection: Simetria Reflexional (espelho).
- add symmetry: Adiciona simbolos simétricos.
- remove symmetry: Remove esta simetria.
- copies: Números de reflexão (incluindo o original).
-
- # Card select
- filename format: (Use {card.name} para nomear o card; O filetype é determinado como a base na extensão).
-
-############################################################## Toolbar
-tool:
- undo: Desfazer
- redo: Refazer
-
- cards tab: Cards
- set info tab: Informação da Edição
- style tab: Estilo
- keywords tab: Palavras-Chaves
- stats tab: Estatísticas
- random pack tab: Aleatório
-
- # symbol editor
- store symbol: Usar!
-
- grid: Rede
- snap: Ímã
-
- select: Selecionar
- rotate: Girar
- points: Pontos
- basic shapes: Formas Básicas
- symmetry: Simetria
- paint: Pintar
-
- merge: Soldar
- subtract: Subtrair
- intersect: Intersessão
- difference: Diferença
- overlap: Sobre por
- border: Borda
-
- ellipse: Elipse
- rectangle: Retângulo
- polygon: Polígono
- star: Estrela
-
- rotation: Rotação
- reflection: Reflexão
- add symmetry: Adicionar
- remove symmetry: Remover
-
- line segment: Linha
- curve segment: Curva
- free point: Livre
- smooth point: Fumaça
- symmetric point: Simétrico
-
-############################################################## Toolbar help text
-tooltip:
- cards tab:
- set info tab: Informação da Edição
- style tab:
- keywords tab:
- stats tab:
- random pack tab: Packs aleatórios
-
- new set: Nova Edição
- open set: Abrir Edição
- save set: Savar Edição
- export: Exportar Edição
-
- cut: Cortar
- copy: Copiar
- paste: Colar
- undo: Desfazer%s
- redo: Refazer%s
-
- add card: Adiciona um card
- remove card: Remove o card selecionado
- rotate card: Gira o card
-
- add keyword: Adiciona Palavra-Chave
- remove keyword: Remove a Palavra-Chave selecionada
-
- bold: Negrito
- italic: Itálico
- symbols: Simbolo
- reminder text: Texto Explicativo
-
- pie: Gráfico em Pizza
- bar: Gráfico em Barras
- stack: Empilhadas por gráficos de Barras
- scatter: Scatter Plot
- scatter pie: Scatter-Pie plot
-
- cards tab:
- set info tab: Informação da Edição
- style tab: Estilo do Card
- keywords tab:
- stats tab:
-
- # symbol editor
- store symbol: Usar simbolo na Edição corrente
-
- grid: Mostrar linhas
- snap: Ímã para linhas
-
- select: Selecionar (F5)
- rotate: Girar (F6)
- points: Pontos (F7)
- basic shapes: Formas Básicas (F8)
- symmetry: Simetria (F9)
- paint: Pintar a Forma (F10)
-
- merge: Solda as Formas selecionadas
- subtract: Subtrai as formas selecionadas
- intersect: Intersecção com formas abaixo
- difference: Diferem das formas abaixo
- overlap: Local acima outras formas
- border: Desenhe como a borda
-
- ellipse: Círculo / Elípse
- rectangle: Quadrado / Retângulo
- polygon: Polígono
- star: estrela
-
- rotation: Simetria rotacional (roda)
- reflection: Simetria Reflexional (espelho)
- add symmetry: Adicionar simetria à peça selecionada
- remove symmetry: Remove esta simetria
-
- line segment: Para a linha tornar-se do tipo straigt
- curve segment: Para curva
- free point: Desagrupa os pontos
- smooth point: Suavilização dos pontos
- symmetric point: Faça os pontos torna-sem simétricos
-
-############################################################## Labels in the GUI
-label:
- # Cards tab
- card notes: Informações Específica deste card
- # Keywords tab
- keyword: Palavra chave
- match: Jogos
- mode: Modo
- uses: Usos
- reminder: Texto Explicativo
- rules: Regra Adicional
- standard keyword:
- Esta é uma palavra-chave padrão de %s, você não pode editá-la.
- Você pode copiar e editar a cópia e seus precedentes.
-
- # Style tab
- styling options: Opção de Estilo
-
- # Random pack panel
- pack selection: Seleção do Pack
- pack totals: Total
- pack name: Nome do pack
- seed: Semente
- total cards: Total
-
- # Open dialogs
- all files Todos os arquivos
-
- # Other set window dialogs
- save changes:
- A Edição está '%s' sendo modificada.
-
- Você tem certeza que deseja salvar as suas alterações?
-
- # New set window
- game type: &Estilo de Jogo:
- style type: &Estilo do Tipo:
-
- stylesheet not found:
- A Edição está a tentar abrir utiliza a folha de estilo "%s".
- Esta folha de estilo não é compatível com a do sistema padrão. Por favor escolha uma folha de estilo alternativa.
-
- # Preferences
- language: Linguagem
- windows: Abrir Edição
- app language: Linguagem da sua interface:
- card display: Visualização do card
- zoom: &Zoom:
- percent of normal: % de tamanho normal
- external programs: Programas externos
- apprentice: &Apprentice:
- apprentice exe: Execultável do Apprentice
- check at startup: Proucurar por novo gatilho de inicialização
- checking requires internet:
- Proucura por atualizações que requeira uma conexão com a internet.
- Quando não se tem uma conexão com a internet, as atualizações não será proucurada.
-
- Suas Informações pessoais não serão vistas durante a proucura por atualizações.
-
- # Column select
- select columns: Selecione a coluna que você deseja visualizar
- columns: Colunas:
-
- # Card select / images export
- select cards: Cards para exportar
- selected card count: %s Cards que você deseja exportar
- select cards print: Selecione os cards para imprimir
- filename format: &Formato:
- filename conflicts: &Manejar duplicatas dos Nome_dos_Arquivos:
- export filenames: Nome_dos_Arquivos
- filename is ignored: (O Nome_dos_Arquivos serão ignorados)
-
- # apprentice export
- set code: Código da &Edição:
- apprentice export cancelled: Exportação para o Apprentice é cancelada
-
- # Html export
- html template: Template:
- html export options: Opções de Exportação
-
- # Image slicer
- original: Original:
- result: Resultado:
- size: Dimenção
- original size: &Tamanho Original
- size to fit: Tamanho para &ajuste
- force to fit: F&orçar o ajuste
- custom size: &Tamanho personalizado
- selection: Seleção
- selection left: &Esquerdo
- selection top: &Topo
- selection width: &Largura
- selection height: &Altura
- zoom: Zoom
- fix aspect ratio: Fixão os aspéctos de proporção (altura/largura)
- zoom amount: Zoom
- zoom amount x: Zoom &X
- zoom amount y: Zoom &Y
- zoom %: %
- filter: Filtro
- sharpen filter: &Filtro agunçado
-
- # Auto replace
- auto match: Igualar
- auto replace: Substituição
-
- # Symbol editor
- sides: lados
-
- # Packages window
- package name: Pacotes
- package status: Status
- package action: Ação
-
- package conflicts: modificações conflitantes
- package modified: modificações locais
- package updates: atualizações disponíveis
- package installed: instalado
- package installable: não instalado
- install package: instalar
- reinstall package: reinstalar
- upgrade package: atualizar
- remove package: remover
-
- installed version: Versão da instalação:
- installable version: Última versão:
- installer size: Dimenções:
- installer status: Status:
- no version: -
-
-############################################################## Buttons/checkboxes/choices in the GUI
-button:
- # Editor
- edit symbol: Editar
- symbol gallery: Galeria
-
- # Style panel
- use for all cards: Use-o para t&odos
- use custom styling options: Opções e&specíficas para este card
-
- # Keywords panel
- insert parameter: Inserir parâmetro...
- refer parameter: Usar Parâmetro...
-
- # Random pack panel
- generate pack: &Gerar Pack
- random seed: &Aleatório
- fixed seed: &Fixar o Aleatório
- add custom pack: Adicionar Packs &Customizado...
-
- # Welcome
- new set: Nova Edição
- open set: Abrir uma Edição
- check updates: Proucurar por Atualizações
- last opened set: Último aberto
-
- # Preferences
- open sets in new window: Abre todas as Edições em uma nova j&anela
- select: &Selecionar...
- browse: &Browse...
- high quality: &Alta qualidade
- show lines: Mostrar &linhas alongo dos campos
- show editing hints: Mostrar caixas e sugestões para serem &editadas
- zoom export: Use zoom e ferramentas giratórias quando você for e&xportar
- check now: Proucurar Agor&a
- always: Futuramente
- if internet connection exists: Se a conexão da internet existir
- never: Nunca
-
- # Column select
- move up: Mover para &Cima
- move down: Mover para &Baixo
- show: &Mostrar
- hide: &Agrupar
-
- # Card select
- export entire set: Entire set
- export generated packs: Gerar packs
- export custom cards selection: Seleção personalizada
- select cards: &Selecionar Cards...
- select all: Selecionar &Todas
- select none: Selecionar &Nem um
- overwrite: Preponderar arquivos antigos
- keep old: Esperar por artigos antigos
- number: Adicionar um número de Nome_dos_Arquivos
- number overwrite: Adiciona um número de Nome_dos_Arquivos, preponderando por exportações futuras
-
- # Auto replace
- use auto replace: Usar a auto substituição
- add item: &Adicionar
- remove item: &Remover
- defaults: Resetar todas os &a base de Dados
- enabled: Apto
- whole word: Combinar todas as palavras somente
-
- # Old style update checker (NOTA: se for de sua vontade remover os aspéctos da versão)
- close: &Fechar
-
- # Packages window
- keep package: Não& alterar
- don't install package: Não& instalar
- install package: &Instalar
- upgrade package: &Atualizações
- reinstall package: Re&instalar
- remove package: &Remover
- install group: &Instalar Tudo
- upgrade group: &Atualizar tudo
- remove group: &Remover tudo
-
-############################################################## Titles in the GUI
-title:
- magic set editor: Magic Set Editor
- %s - magic set editor: %s - Magic Set Editor
- untitled: Em branco
- about: Sobre Magic Set Editor
- symbol editor: Editor de simbolo
- # dialogs
- new set: Nova Edição
- open set: Abrir Edição
- save set: Salvar a Edição Como
- save image: Savar Imagem
- updates available: Atualizações Avaliáveis
- save changes: Savar Alterações?
- select stylesheet: Selecionar o Estilo Moderno
- #preferences
- preferences: Preferências
- global: Global
- display: Tela
- directories: Diretórios
- updates: Atualizações
- update check: Proucurar por Atualizações
- locate apprentice: Local do Apprentice
- # select
- select columns: Selecionar Colunas
- select cards: Selecionar Cards
- select cards export:Selecionar Cards para Exportar
- # slice
- slice image: Imagem posta
- # pack
- custom pack: Pack do Tipo Customizado
- # print
- print preview: Vizualização da Impressão
- # export
- export images: Exportar Imagens
- export cancelled: Exportação Cancelada
- export html: Exportar para HTML
- save html: Exportar para HTML
- # auto replace
- auto replaces: Auto Substituição
-
- # Package Update Window
- packages window: Package Manager
- installing updates: Instalando Atualizações
- cannot create file: Não pode criar arquivos
-
-############################################################## Action (undo/redo) names
-action:
- # List boxes
- add item: Adicionar %s
- remove item: Remover %s
-
- # Text editor
- typing: Tipo
- enter: Inserir
- soft line break: Soft linha
- insert symbol: Inserir Simbolo
- backspace: Apagar
- delete: Deletar
- cut: Recortar
- paste: Colar
- auto replace: Auto Substituição
- correct: Correção mágica
- # Choice/color editors
- change: Alterar %s
-
- # Symbol Actions
- move: Mover %s
- rotate: Girar %s
- shear: Podar %s
- scale: Redefinir %s
- duplicate: Duplicar %s
- reorder parts: Reordenar
- change combine mode: Alterar modo de combinar.
- change shape name: Escolhe o nome da forma.
- group parts: Agrupar
- ungroup parts: Desagrupar
-
- # Symbol Part Actions
- convert to line: Converter em linha
- convert to curve: Converter em curva
- lock point: Bloquear ponto
- move handle: Move manualmente
- move curve: Move curva
- add control point: Adiciona ponto de controle
- delete point: Deleta ponto
- delete points: Deleta os pontos
-
- # Symmetry
- add symmetry: Adiciona simetria
- #remove symmetry: Remove simetria
- move symmetry center: Move o centro da simetria
- move symmetry handle: Troca a orientação da simetria
- change symmetry type: Troca o tipo da simetria
- change symmetry copies: Número de reflexos
-
-
-############################################################## Error messages
-error:
- # File related
- file not found: O arquivo não foi encontrado: '%s' in package '%s'
- file not found package like:
- Arquivo nao encontrado: '%s' in package '%s'
- Se você está tentando abrir um arquivo de outro pacote, use "/package/filename"
- file parse error:
- Erro ao analisar o arquivo: '%s'
- %s
- package not found: Pacotes não encontrado: '%s'
- package out of date: O pacote '%s' (versão %s) está fora dos dado, versão %s é requerida.
- package too new: O pacote '%s' (versão %s) não é compatível com a versão %s, exigida '%s'
- unable to open output file: Erro ao salvar, não foi possível abrir arquivo de saída
- unable to store file: Erro ao salvar, não para armazenar arquivos
- dependency not given:
- O pacote '%s' usa arquivos do pacote'%s', mas não está na lista dependência.
- Para resolver esto, adicione:
- depende de: %s %s
-
- # Script stuff
- has no member: %s como no número '%s'
- can't convert: Você não pode conveter de %s para %s
- has no member value: String "%s" não tem nem um membro '%s'
- can't convert value: Não pode ser convertível "%s" de %s para %s
- unsupported format: Formato não tem suporte: '%s'
- in function:
- %s
- na função de %s
- in parameter:
- Parametros %s: %s
- in keyword reminder:
- %s
- lembrete de palavra-chave no texto '%s'
-
- # Image stuff
- coordinates for blending overlap: Cordenadas para mistura sobreposição
- images used for blending must have the same size: Imagens utilizados para a mistura deve ter o mesmo tamanho
-
- # Error from files
- no game specified: Não há jogo especificado para o %s
- no stylesheet specified for the set: Não estilo especificado para a Edição
- stylesheet and set refer to different game:
- O estilo e a definição não se referem a um mesmo jogo, este é um erro no arquivo stylesheet
- unsupported field type: Sem suporte no campo: '%s'
- unsupported fill type: Sem suporte que preenche: '%s'
- unrecognized value: Unrecognized value: '%s'
- expected key: Esperado key: '%s'
- aborting parsing: Fatal errors encountered, aborting reading.
- newer version:
- %s
- Este arquivo é feito com uma nova versão mais recente do Magic Set Editor (%s)
- Quando abri-lo, alguns aspéctos do arquivo podem ser perdidos.
- É recomendado que você atualize para a versão mais recente.
- Visite http://magicseteditor.sourceforge.net/
- word list type not found: A palavra lista tipo "%s" não foi encontrado (a partir de um tag)
- pack item not found: A embalagem item "%s" não foi encontrado (a partir de um tipo de embalagem)
- pack type not found:
- A embalagem tipo "%s" não foi encontrado (a partir de um tipo de embalagem)
-
- # Update checking
- checking updates failed: A checagem das atualizações falhou.
- no updates: Não existe atualizações disponíveis no momento.
-
- # Stats panel
- dimension not found: Não há estatísticas de dimensões '%s'
-
- # Random packs
- pack type duplicate name:
- Já existe um pack tipo chamado '%s'.
- Por favor, escolha um nome diferente para o arquivo
-
- # Package update window
-# checking updates: Proucurando por atualizações
- can't download installer:
- Não foi possível baixar instalador para o pacote %s para %s.
- Nothing has been installed.
-
- downloading updates: Baixando atualizações (%d de %d)
- installing updates: Atualizando pacotes (%d de %d)
-
- remove packages:
- Isto irá remover %s pacotes, você deseja continuar?
- remove packages modified:
- Isto irá remover %s pacotes, %s desses foram alterados após a instalação.
- Removendo desta maneira não poderá ser desfeito.
-
- Você quer continuar?
- install packages successful: %s Os pacote(s) forão intalado com sucesso.
- remove packages successful: %s Os pacotes(s) forão removido com sucesso.
- change packages successful: %s Os pacotes(s) forão alterados com sucesso.
-
- cannot create file: Não pode criar o Arquivo '%s', deseja continuar a instalação?
-
-############################################################## Types used in scripts / shape names
-type:
- function: função
- collection: coleção
- collection of: coleção de %ss
- object: objeto
- double: número real
- integer: interagir o número
- string: cordão
- boolean: boolean
- color: cor
- image: imagem
- date: dados
- nil: não
-
- # Object types
- package: pacotes
- locale: tradução
- game: jogo
- set: edição
- stylesheet: folha de estilo
- export template: exportar modelo
- symbol: simbolo
- card: card
- cards: cards
- field: campo
- style: estilo
- value: valor
- keyword: palavra-chave
- keywords: palavras-chaves
- pack: tipo de pacote
-
- # Symbol editor shapes
- shape: forma
- shapes: formas
- circle: círculo
- ellipse: elípse
- square: quadrado
- rectangle: retângulo
- triangle: triângulo
- rhombus: losângulo
- pentagon: pentagrama
- hexagon: hexágono
- polygon: polígono
- star: estrela
-
- rotation: rotação
- reflection: reflexão
- group: agrupar
-
- point: ponto
- points: pontos
-
-############################################################## Magic
-package:
- magic.mse-game:
- # Card fields
- name: Nome
- cc: CC
- type: Tipo
- p/t: P/R
- rarity: Raridade
- card name: Nome do Card
-
- # info. da Edição
-
- # descrições/textos de ajuda
-
- magic-mana-*.mse-symbol-font:
- # nota: texto-explicativo deve começar com um espaço, caso contrário, ela é usada como um atalho
- # assim digitando "T" *em qualquer lugar* iria inserir um símbolo (o que seria ruim)
- menu item T: &Simbolo de Virar T
- menu item Q: &Simbolo de Desvivrar Q
- menu item W: Mana &Branca W
- menu item U: Mana &Azul U
- menu item B: Mana &Preto B
- menu item R: Mana &Vermelha R
- menu item G: Mana V&erde G
- menu item S: Mana da N&eve S
- menu item X: Mana Variável &X X
- menu item Y: Mana Variável &Y Y
- menu item Z: Mana Variável &Z Z
- menu item I: Mana I&nfinita I
- menu item colorless: Mana In&color...
- title colorless: Mana Incolor
- message colorless: Adicione o simbolo de mana colorido:
- menu item half: Mei&a mana
- menu item |W: &Branco |W
- menu item |U: &Azul |U
- menu item |B: &Preto |B
- menu item |R: &Vermelho |R
- menu item |G: V&erde |G
- menu item |S: &Neve |S
- menu item 1/2: &Fracionada 1/2
- menu item hybrid: H&íbrido de mana (duas cores)
- menu item W/U: Mana Branca/Azul W/U
- menu item U/B: Mana Azul/Preta U/B
- menu item B/R: Mana Preta/Vermelha B/R
- menu item R/G: Mana Vermelha/Verde R/G
- menu item G/W: Mana Verde/Branca G/W
- menu item W/B: Mana Branco/Preto W/B
- menu item U/R: Mana Azul/Vermelho U/R
- menu item B/G: Mana Preto/Verde B/G
- menu item R/W: Mana Vermelho/Branco R/W
- menu item G/U: Mana Verde/Azul G/U
- menu item hybrid 3: H&íbrido de mana (três cores)
- menu item W/U/B: Mana Branco/Aul/Preto W/U/B
- menu item U/B/R: Mana Azul/Preto/Vermelho U/B/R
- menu item B/R/G: Mana Preto/Vermelho/Verde B/R/G
- menu item R/G/W: Mana Vermelho/Verde/Branco R/G/W
- menu item G/W/U: Mana Verde/Branco/Azul G/W/U
- menu item W/B/R: Mana Branco/Vermelho/Verde W/B/R
- menu item U/R/G: Mana Azul/Vermelho/Verde U/R/G
- menu item B/G/W: Mana Preto/Verde/Branco B/G/W
- menu item R/W/U: Mana Vermelho/Branco/Azul R/W/U
- menu item G/U/B: Mana Verde/Azul/Preto G/U/B
-
+mse version: 0.3.8
+installer group: translations/Portuguese/Brazilian
+full name: Português do Brasil (Brazilian Portuguese)
+version: 2009-07-23
+icon: br.png
+
+#By Luciano da Silva
+############################################################## Menu items
+menu:
+ file: &Arquivo
+ new set: &Novo... Ctrl+N
+ open set: &Abrir... Ctrl+O
+ save set: &Salvar Ctrl+S
+ save set as: Salvar &Como... F12
+ export: &Exportar
+ export html: &HTML...
+ export image: &Imagem do card...
+ export images: Todas as I&magens dos cards...
+ export apprentice: &Apprentice...
+ export mws: Magic &Workstation...
+ check updates: &Atualizações...
+ print preview: V&izualização da Imprensão...
+ print: &Imprimir... Ctrl+P
+ reload data: Recarregar Dados Ctrl+F5
+ exit: S&air Alt+F4
+
+ edit: &Editar
+ undo: &Desfazer%s Ctrl+Z
+ redo: &Refazer%s Ctrl+Y
+ cut: Cor&tar Ctrl+X
+ copy: &Copiar Ctrl+C
+ paste: &Colar Ctrl+V
+ find: &Encontrar Ctrl+F
+ find next: Encontrar &Próximo F3
+ replace: S&ubstituir Ctrl+H
+ auto replace: Auto Sub&stituição...
+ preferences: &Preferencias...
+
+ cards: &Cards
+ previous card: Selecionar card &Anterior PgUp
+ next card: Selecionar Próximo ca&rd PgDn
+ add card: &Adicionar Card Ctrl+Enter
+ add cards: Adicionar &Multiplos Cards...
+ remove card: &Deletar Card Selecionado
+ orientation: &Orientação
+ rotate 0: &Normal
+ rotate 270: Girar à 90° &no Sentido Horário
+ rotate 90: Girar à 90° no Sentido Ant&i-Horário
+ rotate 180: Girar à 180°, &Cima, Baixo
+ card list columns: Lista de Coluna dos C&ards...
+
+ keywords: &Palavra Chave
+ previous keyword: Selecionar &Palavra Chave Anterior PgUp
+ next keyword: Selecionar Próxima Pa&lavra Chave PgDn
+ add keyword: &Adicionar Palavra Chave Ctrl+Enter
+ remove keyword: &Remover Palavra Chave Selecionada Del
+
+ format: F&ormatar
+ bold: &Negrito Ctrl+B
+ italic: &Italico Ctrl+I
+ symbols: &Simbolos Ctrl+M
+ reminder text: &Texto Explicativo Ctrl+R
+ insert symbol: I&nserir Símbolo
+ # spelling
+ no spelling suggestions: (Sem sugestões)
+
+ graph: &Grafico
+ pie: &Pizza 1
+ bar: &Barra 2
+ stack: &Barras Empilhadas 3
+ scatter: G&áfico de linhas 4
+ scatter pie: Sc&atter-Pie 5
+
+ window: &Janela
+ new window: &Nova Janela
+ cards tab: C&ards F5
+ set info tab: I&nformação da Edição F6
+ style tab: Est&ilo F7
+ keywords tab: &Palavras Chaves F8
+ stats tab: Es&tatísticas F9
+ random pack tab: Pa&cks Aleatório
+
+ help: &Ajuda
+ index: &Indíce... F1
+ website: &Site...
+ about:s &About Magic Set Editor...
+
+ # symbol editor
+ &Arquivo
+ new symbol: &Novo... Ctrl+N
+ open symbol: &Abrir... Ctrl+O
+ save symbol: &Salvar Ctrl+S
+ save symbol as: Salvar &Como... F12
+ store symbol: U&sar Simbolo Ctrl+Enter
+ close symbol editor: Sair Alt+F4
+
+ duplicate: &Duplicar Ctrl+D
+ group: A&grupar Ctrl+G
+ ungroup: &Desagrupar Ctrl+U
+
+ tool: &Ferramentas
+ select: &Selecionar F5
+ rotate: &Girar F6
+ points: &Pontos F7
+ basic shapes: &Formas Básicas F8
+ symmetry: S&imétrico F9
+ paint: P&intar F10
+
+############################################################## Menu help texts
+help:
+ welcome: Bem-Vindo ao Magic Set Editor
+
+ file:
+ new set: Criar uma nova Edição.
+ open set: Abrir uma Edição existente.
+ last opened set: Abrir '%s'
+ save set: Salva a Edição.
+ save set as: Salva a Edição com um nome diferente.
+ export: Exportar a Edição...
+ export html: Exporta a Edição como uma página da Internet.
+ export image: Exporta o card selecionado como um arquivo de imagem.
+ export images: Exporta todos os cards como um arquivo de imagem.
+ export apprentice: Exporta a Edição para que se possa ser usada no Apprentice.
+ export mws: Exporta a Edição para que se possa jogar com ela no Magic Workstation.
+ check updates: Instala pacotes de Atualizações.
+ print preview: Mostra todos os cards como se fossem para serem Impressos.
+ print: Imprimi os cards dessa Edição.
+ reload data: Recarrega todos os Dados.
+ exit: Fecha o Magic Set Editor; e pergunta se você gostaria de salvar a suas alterações.
+
+ edit:
+ undo: Desfaz a última ação.
+ redo: Resfaz a última ação.
+ cut: Move o texto selecionado para à Área de Transferência.
+ cut card: Move o card selecionado para à Área de Transferência.
+ cut keyword: Move a Palavra Chave selecionada para à Área de Transferência.
+ copy: Coloca o texto selecionado na Área de Transferência.
+ copy card: Coloca o Card selecionado na Área de Transferência.
+ copy keyword: Coloca a Palavra Chave selecionada na Área de Transferência.
+ paste: Introduz o texto que está na Área de Transferência.
+ paste card: Introduz o Card que está na Área de Transferência.
+ paste keyword: Introduz a Palavra Chave que está na Área de Transferência.
+ find: Busca pelo texto do card.
+ find next: Busca pelo próximo texto do card.
+ replace: Substitui o texto dos cards.
+ auto replace: O texto deve ser substituido automaticamente?
+ preferences: configurações do Magic Set Editor.
+
+ cards:
+ previous card: Seleciona o card anterior da lista.
+ next card: Seleciona o próximo card da lista.
+ add card: Adicione um novo, em branco, card para esta Edição.
+ add cards: Adicione multiplos cards à esta Edição.
+ remove card: Apaga o card selecionado desta Edição.
+ orientation: Orientação do card exibido.
+ rotate card: Gira o card exibido à 90° no sentido horário.
+ rotate 0: O card fica na posição original.
+ rotate 270: Aprensenta o card girado no sentido horário.
+ rotate 90: Apresenta o card selecionado no sentido anti-horário.
+ rotate 180: Mostra o card selecionado de cabeça para baixo.
+ card list columns: Seleciona qual coluna deve ser mostradra em uma determinada ordem.
+
+ keywords:
+ previous keyword: Seleciona uma Palavra-Chave anterior da lista.
+ next keyword: Seleciona uma próxima Palavra-Chave da lista.
+ add keyword: Adiciona uma nova palavra chave na lista.
+ remove keyword: Deleta a Palavra-Chave selecionada da lista.
+
+ format:
+ bold: Faça o texto selecionado transformar-se em Negrito.
+ italic: Faça o texto selecionado transformar-se em Itálico.
+ symbols: Transforma uma parte do texto selecionada em simbolos.
+ reminder text: Mostra ou oculta o Texto Explicativo de uma Palavra-Chave selecionado.
+ # spelling
+ no spelling suggestions: Não há sugestões para poder corrigir este erro.
+
+ graph:
+ pie: Um gráfico no formato de Pizza, o tamanho de sua fatia indica o número de cards.
+ bar: Um gráfico no formato de Barras, a altura das barras indica o número de card.
+ stack: Um gráfico de Barra com Barras em pilhadas.
+ scatter: Um scatter plot, o tamanho indica o número de cards.
+ scatter pie: A dispersão parcela em que cada item é um gráfico de um pequena torta.
+
+ window:
+ new window: &Cria uma outra janela para editar a mesma Edição.
+ cards tab: &Edita o card da Edição.
+ set info tab: &Edita informações sobre a Edição, seu criador, etc.
+ style tab: &Escolhe o estilo dos cards.
+ keywords tab: &Define Palavra-Chaves extras para esta Edição.
+ stats tab: &Mostra todas as estatísticas sobre o card na Edição.
+ random pack tab: &Teste você mesmo, veja o que você ganharia se abrisse packs aleatórios agora.
+
+ help:
+ index:
+ website:
+ about:
+
+ # Cards panel
+ collapse notes: Oculta a caixa de anotações do card.
+ expand notes: Mostra a caixa de anotações do card.
+ # Random pack panel
+ random seed: Packs diferentes se for de sua vontade podem ser gerados em tempos diferentes.
+ fixed seed: Usando a mesma maneira, você poderá gerar packs 'aleatórios' só que por números.
+ seed: Veja o número gerado pelo o Aleatório. Usando o mesmo número você poderá escolher aquele mesmo pack gerado 'aleatóriamente'.
+ edit pack type: Clique aqui para editar o tipo do pack.
+ number of packs: O número de %ss para ser gerado
+
+ # Preferences
+ app language:
+ Nota: Você deve reiniciar o MSE para que suas alterações tenhão efeito.
+ zoom export:
+ (Em off, os cards são exportados
+ e copiados 100% no tamanho e rotação normal)
+
+ # apprentice export
+ set code: Um conjunto de códigos de dois caracteres, que é utilizado pelo Apprendice para se referir a uma Edição.
+
+ # Symbol editor
+ new symbol: Cria um novo simbolo.
+ open symbol: Abre o simbolo.
+ save symbol: Salva o simbolo.
+ save symbol as: Salva o simbolo com um nome diferente.
+ store symbol: Usa o simbolo na Edição corrente.
+ close symbol editor: Sai do Editor de simbolo.
+
+ duplicate: Duplica os pontos selecionados.
+ group: Agrupa os pontos selecionados.
+ ungroup: Desagrupa o que esta selecionado.
+
+ grid: Mostra as linhas guias.
+ snap: Com a ferramenta Ímã, centralize os objetos selecionados.
+
+ tool:
+ select: Seleciona e move a Forma.
+ rotate: Seleciona e gira a Forma.
+ points: Edita os pontos de um simbolo.
+ basic shapes: Adiciona Formas de Simbolos como retângulos ou círculos.
+ symmetry: Adiciona simetrias ao simbolo.
+ paint: Pinta a forma usando um paintbrush.
+
+ select editor:
+ merge: Junta esta forma com outra.
+ subtract: Subtrai esta forma com outra.
+ intersect: Intersecione esta forma com outra, somente a área que são as formas.
+ difference: Diferencia esta forma com outra, a área criada não será uma forma.
+ overlap: Coloque esta forma, e a sua borda acima da forma dela.
+ border: A forma desta forma passa a ser sua borda.
+
+ drag to shear: Arraste para tosar o selecionado %s.
+ drag to rotate: Arraste para girar selecionado %s, ângulo Ctrl restringe a múltiplos de 15 degrees.
+ drag to resize: Arraste para redimensionar o objeto selecionado %s, Ctrl restringe tamanho.
+ click to select shape: Clique para selecionar forma, arraste a forma circular, duplo clique para editar forma.
+
+ ellipse: Desenhe círculos e elípses.
+ rectangle: Desenhe retângulos e triângulos.
+ polygon: Desenhe triângulos, pentagramas e outros polígonos regulares.
+ star: Desenhe estrelas.
+ sides: O número de lados de um polígono e de pontas de uma estrela.
+ drag to draw shape: Arraste para dar forma a uma forma novamente, Ctrl constrai a forma, Shift centraliza a forma.
+ draw ellipse: Clique e arraste para desenhar uma elipse, pressione Ctrl para um círculo.
+ draw rectangle: Clique e arraste para desenhar um retângulo, pressione Ctrl para um quadrado.
+ draw polygon: Clique e arraste para desenhar um polígono.
+ draw star: Clique e arraste para desenhar uma estrela.
+
+ line segment: Faz com que a linha selecionada torna-se um segmento de uma reta.
+ curve segment: Faz com que a linha selecionada torna-se um segmento de uma curva.
+ free point: Permite que os pontos de controle ao ponto a ser movido possa a ser movido livremente.
+ smooth point: Faz o ponto selecionado torna-se suave, colocando a dois pontos de controle oposto ao outro.
+ symmetric point: Faz o ponto selecionado torna-se simétrico.
+ drag to move curve: Arraste para mover as curvas.
+ drag to move line: Alt + arraste para mover a curva; um clique duplo serve para adicionar um ponto sobre esta linha.
+ drag to move point: Clique e arraste para mover o controle de ponto; dee um clique duplo para remover o ponto.
+ rotation: Simetria rotacional (rodar).
+ reflection: Simetria Reflexional (espelho).
+ add symmetry: Adiciona simbolos simétricos.
+ remove symmetry: Remove esta simetria.
+ copies: Números de reflexão (incluindo o original).
+
+ # Card select
+ filename format: (Use {card.name} para nomear o card; O filetype é determinado como a base na extensão).
+
+############################################################## Toolbar
+tool:
+ undo: Desfazer
+ redo: Refazer
+
+ cards tab: Cards
+ set info tab: Informação da Edição
+ style tab: Estilo
+ keywords tab: Palavras-Chaves
+ stats tab: Estatísticas
+ random pack tab: Aleatório
+
+ # symbol editor
+ store symbol: Usar!
+
+ grid: Rede
+ snap: Ímã
+
+ select: Selecionar
+ rotate: Girar
+ points: Pontos
+ basic shapes: Formas Básicas
+ symmetry: Simetria
+ paint: Pintar
+
+ merge: Soldar
+ subtract: Subtrair
+ intersect: Intersessão
+ difference: Diferença
+ overlap: Sobre por
+ border: Borda
+
+ ellipse: Elipse
+ rectangle: Retângulo
+ polygon: Polígono
+ star: Estrela
+
+ rotation: Rotação
+ reflection: Reflexão
+ add symmetry: Adicionar
+ remove symmetry: Remover
+
+ line segment: Linha
+ curve segment: Curva
+ free point: Livre
+ smooth point: Fumaça
+ symmetric point: Simétrico
+
+############################################################## Toolbar help text
+tooltip:
+ cards tab:
+ set info tab: Informação da Edição
+ style tab:
+ keywords tab:
+ stats tab:
+ random pack tab: Packs aleatórios
+
+ new set: Nova Edição
+ open set: Abrir Edição
+ save set: Savar Edição
+ export: Exportar Edição
+
+ cut: Cortar
+ copy: Copiar
+ paste: Colar
+ undo: Desfazer%s
+ redo: Refazer%s
+
+ add card: Adiciona um card
+ remove card: Remove o card selecionado
+ rotate card: Gira o card
+
+ add keyword: Adiciona Palavra-Chave
+ remove keyword: Remove a Palavra-Chave selecionada
+
+ bold: Negrito
+ italic: Itálico
+ symbols: Simbolo
+ reminder text: Texto Explicativo
+
+ pie: Gráfico em Pizza
+ bar: Gráfico em Barras
+ stack: Empilhadas por gráficos de Barras
+ scatter: Scatter Plot
+ scatter pie: Scatter-Pie plot
+
+ cards tab:
+ set info tab: Informação da Edição
+ style tab: Estilo do Card
+ keywords tab:
+ stats tab:
+
+ # symbol editor
+ store symbol: Usar simbolo na Edição corrente
+
+ grid: Mostrar linhas
+ snap: Ímã para linhas
+
+ select: Selecionar (F5)
+ rotate: Girar (F6)
+ points: Pontos (F7)
+ basic shapes: Formas Básicas (F8)
+ symmetry: Simetria (F9)
+ paint: Pintar a Forma (F10)
+
+ merge: Solda as Formas selecionadas
+ subtract: Subtrai as formas selecionadas
+ intersect: Intersecção com formas abaixo
+ difference: Diferem das formas abaixo
+ overlap: Local acima outras formas
+ border: Desenhe como a borda
+
+ ellipse: Círculo / Elípse
+ rectangle: Quadrado / Retângulo
+ polygon: Polígono
+ star: estrela
+
+ rotation: Simetria rotacional (roda)
+ reflection: Simetria Reflexional (espelho)
+ add symmetry: Adicionar simetria à peça selecionada
+ remove symmetry: Remove esta simetria
+
+ line segment: Para a linha tornar-se do tipo straigt
+ curve segment: Para curva
+ free point: Desagrupa os pontos
+ smooth point: Suavilização dos pontos
+ symmetric point: Faça os pontos torna-sem simétricos
+
+############################################################## Labels in the GUI
+label:
+ # Cards tab
+ card notes: Informações Específica deste card
+ # Keywords tab
+ keyword: Palavra chave
+ match: Jogos
+ mode: Modo
+ uses: Usos
+ reminder: Texto Explicativo
+ rules: Regra Adicional
+ standard keyword:
+ Esta é uma palavra-chave padrão de %s, você não pode editá-la.
+ Você pode copiar e editar a cópia e seus precedentes.
+
+ # Style tab
+ styling options: Opção de Estilo
+
+ # Random pack panel
+ pack selection: Seleção do Pack
+ pack totals: Total
+ pack name: Nome do pack
+ seed: Semente
+ total cards: Total
+
+ # Open dialogs
+ all files Todos os arquivos
+
+ # Other set window dialogs
+ save changes:
+ A Edição está '%s' sendo modificada.
+
+ Você tem certeza que deseja salvar as suas alterações?
+
+ # New set window
+ game type: &Estilo de Jogo:
+ style type: &Estilo do Tipo:
+
+ stylesheet not found:
+ A Edição está a tentar abrir utiliza a folha de estilo "%s".
+ Esta folha de estilo não é compatível com a do sistema padrão. Por favor escolha uma folha de estilo alternativa.
+
+ # Preferences
+ language: Linguagem
+ windows: Abrir Edição
+ app language: Linguagem da sua interface:
+ card display: Visualização do card
+ zoom: &Zoom:
+ percent of normal: % de tamanho normal
+ external programs: Programas externos
+ apprentice: &Apprentice:
+ apprentice exe: Execultável do Apprentice
+ check at startup: Proucurar por novo gatilho de inicialização
+ checking requires internet:
+ Proucura por atualizações que requeira uma conexão com a internet.
+ Quando não se tem uma conexão com a internet, as atualizações não será proucurada.
+
+ Suas Informações pessoais não serão vistas durante a proucura por atualizações.
+
+ # Column select
+ select columns: Selecione a coluna que você deseja visualizar
+ columns: Colunas:
+
+ # Card select / images export
+ select cards: Cards para exportar
+ selected card count: %s Cards que você deseja exportar
+ select cards print: Selecione os cards para imprimir
+ filename format: &Formato:
+ filename conflicts: &Manejar duplicatas dos Nome_dos_Arquivos:
+ export filenames: Nome_dos_Arquivos
+ filename is ignored: (O Nome_dos_Arquivos serão ignorados)
+
+ # apprentice export
+ set code: Código da &Edição:
+ apprentice export cancelled: Exportação para o Apprentice é cancelada
+
+ # Html export
+ html template: Template:
+ html export options: Opções de Exportação
+
+ # Image slicer
+ original: Original:
+ result: Resultado:
+ size: Dimenção
+ original size: &Tamanho Original
+ size to fit: Tamanho para &ajuste
+ force to fit: F&orçar o ajuste
+ custom size: &Tamanho personalizado
+ selection: Seleção
+ selection left: &Esquerdo
+ selection top: &Topo
+ selection width: &Largura
+ selection height: &Altura
+ zoom: Zoom
+ fix aspect ratio: Fixão os aspéctos de proporção (altura/largura)
+ zoom amount: Zoom
+ zoom amount x: Zoom &X
+ zoom amount y: Zoom &Y
+ zoom %: %
+ filter: Filtro
+ sharpen filter: &Filtro agunçado
+
+ # Auto replace
+ auto match: Igualar
+ auto replace: Substituição
+
+ # Symbol editor
+ sides: lados
+
+ # Packages window
+ package name: Pacotes
+ package status: Status
+ package action: Ação
+
+ package conflicts: modificações conflitantes
+ package modified: modificações locais
+ package updates: atualizações disponíveis
+ package installed: instalado
+ package installable: não instalado
+ install package: instalar
+ reinstall package: reinstalar
+ upgrade package: atualizar
+ remove package: remover
+
+ installed version: Versão da instalação:
+ installable version: Última versão:
+ installer size: Dimenções:
+ installer status: Status:
+ no version: -
+
+############################################################## Buttons/checkboxes/choices in the GUI
+button:
+ # Editor
+ edit symbol: Editar
+ symbol gallery: Galeria
+
+ # Style panel
+ use for all cards: Use-o para t&odos
+ use custom styling options: Opções e&specíficas para este card
+
+ # Keywords panel
+ insert parameter: Inserir parâmetro...
+ refer parameter: Usar Parâmetro...
+
+ # Random pack panel
+ generate pack: &Gerar Pack
+ random seed: &Aleatório
+ fixed seed: &Fixar o Aleatório
+ add custom pack: Adicionar Packs &Customizado...
+
+ # Welcome
+ new set: Nova Edição
+ open set: Abrir uma Edição
+ check updates: Proucurar por Atualizações
+ last opened set: Último aberto
+
+ # Preferences
+ open sets in new window: Abre todas as Edições em uma nova j&anela
+ select: &Selecionar...
+ browse: &Browse...
+ high quality: &Alta qualidade
+ show lines: Mostrar &linhas alongo dos campos
+ show editing hints: Mostrar caixas e sugestões para serem &editadas
+ zoom export: Use zoom e ferramentas giratórias quando você for e&xportar
+ check now: Proucurar Agor&a
+ always: Futuramente
+ if internet connection exists: Se a conexão da internet existir
+ never: Nunca
+
+ # Column select
+ move up: Mover para &Cima
+ move down: Mover para &Baixo
+ show: &Mostrar
+ hide: &Agrupar
+
+ # Card select
+ export entire set: Entire set
+ export generated packs: Gerar packs
+ export custom cards selection: Seleção personalizada
+ select cards: &Selecionar Cards...
+ select all: Selecionar &Todas
+ select none: Selecionar &Nem um
+ overwrite: Preponderar arquivos antigos
+ keep old: Esperar por artigos antigos
+ number: Adicionar um número de Nome_dos_Arquivos
+ number overwrite: Adiciona um número de Nome_dos_Arquivos, preponderando por exportações futuras
+
+ # Auto replace
+ use auto replace: Usar a auto substituição
+ add item: &Adicionar
+ remove item: &Remover
+ defaults: Resetar todas os &a base de Dados
+ enabled: Apto
+ whole word: Combinar todas as palavras somente
+
+ # Old style update checker (NOTA: se for de sua vontade remover os aspéctos da versão)
+ close: &Fechar
+
+ # Packages window
+ keep package: Não& alterar
+ don't install package: Não& instalar
+ install package: &Instalar
+ upgrade package: &Atualizações
+ reinstall package: Re&instalar
+ remove package: &Remover
+ install group: &Instalar Tudo
+ upgrade group: &Atualizar tudo
+ remove group: &Remover tudo
+
+############################################################## Titles in the GUI
+title:
+ magic set editor: Magic Set Editor
+ %s - magic set editor: %s - Magic Set Editor
+ untitled: Em branco
+ about: Sobre Magic Set Editor
+ symbol editor: Editor de simbolo
+ # dialogs
+ new set: Nova Edição
+ open set: Abrir Edição
+ save set: Salvar a Edição Como
+ save image: Savar Imagem
+ updates available: Atualizações Avaliáveis
+ save changes: Savar Alterações?
+ select stylesheet: Selecionar o Estilo Moderno
+ #preferences
+ preferences: Preferências
+ global: Global
+ display: Tela
+ directories: Diretórios
+ updates: Atualizações
+ update check: Proucurar por Atualizações
+ locate apprentice: Local do Apprentice
+ # select
+ select columns: Selecionar Colunas
+ select cards: Selecionar Cards
+ select cards export:Selecionar Cards para Exportar
+ # slice
+ slice image: Imagem posta
+ # pack
+ custom pack: Pack do Tipo Customizado
+ # print
+ print preview: Vizualização da Impressão
+ # export
+ export images: Exportar Imagens
+ export cancelled: Exportação Cancelada
+ export html: Exportar para HTML
+ save html: Exportar para HTML
+ # auto replace
+ auto replaces: Auto Substituição
+
+ # Package Update Window
+ packages window: Package Manager
+ installing updates: Instalando Atualizações
+ cannot create file: Não pode criar arquivos
+
+############################################################## Action (undo/redo) names
+action:
+ # List boxes
+ add item: Adicionar %s
+ remove item: Remover %s
+
+ # Text editor
+ typing: Tipo
+ enter: Inserir
+ soft line break: Soft linha
+ insert symbol: Inserir Simbolo
+ backspace: Apagar
+ delete: Deletar
+ cut: Recortar
+ paste: Colar
+ auto replace: Auto Substituição
+ correct: Correção mágica
+ # Choice/color editors
+ change: Alterar %s
+
+ # Symbol Actions
+ move: Mover %s
+ rotate: Girar %s
+ shear: Podar %s
+ scale: Redefinir %s
+ duplicate: Duplicar %s
+ reorder parts: Reordenar
+ change combine mode: Alterar modo de combinar.
+ change shape name: Escolhe o nome da forma.
+ group parts: Agrupar
+ ungroup parts: Desagrupar
+
+ # Symbol Part Actions
+ convert to line: Converter em linha
+ convert to curve: Converter em curva
+ lock point: Bloquear ponto
+ move handle: Move manualmente
+ move curve: Move curva
+ add control point: Adiciona ponto de controle
+ delete point: Deleta ponto
+ delete points: Deleta os pontos
+
+ # Symmetry
+ add symmetry: Adiciona simetria
+ #remove symmetry: Remove simetria
+ move symmetry center: Move o centro da simetria
+ move symmetry handle: Troca a orientação da simetria
+ change symmetry type: Troca o tipo da simetria
+ change symmetry copies: Número de reflexos
+
+
+############################################################## Error messages
+error:
+ # File related
+ file not found: O arquivo não foi encontrado: '%s' in package '%s'
+ file not found package like:
+ Arquivo nao encontrado: '%s' in package '%s'
+ Se você está tentando abrir um arquivo de outro pacote, use "/package/filename"
+ file parse error:
+ Erro ao analisar o arquivo: '%s'
+ %s
+ package not found: Pacotes não encontrado: '%s'
+ package out of date: O pacote '%s' (versão %s) está fora dos dado, versão %s é requerida.
+ package too new: O pacote '%s' (versão %s) não é compatível com a versão %s, exigida '%s'
+ unable to open output file: Erro ao salvar, não foi possível abrir arquivo de saída
+ unable to store file: Erro ao salvar, não para armazenar arquivos
+ dependency not given:
+ O pacote '%s' usa arquivos do pacote'%s', mas não está na lista dependência.
+ Para resolver esto, adicione:
+ depende de: %s %s
+
+ # Script stuff
+ has no member: %s como no número '%s'
+ can't convert: Você não pode conveter de %s para %s
+ has no member value: String "%s" não tem nem um membro '%s'
+ can't convert value: Não pode ser convertível "%s" de %s para %s
+ unsupported format: Formato não tem suporte: '%s'
+ in function:
+ %s
+ na função de %s
+ in parameter:
+ Parametros %s: %s
+ in keyword reminder:
+ %s
+ lembrete de palavra-chave no texto '%s'
+
+ # Image stuff
+ coordinates for blending overlap: Cordenadas para mistura sobreposição
+ images used for blending must have the same size: Imagens utilizados para a mistura deve ter o mesmo tamanho
+
+ # Error from files
+ no game specified: Não há jogo especificado para o %s
+ no stylesheet specified for the set: Não estilo especificado para a Edição
+ stylesheet and set refer to different game:
+ O estilo e a definição não se referem a um mesmo jogo, este é um erro no arquivo stylesheet
+ unsupported field type: Sem suporte no campo: '%s'
+ unsupported fill type: Sem suporte que preenche: '%s'
+ unrecognized value: Unrecognized value: '%s'
+ expected key: Esperado key: '%s'
+ aborting parsing: Fatal errors encountered, aborting reading.
+ newer version:
+ %s
+ Este arquivo é feito com uma nova versão mais recente do Magic Set Editor (%s)
+ Quando abri-lo, alguns aspéctos do arquivo podem ser perdidos.
+ É recomendado que você atualize para a versão mais recente.
+ Visite http://magicseteditor.sourceforge.net/
+ word list type not found: A palavra lista tipo "%s" não foi encontrado (a partir de um tag)
+ pack item not found: A embalagem item "%s" não foi encontrado (a partir de um tipo de embalagem)
+ pack type not found:
+ A embalagem tipo "%s" não foi encontrado (a partir de um tipo de embalagem)
+
+ # Update checking
+ checking updates failed: A checagem das atualizações falhou.
+ no updates: Não existe atualizações disponíveis no momento.
+
+ # Stats panel
+ dimension not found: Não há estatísticas de dimensões '%s'
+
+ # Random packs
+ pack type duplicate name:
+ Já existe um pack tipo chamado '%s'.
+ Por favor, escolha um nome diferente para o arquivo
+
+ # Package update window
+# checking updates: Proucurando por atualizações
+ can't download installer:
+ Não foi possível baixar instalador para o pacote %s para %s.
+ Nothing has been installed.
+
+ downloading updates: Baixando atualizações (%d de %d)
+ installing updates: Atualizando pacotes (%d de %d)
+
+ remove packages:
+ Isto irá remover %s pacotes, você deseja continuar?
+ remove packages modified:
+ Isto irá remover %s pacotes, %s desses foram alterados após a instalação.
+ Removendo desta maneira não poderá ser desfeito.
+
+ Você quer continuar?
+ install packages successful: %s Os pacote(s) forão intalado com sucesso.
+ remove packages successful: %s Os pacotes(s) forão removido com sucesso.
+ change packages successful: %s Os pacotes(s) forão alterados com sucesso.
+
+ cannot create file: Não pode criar o Arquivo '%s', deseja continuar a instalação?
+
+############################################################## Types used in scripts / shape names
+type:
+ function: função
+ collection: coleção
+ collection of: coleção de %ss
+ object: objeto
+ double: número real
+ integer: interagir o número
+ string: cordão
+ boolean: boolean
+ color: cor
+ image: imagem
+ date: dados
+ nil: não
+
+ # Object types
+ package: pacotes
+ locale: tradução
+ game: jogo
+ set: edição
+ stylesheet: folha de estilo
+ export template: exportar modelo
+ symbol: simbolo
+ card: card
+ cards: cards
+ field: campo
+ style: estilo
+ value: valor
+ keyword: palavra-chave
+ keywords: palavras-chaves
+ pack: tipo de pacote
+
+ # Symbol editor shapes
+ shape: forma
+ shapes: formas
+ circle: círculo
+ ellipse: elípse
+ square: quadrado
+ rectangle: retângulo
+ triangle: triângulo
+ rhombus: losângulo
+ pentagon: pentagrama
+ hexagon: hexágono
+ polygon: polígono
+ star: estrela
+
+ rotation: rotação
+ reflection: reflexão
+ group: agrupar
+
+ point: ponto
+ points: pontos
+
+############################################################## Magic
+package:
+ magic.mse-game:
+ # Card fields
+ name: Nome
+ cc: CC
+ type: Tipo
+ p/t: P/R
+ rarity: Raridade
+ card name: Nome do Card
+
+ # info. da Edição
+
+ # descrições/textos de ajuda
+
+ magic-mana-*.mse-symbol-font:
+ # nota: texto-explicativo deve começar com um espaço, caso contrário, ela é usada como um atalho
+ # assim digitando "T" *em qualquer lugar* iria inserir um símbolo (o que seria ruim)
+ menu item T: &Simbolo de Virar T
+ menu item Q: &Simbolo de Desvivrar Q
+ menu item W: Mana &Branca W
+ menu item U: Mana &Azul U
+ menu item B: Mana &Preto B
+ menu item R: Mana &Vermelha R
+ menu item G: Mana V&erde G
+ menu item S: Mana da N&eve S
+ menu item X: Mana Variável &X X
+ menu item Y: Mana Variável &Y Y
+ menu item Z: Mana Variável &Z Z
+ menu item I: Mana I&nfinita I
+ menu item colorless: Mana In&color...
+ title colorless: Mana Incolor
+ message colorless: Adicione o simbolo de mana colorido:
+ menu item half: Mei&a mana
+ menu item |W: &Branco |W
+ menu item |U: &Azul |U
+ menu item |B: &Preto |B
+ menu item |R: &Vermelho |R
+ menu item |G: V&erde |G
+ menu item |S: &Neve |S
+ menu item 1/2: &Fracionada 1/2
+ menu item hybrid: H&íbrido de mana (duas cores)
+ menu item W/U: Mana Branca/Azul W/U
+ menu item U/B: Mana Azul/Preta U/B
+ menu item B/R: Mana Preta/Vermelha B/R
+ menu item R/G: Mana Vermelha/Verde R/G
+ menu item G/W: Mana Verde/Branca G/W
+ menu item W/B: Mana Branco/Preto W/B
+ menu item U/R: Mana Azul/Vermelho U/R
+ menu item B/G: Mana Preto/Verde B/G
+ menu item R/W: Mana Vermelho/Branco R/W
+ menu item G/U: Mana Verde/Azul G/U
+ menu item hybrid 3: H&íbrido de mana (três cores)
+ menu item W/U/B: Mana Branco/Aul/Preto W/U/B
+ menu item U/B/R: Mana Azul/Preto/Vermelho U/B/R
+ menu item B/R/G: Mana Preto/Vermelho/Verde B/R/G
+ menu item R/G/W: Mana Vermelho/Verde/Branco R/G/W
+ menu item G/W/U: Mana Verde/Branco/Azul G/W/U
+ menu item W/B/R: Mana Branco/Vermelho/Verde W/B/R
+ menu item U/R/G: Mana Azul/Vermelho/Verde U/R/G
+ menu item B/G/W: Mana Preto/Verde/Branco B/G/W
+ menu item R/W/U: Mana Vermelho/Branco/Azul R/W/U
+ menu item G/U/B: Mana Verde/Azul/Preto G/U/B
+
diff --git a/data/vanguard-forum.mse-export-template/export-template b/data/vanguard-forum.mse-export-template/export-template
index 620d55c2..8de4fa25 100644
--- a/data/vanguard-forum.mse-export-template/export-template
+++ b/data/vanguard-forum.mse-export-template/export-template
@@ -1,189 +1,189 @@
-mse version: 0.3.8
-short name: Forum
-full name: Spoiler Exporter
-position hint: 002
-icon: icon.png
-version: 2010-05-11
-installer group: Magic Vanguard/Export/forum
-
-depends on:
- package: vanguard.mse-game
- version: 2007-09-23
-
-game: vanguard
-file type: *.txt|*.txt|*.*|*.*
-
-# By Pichoro
-# Based on code by Idle Muse, Innuendo and Seeonee
-
-option field:
- type: choice
- name: forum
- choice: mse
- choice: mtgsalvation
- description: What forum should the spoiler be formatted for?
-option field:
- type: boolean
- name: text costs
- initial: yes
- description: Should mana costs be plain text? Symbols usually can't be copied and pasted.
-option field:
- type: text
- name: creator
- description: The creator of the set.
-option field:
- type: boolean
- name: include notes
- description: Should card notes be included?
- initial: no
-script:
- # Formats rules text w/ only italic tags.
- forum_rules_filter_plain := replace@(match:"[(]", replace:"[i](")+
- replace@(match:"[)]", replace: ")[/i]")
- # Formats rules text w/ mana symbols. MSE and mtgsally use same bbcode tags for mana.
- forum_rules_filter_mtgsally_mse :=
- # Italics around parenthesis.
- replace@(match:"[(]", replace:"[i](")+
- replace@(match:"[)]", replace: ")[/i]")+
- # 2/C's don't appear in regular english, format them all.
- replace@(match:"2/W", replace:":sym2w:")+
- replace@(match:"2/U", replace:":sym2u:")+
- replace@(match:"2/B", replace:":sym2b:")+
- replace@(match:"2/R", replace:":sym2r:")+
- replace@(match:"2/G", replace:":sym2g:")+
- # C/D's don't appear in regular english, format them all.
- replace@(match:"W/U", replace:":symwu:")+
- replace@(match:"W/B", replace:":symwb:")+
- replace@(match:"U/B", replace:":symub:")+
- replace@(match:"U/R", replace:":symur:")+
- replace@(match:"B/R", replace:":symbr:")+
- replace@(match:"B/G", replace:":symbg:")+
- replace@(match:"R/G", replace:":symrg:")+
- replace@(match:"R/W", replace:":symrw:")+
- replace@(match:"G/W", replace:":symgw:")+
- replace@(match:"G/U", replace:":symgu:")+
- # Various positions for taps, untaps and chaos symbols.
- replace@(match:" T ", replace:" :symtap: ")+
- replace@(match:" Q ", replace:" :symq: ")+
- replace@(match:" C ", replace:" :symch: ")+
- replace@(match:"T,", replace:":symtap:,")+
- replace@(match:"Q,", replace:":symq:,")+
- replace@(match:"C,", replace:":symch:,")+
- replace@(match:"T:", replace:":symtap::")+
- replace@(match:"Q:", replace:":symq::")+
- replace@(match:"C:", replace:":symch::")+
- # Mana right before a space.
- replace@(match:"G ", replace:":symg: ")+
- replace@(match:"R ", replace:":symr: ")+
- replace@(match:"B ", replace:":symb: ")+
- replace@(match:"U ", replace:":symu: ")+
- replace@(match:"W ", replace:":symw: ")+
- replace@(match:"S ", replace:":snow: ")+
- # Mana right before a comma.
- replace@(match:"G,", replace:":symg:,")+
- replace@(match:"R,", replace:":symr:,")+
- replace@(match:"B,", replace:":symb:,")+
- replace@(match:"U,", replace:":symu:,")+
- replace@(match:"W,", replace:":symw:,")+
- replace@(match:"S,", replace:":snow:,")+
- # Mana right before a colon.
- replace@(match:"G:", replace:":symg::")+
- replace@(match:"R:", replace:":symr::")+
- replace@(match:"B:", replace:":symb::")+
- replace@(match:"U:", replace:":symu::")+
- replace@(match:"W:", replace:":symw::")+
- # Drag rules text to search for more mana characters. Reverse color wheel order works better. Repeat several times.
- replace@(match:"G:", replace:":symg::")+
- replace@(match:"R:", replace:":symr::")+
- replace@(match:"B:", replace:":symb::")+
- replace@(match:"U:", replace:":symu::")+
- replace@(match:"W:", replace:":symw::")+
- replace@(match:"G:", replace:":symg::")+
- replace@(match:"R:", replace:":symr::")+
- replace@(match:"B:", replace:":symb::")+
- replace@(match:"U:", replace:":symu::")+
- replace@(match:"W:", replace:":symw::")+
- replace@(match:"G:", replace:":symg::")+
- replace@(match:"R:", replace:":symr::")+
- replace@(match:"B:", replace:":symb::")+
- replace@(match:"U:", replace:":symu::")+
- replace@(match:"W:", replace:":symw::")+
- # Symbolize snow.
- replace@(match:"S:", replace:":snow::")+
- replace@(match:"S:", replace:":snow::")+
- replace@(match:"S:", replace:":snow::")+
- # Symbolize numbers from 20-0 when before a comma.
- replace@(match:"20,", replace:":20mana:,")+
- replace@(match:"19,", replace:":19mana:,")+
- replace@(match:"18,", replace:":18mana:,")+
- replace@(match:"17,", replace:":17mana:,")+
- replace@(match:"16,", replace:":16mana:,")+
- replace@(match:"15,", replace:":15mana:,")+
- replace@(match:"14,", replace:":14mana:,")+
- replace@(match:"13,", replace:":13mana:,")+
- replace@(match:"12,", replace:":12mana:,")+
- replace@(match:"11,", replace:":11mana:,")+
- replace@(match:"10,", replace:":10mana:,")+
- replace@(match:"9,", replace:":9mana:,")+
- replace@(match:"8,", replace:":8mana:,")+
- replace@(match:"7,", replace:":7mana:,")+
- replace@(match:"6,", replace:":6mana:,")+
- replace@(match:"5,", replace:":5mana:,")+
- replace@(match:"4,", replace:":4mana:,")+
- replace@(match:"3,", replace:":3mana:,")+
- replace@(match:"2,", replace:":2mana:,")+
- replace@(match:"1,", replace:":1mana:,")+
- replace@(match:"0,", replace:":0mana:,")+
- # Symbolize numbers from 20-0 when before another symbol or a colon.
- replace@(match:"20:", replace:":20mana::")+
- replace@(match:"19:", replace:":19mana::")+
- replace@(match:"18:", replace:":18mana::")+
- replace@(match:"17:", replace:":17mana::")+
- replace@(match:"16:", replace:":16mana::")+
- replace@(match:"15:", replace:":15mana::")+
- replace@(match:"14:", replace:":14mana::")+
- replace@(match:"13:", replace:":13mana::")+
- replace@(match:"12:", replace:":12mana::")+
- replace@(match:"11:", replace:":11mana::")+
- replace@(match:"10:", replace:":10mana::")+
- replace@(match:"9:", replace:":9mana::")+
- replace@(match:"8:", replace:":8mana::")+
- replace@(match:"7:", replace:":7mana::")+
- replace@(match:"6:", replace:":6mana::")+
- replace@(match:"5:", replace:":5mana::")+
- replace@(match:"4:", replace:":4mana::")+
- replace@(match:"3:", replace:":3mana::")+
- replace@(match:"2:", replace:":2mana::")+
- replace@(match:"1:", replace:":1mana::")+
- replace@(match:"0:", replace:":0mana::")+
- # Symbolize X and Y when before a comma.
- replace@(match:"Y,", replace:":symy:,")+
- replace@(match:"X,", replace:":symx:,")+
- # Symbolize X and Y when before another symbol or a colon.
- replace@(match:"Y:", replace:":symy::")+
- replace@(match:"X:", replace:":symx::")
- # Count the number of paragraphs to detect number of walker abilities.
- write_card := {
- # The Name
- "\n[b]"+card.name+"[/b]"
- # The Type and Rarity
- +"\n"+card.type
- # The Rules Text
- +(if card.rule_text != "" then "\n")
- +(if not options.text_costs then forum_rules_filter_mtgsally_mse(remove_tags(card.rule_text)))
- +(if options.text_costs then forum_rules_filter_plain(card.rule_text))
- # The Flavor Text
- +(if card.flavor_text != "" then "\n[i]")
- +card.flavor_text
- +(if card.flavor_text != "" then "[/i]")
- # Life and Hand Modifiers
- +"\nStarting & Max Hand Size: "+card.handmod
- +"\nStarting Life: "+card.lifemod
- # The Notes
- +(if options.include_notes and card.notes !="" then "\n[spoiler]Card Notes: ")
- +(if options.include_notes and card.notes !="" then card.notes)
- +(if options.include_notes and card.notes !="" then "[/spoiler]")
- +"\n"
- }
- write_cards := to_text(for each card in sort_list(cards, order_by: {input.card_number}) do write_card())
- to_string("Full Spoiler List for "+set.title+"\nSet by "+options.creator+"\n"+set.description+"\n"+write_cards)
+mse version: 0.3.8
+short name: Forum
+full name: Spoiler Exporter
+position hint: 002
+icon: icon.png
+version: 2010-05-11
+installer group: Magic Vanguard/Export/forum
+
+depends on:
+ package: vanguard.mse-game
+ version: 2007-09-23
+
+game: vanguard
+file type: *.txt|*.txt|*.*|*.*
+
+# By Pichoro
+# Based on code by Idle Muse, Innuendo and Seeonee
+
+option field:
+ type: choice
+ name: forum
+ choice: mse
+ choice: mtgsalvation
+ description: What forum should the spoiler be formatted for?
+option field:
+ type: boolean
+ name: text costs
+ initial: yes
+ description: Should mana costs be plain text? Symbols usually can't be copied and pasted.
+option field:
+ type: text
+ name: creator
+ description: The creator of the set.
+option field:
+ type: boolean
+ name: include notes
+ description: Should card notes be included?
+ initial: no
+script:
+ # Formats rules text w/ only italic tags.
+ forum_rules_filter_plain := replace@(match:"[(]", replace:"[i](")+
+ replace@(match:"[)]", replace: ")[/i]")
+ # Formats rules text w/ mana symbols. MSE and mtgsally use same bbcode tags for mana.
+ forum_rules_filter_mtgsally_mse :=
+ # Italics around parenthesis.
+ replace@(match:"[(]", replace:"[i](")+
+ replace@(match:"[)]", replace: ")[/i]")+
+ # 2/C's don't appear in regular english, format them all.
+ replace@(match:"2/W", replace:":sym2w:")+
+ replace@(match:"2/U", replace:":sym2u:")+
+ replace@(match:"2/B", replace:":sym2b:")+
+ replace@(match:"2/R", replace:":sym2r:")+
+ replace@(match:"2/G", replace:":sym2g:")+
+ # C/D's don't appear in regular english, format them all.
+ replace@(match:"W/U", replace:":symwu:")+
+ replace@(match:"W/B", replace:":symwb:")+
+ replace@(match:"U/B", replace:":symub:")+
+ replace@(match:"U/R", replace:":symur:")+
+ replace@(match:"B/R", replace:":symbr:")+
+ replace@(match:"B/G", replace:":symbg:")+
+ replace@(match:"R/G", replace:":symrg:")+
+ replace@(match:"R/W", replace:":symrw:")+
+ replace@(match:"G/W", replace:":symgw:")+
+ replace@(match:"G/U", replace:":symgu:")+
+ # Various positions for taps, untaps and chaos symbols.
+ replace@(match:" T ", replace:" :symtap: ")+
+ replace@(match:" Q ", replace:" :symq: ")+
+ replace@(match:" C ", replace:" :symch: ")+
+ replace@(match:"T,", replace:":symtap:,")+
+ replace@(match:"Q,", replace:":symq:,")+
+ replace@(match:"C,", replace:":symch:,")+
+ replace@(match:"T:", replace:":symtap::")+
+ replace@(match:"Q:", replace:":symq::")+
+ replace@(match:"C:", replace:":symch::")+
+ # Mana right before a space.
+ replace@(match:"G ", replace:":symg: ")+
+ replace@(match:"R ", replace:":symr: ")+
+ replace@(match:"B ", replace:":symb: ")+
+ replace@(match:"U ", replace:":symu: ")+
+ replace@(match:"W ", replace:":symw: ")+
+ replace@(match:"S ", replace:":snow: ")+
+ # Mana right before a comma.
+ replace@(match:"G,", replace:":symg:,")+
+ replace@(match:"R,", replace:":symr:,")+
+ replace@(match:"B,", replace:":symb:,")+
+ replace@(match:"U,", replace:":symu:,")+
+ replace@(match:"W,", replace:":symw:,")+
+ replace@(match:"S,", replace:":snow:,")+
+ # Mana right before a colon.
+ replace@(match:"G:", replace:":symg::")+
+ replace@(match:"R:", replace:":symr::")+
+ replace@(match:"B:", replace:":symb::")+
+ replace@(match:"U:", replace:":symu::")+
+ replace@(match:"W:", replace:":symw::")+
+ # Drag rules text to search for more mana characters. Reverse color wheel order works better. Repeat several times.
+ replace@(match:"G:", replace:":symg::")+
+ replace@(match:"R:", replace:":symr::")+
+ replace@(match:"B:", replace:":symb::")+
+ replace@(match:"U:", replace:":symu::")+
+ replace@(match:"W:", replace:":symw::")+
+ replace@(match:"G:", replace:":symg::")+
+ replace@(match:"R:", replace:":symr::")+
+ replace@(match:"B:", replace:":symb::")+
+ replace@(match:"U:", replace:":symu::")+
+ replace@(match:"W:", replace:":symw::")+
+ replace@(match:"G:", replace:":symg::")+
+ replace@(match:"R:", replace:":symr::")+
+ replace@(match:"B:", replace:":symb::")+
+ replace@(match:"U:", replace:":symu::")+
+ replace@(match:"W:", replace:":symw::")+
+ # Symbolize snow.
+ replace@(match:"S:", replace:":snow::")+
+ replace@(match:"S:", replace:":snow::")+
+ replace@(match:"S:", replace:":snow::")+
+ # Symbolize numbers from 20-0 when before a comma.
+ replace@(match:"20,", replace:":20mana:,")+
+ replace@(match:"19,", replace:":19mana:,")+
+ replace@(match:"18,", replace:":18mana:,")+
+ replace@(match:"17,", replace:":17mana:,")+
+ replace@(match:"16,", replace:":16mana:,")+
+ replace@(match:"15,", replace:":15mana:,")+
+ replace@(match:"14,", replace:":14mana:,")+
+ replace@(match:"13,", replace:":13mana:,")+
+ replace@(match:"12,", replace:":12mana:,")+
+ replace@(match:"11,", replace:":11mana:,")+
+ replace@(match:"10,", replace:":10mana:,")+
+ replace@(match:"9,", replace:":9mana:,")+
+ replace@(match:"8,", replace:":8mana:,")+
+ replace@(match:"7,", replace:":7mana:,")+
+ replace@(match:"6,", replace:":6mana:,")+
+ replace@(match:"5,", replace:":5mana:,")+
+ replace@(match:"4,", replace:":4mana:,")+
+ replace@(match:"3,", replace:":3mana:,")+
+ replace@(match:"2,", replace:":2mana:,")+
+ replace@(match:"1,", replace:":1mana:,")+
+ replace@(match:"0,", replace:":0mana:,")+
+ # Symbolize numbers from 20-0 when before another symbol or a colon.
+ replace@(match:"20:", replace:":20mana::")+
+ replace@(match:"19:", replace:":19mana::")+
+ replace@(match:"18:", replace:":18mana::")+
+ replace@(match:"17:", replace:":17mana::")+
+ replace@(match:"16:", replace:":16mana::")+
+ replace@(match:"15:", replace:":15mana::")+
+ replace@(match:"14:", replace:":14mana::")+
+ replace@(match:"13:", replace:":13mana::")+
+ replace@(match:"12:", replace:":12mana::")+
+ replace@(match:"11:", replace:":11mana::")+
+ replace@(match:"10:", replace:":10mana::")+
+ replace@(match:"9:", replace:":9mana::")+
+ replace@(match:"8:", replace:":8mana::")+
+ replace@(match:"7:", replace:":7mana::")+
+ replace@(match:"6:", replace:":6mana::")+
+ replace@(match:"5:", replace:":5mana::")+
+ replace@(match:"4:", replace:":4mana::")+
+ replace@(match:"3:", replace:":3mana::")+
+ replace@(match:"2:", replace:":2mana::")+
+ replace@(match:"1:", replace:":1mana::")+
+ replace@(match:"0:", replace:":0mana::")+
+ # Symbolize X and Y when before a comma.
+ replace@(match:"Y,", replace:":symy:,")+
+ replace@(match:"X,", replace:":symx:,")+
+ # Symbolize X and Y when before another symbol or a colon.
+ replace@(match:"Y:", replace:":symy::")+
+ replace@(match:"X:", replace:":symx::")
+ # Count the number of paragraphs to detect number of walker abilities.
+ write_card := {
+ # The Name
+ "\n[b]"+card.name+"[/b]"
+ # The Type and Rarity
+ +"\n"+card.type
+ # The Rules Text
+ +(if card.rule_text != "" then "\n")
+ +(if not options.text_costs then forum_rules_filter_mtgsally_mse(remove_tags(card.rule_text)))
+ +(if options.text_costs then forum_rules_filter_plain(card.rule_text))
+ # The Flavor Text
+ +(if card.flavor_text != "" then "\n[i]")
+ +card.flavor_text
+ +(if card.flavor_text != "" then "[/i]")
+ # Life and Hand Modifiers
+ +"\nStarting & Max Hand Size: "+card.handmod
+ +"\nStarting Life: "+card.lifemod
+ # The Notes
+ +(if options.include_notes and card.notes !="" then "\n[spoiler]Card Notes: ")
+ +(if options.include_notes and card.notes !="" then card.notes)
+ +(if options.include_notes and card.notes !="" then "[/spoiler]")
+ +"\n"
+ }
+ write_cards := to_text(for each card in sort_list(cards, order_by: {input.card_number}) do write_card())
+ to_string("Full Spoiler List for "+set.title+"\nSet by "+options.creator+"\n"+set.description+"\n"+write_cards)
diff --git a/data/vs-standard-arrow.mse-symbol-font/symbol-font b/data/vs-standard-arrow.mse-symbol-font/symbol-font
index b84f8607..d49dc2bf 100644
--- a/data/vs-standard-arrow.mse-symbol-font/symbol-font
+++ b/data/vs-standard-arrow.mse-symbol-font/symbol-font
@@ -1,30 +1,30 @@
-mse version: 0.3.7
-version: 2008-10-06
-short name: old
-position hint: 2
-installer group: VS System/Symbol Fonts/Arrow
-icon: arrow.png
-# Symbol font for arrow symbol
-
-image font size: 135
-horizontal space: 0
-symbol:
- code: ->
- image: arrow.png
-symbol:
- code: >>>
- image: arrow.png
-symbol:
- code: •
- image: diamond.png
-symbol:
- code: @
- image: diamond.png
-symbol:
- code: <>
- image: diamond.png
-##############################################################
-# Insert-symbol menu
-insert symbol menu:
- item: ->
- item: •
+mse version: 0.3.7
+version: 2008-10-06
+short name: old
+position hint: 2
+installer group: VS System/Symbol Fonts/Arrow
+icon: arrow.png
+# Symbol font for arrow symbol
+
+image font size: 135
+horizontal space: 0
+symbol:
+ code: ->
+ image: arrow.png
+symbol:
+ code: >>>
+ image: arrow.png
+symbol:
+ code: •
+ image: diamond.png
+symbol:
+ code: @
+ image: diamond.png
+symbol:
+ code: <>
+ image: diamond.png
+##############################################################
+# Insert-symbol menu
+insert symbol menu:
+ item: ->
+ item: •
diff --git a/data/vs-standard-new.mse-symbol-font/symbol-font b/data/vs-standard-new.mse-symbol-font/symbol-font
index 2c3de7e7..f96fe096 100644
--- a/data/vs-standard-new.mse-symbol-font/symbol-font
+++ b/data/vs-standard-new.mse-symbol-font/symbol-font
@@ -1,676 +1,676 @@
-mse version: 0.3.8
-version: 2010-05-17
-short name: New (unofficial)
-position hint: 3
-installer group: VS System/Symbol Fonts/New
-icon: thunderbolts.png
-# Unofficial symbol font for the new template
-
-image font size: 135
-horizontal space: 0
-symbol:
- code: ->
- image: arrow.png
-symbol:
- code: >>>
- image: arrow.png
-symbol:
- code: •
- image: diamond.png
-symbol:
- code: @
- image: diamond.png
-symbol:
- code: <>
- image: diamond.png
-symbol:
- code: Activate
- image: activate.png
- image font size: 176
-symbol:
- code: Agency X
- image: agencyx.png
-symbol:
- code: Agents of Atlas
- image: agentsofatlas.png
-symbol:
- code: AIM
- image: aim.png
-symbol:
- code: Alpha Flight
- image: alphaflight.png
-symbol:
- code: Anti-Matter
- image: anti-matter.png
- image font size: 103
-symbol:
- code: Assassins
- image: assassins.png
-symbol:
- code: Atlantis
- image: atlantis.png
-symbol:
- code: Autobot
- image: autobots.png
-symbol:
- code: Decepticon
- image: decepticons.png
-symbol:
- code: Quintesson
- image: quintessons.png
-symbol:
- code: Arkham Inmates
- image: arkhaminmates.png
-symbol:
- code: Asgardians
- image: asgardians.png
-symbol:
- code: Avengers
- image: avengers.png
-symbol:
- code: Birds of Prey
- image: birdsofprey.png
-symbol:
- code: Black Glove
- image: blackglove.png
-symbol:
- code: Black Lantern
- image: blacklantern.png
- image font size: 90
-symbol:
- code: Blue Lantern
- image: bluelantern.png
- image font size: 160
-symbol:
- code: B.P.R.D.
- image: bprd.png
-symbol:
- code: Brit-Cit
- image: britcit.png
- image font size: 95
-symbol:
- code: Brood
- image: brood.png
-symbol:
- code: Brotherhood
- image: brotherhood.png
-symbol:
- code: Captain America
- image: captainamerica.png
-symbol:
- code: Challengers of the Fantastic
- image: challengersofthefantastic.png
-symbol:
- code: Checkmate
- image: checkmate.png
-symbol:
- code: Crimelords
- image: crimelords.png
-symbol:
- code: Crisis
- image: crisis.png
-symbol:
- code: Cursed Earth
- image: cursedearth.png
- image font size: 95
-symbol:
- code: Dark Claw
- image: darkclaw.png
-symbol:
- code: Dark Judges
- image: darkjudges.png
- image font size: 95
-symbol:
- code: Darkseid
- image: darkseid.png
-symbol:
- code: Deadpool
- image: Deadpool.png
-symbol:
- code: Defenders
- image: defenders.png
-symbol:
- code: Doom Patrol
- image: doompatrol.png
-symbol:
- code: Doom
- image: doom.png
-symbol:
- code: Emerald Archers
- image: emeraldarchers.png
-symbol:
- code: Emerald Enemies
- image: emeraldenemies.png
- image font size: 165
-symbol:
- code: Excalibur
- image: excalibur.png
-symbol:
- code: Exiles
- image: exiles.png
-symbol:
- code: Fantastic Four
- image: f4.png
-symbol:
- code: Fearsome Five
- image: fearsomefive.png
-symbol:
- code: Femizons
- image: femizons.png
-symbol:
- code: Future Foes
- image: futurefoes.png
-symbol:
- code: Generation X
- image: generationx.png
-symbol:
- code: Gotham Knights
- image: gothamknights.png
-symbol:
- code: Green Lantern
- image: greenlantern.png
-symbol:
- code: Guardians of the Galaxy
- image: guardiansofthegalaxy.png
-symbol:
- code: The Hand
- image: hand.png
-symbol:
- code: Hellfire Club
- image: hellfire.png
-symbol:
- code: Heralds of Galactus
- image: heralds.png
-symbol:
- code: Horsemen of Apocalypse
- image: apocalypse.png
-symbol:
- code: Heroes for Hire
- image: heroesforhire.png
-symbol:
- code: Heroes of Earth
- image: heroesofearth.png
-symbol:
- code: Hydra
- image: hydra.png
-symbol:
- code: Indigo Lantern
- image: indigolantern.png
- image font size: 240
-symbol:
- code: Infinity Watch
- image: infinitywatch.png
-symbol:
- code: Inhumans
- image: inhumans.png
-symbol:
- code: Injustice Gang
- image: injusticegang.png
-symbol:
- code: Invaders
- image: invaders.png
-symbol:
- code: Iron Lantern
- image: ironlantern.png
-symbol:
- code: JLAvengers
- image: jlavengers.png
- image font size: 108
-symbol:
- code: JLA
- image: jla.png
-symbol:
- code: JLI
- image: jli.png
-symbol:
- code: JSA
- image: jsa.png
-symbol:
- code: JLX
- image: jlx.png
- image font size: 108
-symbol:
- code: Kang Council
- image: kangcouncil.png
-symbol:
- code: Kree
- image: kree.png
- image font size: 117
-symbol:
- code: League of Assassins
- image: assassin.png
-symbol:
- code: Legionnaires
- image: legion.png
-symbol:
- code: Magnetic Men
- image: magneticmen.png
- image font size: 138
-symbol:
- code: Manhunters
- image: manhunters.png
-symbol:
- code: Marauders
- image: marauders.png
-symbol:
- code: Marvel Knights
- image: marvelknights.png
-symbol:
- code: Masters of Evil
- image: mastersofevil.png
-symbol:
- code: Megacity One
- image: megacityone.png
- image font size: 115
-symbol:
- code: Morlocks
- image: morlocks.png
-symbol:
- code: Negative Zone
- image: negativezone.png
-symbol:
- code: New Gods
- image: newgods.png
-symbol:
- code: Newuniversal
- image: newuniversal.png
-symbol:
- code: Outsiders
- image: outsiders.png
-symbol:
- code: Omega Flight
- image: omegaflight.png
-symbol:
- code: Orange Lantern
- image: orangelantern.png
- image font size: 260
-symbol:
- code: Nextwave
- image: nextwave.png
-symbol:
- code: New Warriors
- image: newwarriors.png
-symbol:
- code: Nova Corps
- image: novacorps.png
-symbol:
- code: Phalanx
- image: phalanx.png
-symbol:
- code: Project Spitfire
- image: projectspitfire.png
-symbol:
- code: Purifiers
- image: purifiers.png
-symbol:
- code: Rann
- image: rann.png
-symbol:
- code: Red Lantern
- image: redlantern.png
- image font size: 320
-symbol:
- code: Revenge Squad
- image: revengesquad.png
-symbol:
- code: Runaways
- image: runaways.png
-symbol:
- code: Secret Society
- image: secretsociety.png
-symbol:
- code: Secret Six
- image: secretsix.png
-symbol:
- code: Secret Warriors
- image: secretwarriors.png
-symbol:
- code: Sentinels
- image: sentinels.png
-symbol:
- code: Serpent Society
- image: serpentsociety.png
-symbol:
- code: Shadowpact
- image: shadowpact.png
-symbol:
- code: Shi'ar
- image: shiar.png
-symbol:
- code: Shield
- image: shield.png
-symbol:
- code: Sinister Syndicate
- image: sinistersyndicate.png
-symbol:
- code: Skeleton Crew
- image: skeletoncrew.png
-symbol:
- code: Skrull
- image: skrull.png
- image font size: 147
-symbol:
- code: Speed Force
- image: speedforce.png
-symbol:
- code: Spider-Boy
- image: spider-boy.png
-symbol:
- code: Spider-Friends
- image: spiderman.png
-symbol:
- code: Starjammers
- image: starjammers.png
-symbol:
- code: Star Sapphires
- image: starsapphires.png
- image font size: 230
-symbol:
- code: Squadron Supreme
- image: squadronsupreme.png
-symbol:
- code: Stark Industries
- image: starkindustries.png
-symbol:
- code: Strangefate
- image: strangefate.png
-symbol:
- code: Suicide Squad
- image: suicidesquad.png
-symbol:
- code: Sword
- image: sword.png
-symbol:
- code: Team Superman
- image: superman.png
-symbol:
- code: Thanagar
- image: thanagar.png
-symbol:
- code: Themyscira
- image: themyscira.png
-symbol:
- code: The Order
- image: theorder.png
-symbol:
- code: The Rogues
- image: therogues.png
-symbol:
- code: Thor
- image: thor.png
-symbol:
- code: Thule Society
- image: thule.png
-symbol:
- code: Thunderbolts
- image: thunderbolts.png
-symbol:
- code: Teen Titans
- image: titans.png
-symbol:
- code: The Ultimates
- image: ultimates.png
-symbol:
- code: Underworld
- image: underworld.png
-symbol:
- code: United Front
- image: unitedfront.png
-symbol:
- code: Villains of Earth
- image: villainsofearth.png
-symbol:
- code: Villains United
- image: villainsunited.png
-symbol:
- code: Wakanda
- image: wakanda.png
-symbol:
- code: Warbound
- image: warbound.png
-symbol:
- code: Wayne Family
- image: waynefamily.png
-symbol:
- code: Weapon X
- image: weaponx.png
-symbol:
- code: Wildpack
- image: wildpack.png
-symbol:
- code: X-Factor
- image: xfactor.png
-symbol:
- code: X-Force
- image: xforce.png
-symbol:
- code: X-Men
- image: xmen.png
-symbol:
- code: X-Ranch
- image: xranch.png
-symbol:
- code: X-Statix
- image: xstatix.png
-symbol:
- code: 0
- image: 0.png
-symbol:
- code: 1
- image: 1.png
-symbol:
- code: 2
- image: 2.png
-symbol:
- code: 3
- image: 3.png
-symbol:
- code: 4
- image: 4.png
-symbol:
- code: 5
- image: 5.png
-symbol:
- code: 6
- image: 6.png
-symbol:
- code: 7
- image: 7.png
-symbol:
- code: 8
- image: 8.png
-symbol:
- code: 9
- image: 9.png
-symbol:
- code: 10
- image: 10.png
-symbol:
- code: 11
- image: 11.png
-symbol:
- code: 12
- image: 12.png
-symbol:
- code: 13
- image: 13.png
-symbol:
- code: 14
- image: 14.png
-symbol:
- code: 15
- image: 15.png
-symbol:
- code: x
- image: x.png
-symbol:
- code: Planet
- image: planet.png
-##############################################################
-# Insert-symbol menu
-insert symbol menu:
- item: ->
- item: •
- item: Activate
- item: Planet
- item:
- name: numbers
- item: 0
- item: 1
- item: 2
- item: 3
- item: 4
- item: 5
- item: 6
- item: 7
- item: 8
- item: 9
- item: 10
- item: 11
- item: 12
- item: 13
- item: 14
- item: 15
- item: X
- item:
- name: Marvel Teams
- item: AIM
- item: Agency X
- item: Agents of Atlas
- item: Alpha Flight
- item: Asgardians
- item: Atlantis
- item: Avengers
- item: Brood
- item: Brotherhood
- item: Captain America
- item: Crimelords
- item: Deadpool
- item: Defenders
- item: Doom
- item: Excalibur
- item: Exiles
- item: Fantastic Four
- item: Femizons
- item: Generation X
- item: Guardians of the Galaxy
- item: The Hand
- item: Hellfire Club
- item: Heralds of Galactus
- item: Heroes for Hire
- item: Heroes of Earth
- item: Horsemen of Apocalypse
- item: Hydra
- item: Infinity Watch
- item: Inhumans
- item: Invaders
- item: Kang Council
- item: Kree
- item: Marauders
- item: Marvel Knights
- item: Masters of Evil
- item: Morlocks
- item: Negative Zone
- item: Nextwave
- item: Newuniversal
- item: New Warriors
- item: Nova Corps
- item: Omega Flight
- item: The Order
- item: Phalanx
- item: Project Spitfire
- item: Purifiers
- item: Runaways
- item: Secret Warriors
- item: Sentinels
- item: Serpent Society
- item: Shi'ar
- item: Shield
- item: Skrull
- item: Sinister Syndicate
- item: Skeleton Crew
- item: Spider-Friends
- item: Squadron Supreme
- item: Starjammers
- item: Stark Industries
- item: Sword
- item: Thor
- item: Thunderbolts
- item: The Ultimates
- item: Underworld
- item: United Front
- item: Villains of Earth
- item: Wakanda
- item: Warbound
- item: Weapon X
- item: Wildpack
- item: X-Factor
- item: X-Force
- item: X-Men
- item: X-Ranch
- item: X-Statix
- item:
- name: DC Teams
- item: Anti-Matter
- item: Arkham Inmates
- item: Birds of Prey
- item: Black Glove
- item: Black Lantern
- item: Blue Lantern
- item: Checkmate
- item: Crisis
- item: Darkseid
- item: Doom Patrol
- item: Emerald Archers
- item: Emerald Enemies
- item: Fearsome Five
- item: Future Foes
- item: Gotham Knights
- item: Green Lantern
- item: Indigo Lantern
- item: Injustice Gang
- item: JLA
- item: JLI
- item: JSA
- item: League of Assassins
- item: Legionnaires
- item: Manhunters
- item: New Gods
- item: Orange Lantern
- item: Outsiders
- item: Rann
- item: Red Lantern
- item: Revenge Squad
- item: Secret Six
- item: Secret Society
- item: Shadowpact
- item: Speed Force
- item: Suicide Squad
- item: Star Sapphires
- item: Team Superman
- item: Teen Titans
- item: Thanagar
- item: The Rogues
- item: Villains United
- item: Wayne Family
- item:
- name: Other Teams
- item: Assassins
- item: Challengers of the Fantastic
- item: Dark Claw
- item: Iron Lantern
- item: JLAvengers
- item: JLX
- item: Magnetic Men
- item: Spider-Boy
- item: Strangefate
- item: Themyscira
- item: B.P.R.D.
- item: Thule Society
- item: Brit-Cit
- item: Cursed Earth
- item: Dark Judges
- item: Megacity One
- item: Autobot
- item: Decepticon
- item: Quintesson
+mse version: 0.3.8
+version: 2010-05-17
+short name: New (unofficial)
+position hint: 3
+installer group: VS System/Symbol Fonts/New
+icon: thunderbolts.png
+# Unofficial symbol font for the new template
+
+image font size: 135
+horizontal space: 0
+symbol:
+ code: ->
+ image: arrow.png
+symbol:
+ code: >>>
+ image: arrow.png
+symbol:
+ code: •
+ image: diamond.png
+symbol:
+ code: @
+ image: diamond.png
+symbol:
+ code: <>
+ image: diamond.png
+symbol:
+ code: Activate
+ image: activate.png
+ image font size: 176
+symbol:
+ code: Agency X
+ image: agencyx.png
+symbol:
+ code: Agents of Atlas
+ image: agentsofatlas.png
+symbol:
+ code: AIM
+ image: aim.png
+symbol:
+ code: Alpha Flight
+ image: alphaflight.png
+symbol:
+ code: Anti-Matter
+ image: anti-matter.png
+ image font size: 103
+symbol:
+ code: Assassins
+ image: assassins.png
+symbol:
+ code: Atlantis
+ image: atlantis.png
+symbol:
+ code: Autobot
+ image: autobots.png
+symbol:
+ code: Decepticon
+ image: decepticons.png
+symbol:
+ code: Quintesson
+ image: quintessons.png
+symbol:
+ code: Arkham Inmates
+ image: arkhaminmates.png
+symbol:
+ code: Asgardians
+ image: asgardians.png
+symbol:
+ code: Avengers
+ image: avengers.png
+symbol:
+ code: Birds of Prey
+ image: birdsofprey.png
+symbol:
+ code: Black Glove
+ image: blackglove.png
+symbol:
+ code: Black Lantern
+ image: blacklantern.png
+ image font size: 90
+symbol:
+ code: Blue Lantern
+ image: bluelantern.png
+ image font size: 160
+symbol:
+ code: B.P.R.D.
+ image: bprd.png
+symbol:
+ code: Brit-Cit
+ image: britcit.png
+ image font size: 95
+symbol:
+ code: Brood
+ image: brood.png
+symbol:
+ code: Brotherhood
+ image: brotherhood.png
+symbol:
+ code: Captain America
+ image: captainamerica.png
+symbol:
+ code: Challengers of the Fantastic
+ image: challengersofthefantastic.png
+symbol:
+ code: Checkmate
+ image: checkmate.png
+symbol:
+ code: Crimelords
+ image: crimelords.png
+symbol:
+ code: Crisis
+ image: crisis.png
+symbol:
+ code: Cursed Earth
+ image: cursedearth.png
+ image font size: 95
+symbol:
+ code: Dark Claw
+ image: darkclaw.png
+symbol:
+ code: Dark Judges
+ image: darkjudges.png
+ image font size: 95
+symbol:
+ code: Darkseid
+ image: darkseid.png
+symbol:
+ code: Deadpool
+ image: Deadpool.png
+symbol:
+ code: Defenders
+ image: defenders.png
+symbol:
+ code: Doom Patrol
+ image: doompatrol.png
+symbol:
+ code: Doom
+ image: doom.png
+symbol:
+ code: Emerald Archers
+ image: emeraldarchers.png
+symbol:
+ code: Emerald Enemies
+ image: emeraldenemies.png
+ image font size: 165
+symbol:
+ code: Excalibur
+ image: excalibur.png
+symbol:
+ code: Exiles
+ image: exiles.png
+symbol:
+ code: Fantastic Four
+ image: f4.png
+symbol:
+ code: Fearsome Five
+ image: fearsomefive.png
+symbol:
+ code: Femizons
+ image: femizons.png
+symbol:
+ code: Future Foes
+ image: futurefoes.png
+symbol:
+ code: Generation X
+ image: generationx.png
+symbol:
+ code: Gotham Knights
+ image: gothamknights.png
+symbol:
+ code: Green Lantern
+ image: greenlantern.png
+symbol:
+ code: Guardians of the Galaxy
+ image: guardiansofthegalaxy.png
+symbol:
+ code: The Hand
+ image: hand.png
+symbol:
+ code: Hellfire Club
+ image: hellfire.png
+symbol:
+ code: Heralds of Galactus
+ image: heralds.png
+symbol:
+ code: Horsemen of Apocalypse
+ image: apocalypse.png
+symbol:
+ code: Heroes for Hire
+ image: heroesforhire.png
+symbol:
+ code: Heroes of Earth
+ image: heroesofearth.png
+symbol:
+ code: Hydra
+ image: hydra.png
+symbol:
+ code: Indigo Lantern
+ image: indigolantern.png
+ image font size: 240
+symbol:
+ code: Infinity Watch
+ image: infinitywatch.png
+symbol:
+ code: Inhumans
+ image: inhumans.png
+symbol:
+ code: Injustice Gang
+ image: injusticegang.png
+symbol:
+ code: Invaders
+ image: invaders.png
+symbol:
+ code: Iron Lantern
+ image: ironlantern.png
+symbol:
+ code: JLAvengers
+ image: jlavengers.png
+ image font size: 108
+symbol:
+ code: JLA
+ image: jla.png
+symbol:
+ code: JLI
+ image: jli.png
+symbol:
+ code: JSA
+ image: jsa.png
+symbol:
+ code: JLX
+ image: jlx.png
+ image font size: 108
+symbol:
+ code: Kang Council
+ image: kangcouncil.png
+symbol:
+ code: Kree
+ image: kree.png
+ image font size: 117
+symbol:
+ code: League of Assassins
+ image: assassin.png
+symbol:
+ code: Legionnaires
+ image: legion.png
+symbol:
+ code: Magnetic Men
+ image: magneticmen.png
+ image font size: 138
+symbol:
+ code: Manhunters
+ image: manhunters.png
+symbol:
+ code: Marauders
+ image: marauders.png
+symbol:
+ code: Marvel Knights
+ image: marvelknights.png
+symbol:
+ code: Masters of Evil
+ image: mastersofevil.png
+symbol:
+ code: Megacity One
+ image: megacityone.png
+ image font size: 115
+symbol:
+ code: Morlocks
+ image: morlocks.png
+symbol:
+ code: Negative Zone
+ image: negativezone.png
+symbol:
+ code: New Gods
+ image: newgods.png
+symbol:
+ code: Newuniversal
+ image: newuniversal.png
+symbol:
+ code: Outsiders
+ image: outsiders.png
+symbol:
+ code: Omega Flight
+ image: omegaflight.png
+symbol:
+ code: Orange Lantern
+ image: orangelantern.png
+ image font size: 260
+symbol:
+ code: Nextwave
+ image: nextwave.png
+symbol:
+ code: New Warriors
+ image: newwarriors.png
+symbol:
+ code: Nova Corps
+ image: novacorps.png
+symbol:
+ code: Phalanx
+ image: phalanx.png
+symbol:
+ code: Project Spitfire
+ image: projectspitfire.png
+symbol:
+ code: Purifiers
+ image: purifiers.png
+symbol:
+ code: Rann
+ image: rann.png
+symbol:
+ code: Red Lantern
+ image: redlantern.png
+ image font size: 320
+symbol:
+ code: Revenge Squad
+ image: revengesquad.png
+symbol:
+ code: Runaways
+ image: runaways.png
+symbol:
+ code: Secret Society
+ image: secretsociety.png
+symbol:
+ code: Secret Six
+ image: secretsix.png
+symbol:
+ code: Secret Warriors
+ image: secretwarriors.png
+symbol:
+ code: Sentinels
+ image: sentinels.png
+symbol:
+ code: Serpent Society
+ image: serpentsociety.png
+symbol:
+ code: Shadowpact
+ image: shadowpact.png
+symbol:
+ code: Shi'ar
+ image: shiar.png
+symbol:
+ code: Shield
+ image: shield.png
+symbol:
+ code: Sinister Syndicate
+ image: sinistersyndicate.png
+symbol:
+ code: Skeleton Crew
+ image: skeletoncrew.png
+symbol:
+ code: Skrull
+ image: skrull.png
+ image font size: 147
+symbol:
+ code: Speed Force
+ image: speedforce.png
+symbol:
+ code: Spider-Boy
+ image: spider-boy.png
+symbol:
+ code: Spider-Friends
+ image: spiderman.png
+symbol:
+ code: Starjammers
+ image: starjammers.png
+symbol:
+ code: Star Sapphires
+ image: starsapphires.png
+ image font size: 230
+symbol:
+ code: Squadron Supreme
+ image: squadronsupreme.png
+symbol:
+ code: Stark Industries
+ image: starkindustries.png
+symbol:
+ code: Strangefate
+ image: strangefate.png
+symbol:
+ code: Suicide Squad
+ image: suicidesquad.png
+symbol:
+ code: Sword
+ image: sword.png
+symbol:
+ code: Team Superman
+ image: superman.png
+symbol:
+ code: Thanagar
+ image: thanagar.png
+symbol:
+ code: Themyscira
+ image: themyscira.png
+symbol:
+ code: The Order
+ image: theorder.png
+symbol:
+ code: The Rogues
+ image: therogues.png
+symbol:
+ code: Thor
+ image: thor.png
+symbol:
+ code: Thule Society
+ image: thule.png
+symbol:
+ code: Thunderbolts
+ image: thunderbolts.png
+symbol:
+ code: Teen Titans
+ image: titans.png
+symbol:
+ code: The Ultimates
+ image: ultimates.png
+symbol:
+ code: Underworld
+ image: underworld.png
+symbol:
+ code: United Front
+ image: unitedfront.png
+symbol:
+ code: Villains of Earth
+ image: villainsofearth.png
+symbol:
+ code: Villains United
+ image: villainsunited.png
+symbol:
+ code: Wakanda
+ image: wakanda.png
+symbol:
+ code: Warbound
+ image: warbound.png
+symbol:
+ code: Wayne Family
+ image: waynefamily.png
+symbol:
+ code: Weapon X
+ image: weaponx.png
+symbol:
+ code: Wildpack
+ image: wildpack.png
+symbol:
+ code: X-Factor
+ image: xfactor.png
+symbol:
+ code: X-Force
+ image: xforce.png
+symbol:
+ code: X-Men
+ image: xmen.png
+symbol:
+ code: X-Ranch
+ image: xranch.png
+symbol:
+ code: X-Statix
+ image: xstatix.png
+symbol:
+ code: 0
+ image: 0.png
+symbol:
+ code: 1
+ image: 1.png
+symbol:
+ code: 2
+ image: 2.png
+symbol:
+ code: 3
+ image: 3.png
+symbol:
+ code: 4
+ image: 4.png
+symbol:
+ code: 5
+ image: 5.png
+symbol:
+ code: 6
+ image: 6.png
+symbol:
+ code: 7
+ image: 7.png
+symbol:
+ code: 8
+ image: 8.png
+symbol:
+ code: 9
+ image: 9.png
+symbol:
+ code: 10
+ image: 10.png
+symbol:
+ code: 11
+ image: 11.png
+symbol:
+ code: 12
+ image: 12.png
+symbol:
+ code: 13
+ image: 13.png
+symbol:
+ code: 14
+ image: 14.png
+symbol:
+ code: 15
+ image: 15.png
+symbol:
+ code: x
+ image: x.png
+symbol:
+ code: Planet
+ image: planet.png
+##############################################################
+# Insert-symbol menu
+insert symbol menu:
+ item: ->
+ item: •
+ item: Activate
+ item: Planet
+ item:
+ name: numbers
+ item: 0
+ item: 1
+ item: 2
+ item: 3
+ item: 4
+ item: 5
+ item: 6
+ item: 7
+ item: 8
+ item: 9
+ item: 10
+ item: 11
+ item: 12
+ item: 13
+ item: 14
+ item: 15
+ item: X
+ item:
+ name: Marvel Teams
+ item: AIM
+ item: Agency X
+ item: Agents of Atlas
+ item: Alpha Flight
+ item: Asgardians
+ item: Atlantis
+ item: Avengers
+ item: Brood
+ item: Brotherhood
+ item: Captain America
+ item: Crimelords
+ item: Deadpool
+ item: Defenders
+ item: Doom
+ item: Excalibur
+ item: Exiles
+ item: Fantastic Four
+ item: Femizons
+ item: Generation X
+ item: Guardians of the Galaxy
+ item: The Hand
+ item: Hellfire Club
+ item: Heralds of Galactus
+ item: Heroes for Hire
+ item: Heroes of Earth
+ item: Horsemen of Apocalypse
+ item: Hydra
+ item: Infinity Watch
+ item: Inhumans
+ item: Invaders
+ item: Kang Council
+ item: Kree
+ item: Marauders
+ item: Marvel Knights
+ item: Masters of Evil
+ item: Morlocks
+ item: Negative Zone
+ item: Nextwave
+ item: Newuniversal
+ item: New Warriors
+ item: Nova Corps
+ item: Omega Flight
+ item: The Order
+ item: Phalanx
+ item: Project Spitfire
+ item: Purifiers
+ item: Runaways
+ item: Secret Warriors
+ item: Sentinels
+ item: Serpent Society
+ item: Shi'ar
+ item: Shield
+ item: Skrull
+ item: Sinister Syndicate
+ item: Skeleton Crew
+ item: Spider-Friends
+ item: Squadron Supreme
+ item: Starjammers
+ item: Stark Industries
+ item: Sword
+ item: Thor
+ item: Thunderbolts
+ item: The Ultimates
+ item: Underworld
+ item: United Front
+ item: Villains of Earth
+ item: Wakanda
+ item: Warbound
+ item: Weapon X
+ item: Wildpack
+ item: X-Factor
+ item: X-Force
+ item: X-Men
+ item: X-Ranch
+ item: X-Statix
+ item:
+ name: DC Teams
+ item: Anti-Matter
+ item: Arkham Inmates
+ item: Birds of Prey
+ item: Black Glove
+ item: Black Lantern
+ item: Blue Lantern
+ item: Checkmate
+ item: Crisis
+ item: Darkseid
+ item: Doom Patrol
+ item: Emerald Archers
+ item: Emerald Enemies
+ item: Fearsome Five
+ item: Future Foes
+ item: Gotham Knights
+ item: Green Lantern
+ item: Indigo Lantern
+ item: Injustice Gang
+ item: JLA
+ item: JLI
+ item: JSA
+ item: League of Assassins
+ item: Legionnaires
+ item: Manhunters
+ item: New Gods
+ item: Orange Lantern
+ item: Outsiders
+ item: Rann
+ item: Red Lantern
+ item: Revenge Squad
+ item: Secret Six
+ item: Secret Society
+ item: Shadowpact
+ item: Speed Force
+ item: Suicide Squad
+ item: Star Sapphires
+ item: Team Superman
+ item: Teen Titans
+ item: Thanagar
+ item: The Rogues
+ item: Villains United
+ item: Wayne Family
+ item:
+ name: Other Teams
+ item: Assassins
+ item: Challengers of the Fantastic
+ item: Dark Claw
+ item: Iron Lantern
+ item: JLAvengers
+ item: JLX
+ item: Magnetic Men
+ item: Spider-Boy
+ item: Strangefate
+ item: Themyscira
+ item: B.P.R.D.
+ item: Thule Society
+ item: Brit-Cit
+ item: Cursed Earth
+ item: Dark Judges
+ item: Megacity One
+ item: Autobot
+ item: Decepticon
+ item: Quintesson
diff --git a/data/vs-standard-official.mse-symbol-font/symbol-font b/data/vs-standard-official.mse-symbol-font/symbol-font
index 652d185c..ad6acc19 100644
--- a/data/vs-standard-official.mse-symbol-font/symbol-font
+++ b/data/vs-standard-official.mse-symbol-font/symbol-font
@@ -1,254 +1,254 @@
-mse version: 0.3.8
-version: 2010-05-16
-short name: New (official)
-position hint: 1
-installer group: VS System/Symbol Fonts/Official New
-icon: activate.png
-# Official symbol font for the new template
-
-image font size: 135
-horizontal space: 0
-symbol:
- code: ->
- image: arrow.png
-symbol:
- code: >>>
- image: arrow.png
-symbol:
- code: •
- image: diamond.png
-symbol:
- code: @
- image: diamond.png
-symbol:
- code: <>
- image: diamond.png
-symbol:
- code: Activate
- image: activate.png
- image font size: 176
-symbol:
- code: Alpha Flight
- image: alphaflight.png
-symbol:
- code: Anti-Matter
- image: anti-matter.png
- image font size: 80
-symbol:
- code: Avengers
- image: avengers.png
-symbol:
- code: B.P.R.D.
- image: bprd.png
-symbol:
- code: Brotherhood
- image: brotherhood.png
-symbol:
- code: Crime Lords
- image: crimelords.png
-symbol:
- code: Defenders
- image: defenders.png
-symbol:
- code: Doom
- image: doom.png
-symbol:
- code: Fantastic Four
- image: f4.png
-symbol:
- code: Gotham Knights
- image: gothamknights.png
-symbol:
- code: Green Lantern
- image: greenlantern.png
-symbol:
- code: Hellfire Club
- image: hellfire.png
-symbol:
- code: Heralds of Galactus
- image: heralds.png
-symbol:
- code: Horsemen of Apocalypse
- image: apocalypse.png
-symbol:
- code: JLA
- image: jla.png
-symbol:
- code: JSA
- image: jsa.png
-symbol:
- code: Kree
- image: kree.png
- image font size: 117
-symbol:
- code: Marvel Knights
- image: marvelknights.png
-symbol:
- code: Masters of Evil
- image: mastersofevil.png
-symbol:
- code: Negative Zone
- image: negativezone.png
-symbol:
- code: Planet
- image: planet.png
-symbol:
- code: Shadowpact
- image: shadowpact.png
-symbol:
- code: Shi'ar
- image: shiar.png
-symbol:
- code: Shield
- image: shield.png
-symbol:
- code: Sinister Syndicate
- image: sinistersyndicate.png
-symbol:
- code: Skrull
- image: skrull.png
- image font size: 147
-symbol:
- code: Speed Force
- image: speedforce.png
-symbol:
- code: Spider-Friends
- image: spiderman.png
-symbol:
- code: Team Superman
- image: superman.png
-symbol:
- code: Thule Society
- image: thule.png
-symbol:
- code: Thunderbolts
- image: thunderbolts.png
-symbol:
- code: Teen Titans
- image: titans.png
-symbol:
- code: Underworld
- image: underworld.png
-symbol:
- code: Warbound
- image: warbound.png
-symbol:
- code: X-Men
- image: xmen.png
-symbol:
- code: 0
- image: 0.png
-symbol:
- code: 1
- image: 1.png
-symbol:
- code: 2
- image: 2.png
-symbol:
- code: 3
- image: 3.png
-symbol:
- code: 4
- image: 4.png
-symbol:
- code: 5
- image: 5.png
-symbol:
- code: 6
- image: 6.png
-symbol:
- code: 7
- image: 7.png
-symbol:
- code: 8
- image: 8.png
-symbol:
- code: 9
- image: 9.png
-symbol:
- code: 10
- image: 10.png
-symbol:
- code: 11
- image: 11.png
-symbol:
- code: 12
- image: 12.png
-symbol:
- code: 13
- image: 13.png
-symbol:
- code: 14
- image: 14.png
-symbol:
- code: 15
- image: 15.png
-symbol:
- code: X
- image: X.png
-##############################################################
-# Insert-symbol menu
-insert symbol menu:
- item: ->
- item: •
- item: Activate
- item: Planet
- item:
- name: numbers
- item: 0
- item: 1
- item: 2
- item: 3
- item: 4
- item: 5
- item: 6
- item: 7
- item: 8
- item: 9
- item: 10
- item: 11
- item: 12
- item: 13
- item: 14
- item: 15
- item: X
- item:
- name: Marvel Teams
- item: Alpha Flight
- item: Avengers
- item: Brotherhood
- item: Crime Lords
- item: Defenders
- item: Doom
- item: Fantastic Four
- item: Hellfire Club
- item: Heralds of Galactus
- item: Horsemen of Apocalypse
- item: Kree
- item: Marvel Knights
- item: Masters of Evil
- item: Negative Zone
- item: Shi'ar
- item: Shield
- item: Skrull
- item: Sinister Syndicate
- item: Spider-Friends
- item: Thunderbolts
- item: Underworld
- item: Warbound
- item: X-Men
- item:
- name: DC Teams
- item: Anti-Matter
- item: Gotham Knights
- item: Green Lantern
- item: JLA
- item: JSA
- item: Shadowpact
- item: Speed Force
- item: Team Superman
- item: Teen Titans
- item:
- name: Other Teams
- item: B.P.R.D.
- item: Thule Society
+mse version: 0.3.8
+version: 2010-05-16
+short name: New (official)
+position hint: 1
+installer group: VS System/Symbol Fonts/Official New
+icon: activate.png
+# Official symbol font for the new template
+
+image font size: 135
+horizontal space: 0
+symbol:
+ code: ->
+ image: arrow.png
+symbol:
+ code: >>>
+ image: arrow.png
+symbol:
+ code: •
+ image: diamond.png
+symbol:
+ code: @
+ image: diamond.png
+symbol:
+ code: <>
+ image: diamond.png
+symbol:
+ code: Activate
+ image: activate.png
+ image font size: 176
+symbol:
+ code: Alpha Flight
+ image: alphaflight.png
+symbol:
+ code: Anti-Matter
+ image: anti-matter.png
+ image font size: 80
+symbol:
+ code: Avengers
+ image: avengers.png
+symbol:
+ code: B.P.R.D.
+ image: bprd.png
+symbol:
+ code: Brotherhood
+ image: brotherhood.png
+symbol:
+ code: Crime Lords
+ image: crimelords.png
+symbol:
+ code: Defenders
+ image: defenders.png
+symbol:
+ code: Doom
+ image: doom.png
+symbol:
+ code: Fantastic Four
+ image: f4.png
+symbol:
+ code: Gotham Knights
+ image: gothamknights.png
+symbol:
+ code: Green Lantern
+ image: greenlantern.png
+symbol:
+ code: Hellfire Club
+ image: hellfire.png
+symbol:
+ code: Heralds of Galactus
+ image: heralds.png
+symbol:
+ code: Horsemen of Apocalypse
+ image: apocalypse.png
+symbol:
+ code: JLA
+ image: jla.png
+symbol:
+ code: JSA
+ image: jsa.png
+symbol:
+ code: Kree
+ image: kree.png
+ image font size: 117
+symbol:
+ code: Marvel Knights
+ image: marvelknights.png
+symbol:
+ code: Masters of Evil
+ image: mastersofevil.png
+symbol:
+ code: Negative Zone
+ image: negativezone.png
+symbol:
+ code: Planet
+ image: planet.png
+symbol:
+ code: Shadowpact
+ image: shadowpact.png
+symbol:
+ code: Shi'ar
+ image: shiar.png
+symbol:
+ code: Shield
+ image: shield.png
+symbol:
+ code: Sinister Syndicate
+ image: sinistersyndicate.png
+symbol:
+ code: Skrull
+ image: skrull.png
+ image font size: 147
+symbol:
+ code: Speed Force
+ image: speedforce.png
+symbol:
+ code: Spider-Friends
+ image: spiderman.png
+symbol:
+ code: Team Superman
+ image: superman.png
+symbol:
+ code: Thule Society
+ image: thule.png
+symbol:
+ code: Thunderbolts
+ image: thunderbolts.png
+symbol:
+ code: Teen Titans
+ image: titans.png
+symbol:
+ code: Underworld
+ image: underworld.png
+symbol:
+ code: Warbound
+ image: warbound.png
+symbol:
+ code: X-Men
+ image: xmen.png
+symbol:
+ code: 0
+ image: 0.png
+symbol:
+ code: 1
+ image: 1.png
+symbol:
+ code: 2
+ image: 2.png
+symbol:
+ code: 3
+ image: 3.png
+symbol:
+ code: 4
+ image: 4.png
+symbol:
+ code: 5
+ image: 5.png
+symbol:
+ code: 6
+ image: 6.png
+symbol:
+ code: 7
+ image: 7.png
+symbol:
+ code: 8
+ image: 8.png
+symbol:
+ code: 9
+ image: 9.png
+symbol:
+ code: 10
+ image: 10.png
+symbol:
+ code: 11
+ image: 11.png
+symbol:
+ code: 12
+ image: 12.png
+symbol:
+ code: 13
+ image: 13.png
+symbol:
+ code: 14
+ image: 14.png
+symbol:
+ code: 15
+ image: 15.png
+symbol:
+ code: X
+ image: X.png
+##############################################################
+# Insert-symbol menu
+insert symbol menu:
+ item: ->
+ item: •
+ item: Activate
+ item: Planet
+ item:
+ name: numbers
+ item: 0
+ item: 1
+ item: 2
+ item: 3
+ item: 4
+ item: 5
+ item: 6
+ item: 7
+ item: 8
+ item: 9
+ item: 10
+ item: 11
+ item: 12
+ item: 13
+ item: 14
+ item: 15
+ item: X
+ item:
+ name: Marvel Teams
+ item: Alpha Flight
+ item: Avengers
+ item: Brotherhood
+ item: Crime Lords
+ item: Defenders
+ item: Doom
+ item: Fantastic Four
+ item: Hellfire Club
+ item: Heralds of Galactus
+ item: Horsemen of Apocalypse
+ item: Kree
+ item: Marvel Knights
+ item: Masters of Evil
+ item: Negative Zone
+ item: Shi'ar
+ item: Shield
+ item: Skrull
+ item: Sinister Syndicate
+ item: Spider-Friends
+ item: Thunderbolts
+ item: Underworld
+ item: Warbound
+ item: X-Men
+ item:
+ name: DC Teams
+ item: Anti-Matter
+ item: Gotham Knights
+ item: Green Lantern
+ item: JLA
+ item: JSA
+ item: Shadowpact
+ item: Speed Force
+ item: Team Superman
+ item: Teen Titans
+ item:
+ name: Other Teams
+ item: B.P.R.D.
+ item: Thule Society
diff --git a/data/yugioh-forum.mse-export-template/export-template b/data/yugioh-forum.mse-export-template/export-template
index fe76091f..0bea0349 100644
--- a/data/yugioh-forum.mse-export-template/export-template
+++ b/data/yugioh-forum.mse-export-template/export-template
@@ -1,66 +1,66 @@
-mse version: 0.3.8
-short name: Forum
-full name: Spoiler Exporter
-position hint: 002
-icon: icon.png
-version: 2009-12-18
-installer group: Yugioh/Export/forum
-
-depends on:
- package: yugioh.mse-game
- version: 2007-09-23
-
-game: yugioh
-file type: *.txt|*.txt|*.*|*.*
-
-# By Innuendo and Pichoro
-# Based on code by Idle Muse, Seeonee
-
-script:
- # filter out everything but stars from the level line
- level_star_filter := replace@(match:"", replace:"")+
- replace@(match:"", replace:"")+
- replace@(match:"!", replace:"")+
- replace@(match:"[+]", replace:"")+
- replace@(match:"&", replace:"")+
- replace@(match:"$", replace:"")+
- replace@(match:"#", replace:"")+
- replace@(match:" ", replace:"")+
- replace@(match:"[0-9]", replace:"")+
- replace@(match:"[a-z]", replace:"")+
- replace@(match:"[A-Z]", replace:"")
- # counts stars by breaking them into a list and seeing how long the list is
- level_count := {
- if not is_monster() then level_star_filter(card.level)
- else number_of_items(in: level_star_filter(card.level))
- }
- # Checks for each of the sub types
- nonmonster_level_filter := { if contains(input, match:"%") then "Continuous"
- +if contains(input, match:"!") then "Counter"
- +if contains(input, match:"+") then "Equipment"
- +if contains(input, match:"&") then "Field"
- +if contains(input, match:"$") then "Quick-Play"
- +if contains(input, match:"#") then "Ritual"
- }
- # remove spaces from things
- no_spaces := replace@(match:" ", replace:"")
- write_monster := {
- "\n\n"+card.number+" "+card.name
- +"\n"+no_spaces(card.monster_type)
- +" | "+to_title(card.attribute)
- +" | Level "+level_count()
- +" | "+card.attack
- +" ATK | "+card.defense
- +" DEF\n"+card.rule_text
- +(if card.rarity != "common" then "\n"+to_title(card.rarity))
- }
- write_nonmonster := {
- "\n\n"+card.number+" "+card.name
- +"\n"+nonmonster_level_filter(card.level)+(if nonmonster_level_filter(card.level)=="" then "Normal")
- +" "+to_title(card.card_type)+"\n"
- +card.rule_text
- +(if card.rarity != "common" then "\n"+to_title(card.rarity))
- }
- write_card := { if is_monster() then write_monster() else write_nonmonster() }
- write_cards := to_text(for each card in sort_list(cards, order_by: {card.number}) do write_card())
- to_string(set.title+"\n"+set.description+write_cards)
+mse version: 0.3.8
+short name: Forum
+full name: Spoiler Exporter
+position hint: 002
+icon: icon.png
+version: 2009-12-18
+installer group: Yugioh/Export/forum
+
+depends on:
+ package: yugioh.mse-game
+ version: 2007-09-23
+
+game: yugioh
+file type: *.txt|*.txt|*.*|*.*
+
+# By Innuendo and Pichoro
+# Based on code by Idle Muse, Seeonee
+
+script:
+ # filter out everything but stars from the level line
+ level_star_filter := replace@(match:"", replace:"")+
+ replace@(match:"", replace:"")+
+ replace@(match:"!", replace:"")+
+ replace@(match:"[+]", replace:"")+
+ replace@(match:"&", replace:"")+
+ replace@(match:"$", replace:"")+
+ replace@(match:"#", replace:"")+
+ replace@(match:" ", replace:"")+
+ replace@(match:"[0-9]", replace:"")+
+ replace@(match:"[a-z]", replace:"")+
+ replace@(match:"[A-Z]", replace:"")
+ # counts stars by breaking them into a list and seeing how long the list is
+ level_count := {
+ if not is_monster() then level_star_filter(card.level)
+ else number_of_items(in: level_star_filter(card.level))
+ }
+ # Checks for each of the sub types
+ nonmonster_level_filter := { if contains(input, match:"%") then "Continuous"
+ +if contains(input, match:"!") then "Counter"
+ +if contains(input, match:"+") then "Equipment"
+ +if contains(input, match:"&") then "Field"
+ +if contains(input, match:"$") then "Quick-Play"
+ +if contains(input, match:"#") then "Ritual"
+ }
+ # remove spaces from things
+ no_spaces := replace@(match:" ", replace:"")
+ write_monster := {
+ "\n\n"+card.number+" "+card.name
+ +"\n"+no_spaces(card.monster_type)
+ +" | "+to_title(card.attribute)
+ +" | Level "+level_count()
+ +" | "+card.attack
+ +" ATK | "+card.defense
+ +" DEF\n"+card.rule_text
+ +(if card.rarity != "common" then "\n"+to_title(card.rarity))
+ }
+ write_nonmonster := {
+ "\n\n"+card.number+" "+card.name
+ +"\n"+nonmonster_level_filter(card.level)+(if nonmonster_level_filter(card.level)=="" then "Normal")
+ +" "+to_title(card.card_type)+"\n"
+ +card.rule_text
+ +(if card.rarity != "common" then "\n"+to_title(card.rarity))
+ }
+ write_card := { if is_monster() then write_monster() else write_nonmonster() }
+ write_cards := to_text(for each card in sort_list(cards, order_by: {card.number}) do write_card())
+ to_string(set.title+"\n"+set.description+write_cards)