Skip to content

Commit e3aff3f

Browse files
committed
Merge branch 'master' of github.com:NBKelly/netrunner into terminal-directive-campaign-cards
2 parents d580740 + 0ac4430 commit e3aff3f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

resources/public/i18n/en.ftl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -428,8 +428,8 @@ game_breach-server = Breach server
428428
game_card = Card
429429
430430
game_card-count = {$cnt ->
431-
[one] {$size} card
432-
*[other] {$size} cards
431+
[one] {$cnt} card
432+
*[other] {$cnt} cards
433433
}
434434
435435
game_click-count = {$click ->

src/cljs/nr/gameboard/board.cljs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -911,7 +911,7 @@
911911
[:div.panel.blue-shade.popup {:ref #(swap! s assoc :hand-popup %) :class popup-direction}
912912
[:div
913913
[:a {:on-click #(close-popup % (:hand-popup @s) nil false false)} (tr [:game_close "Close"])]
914-
[:label (tr [:game_card-count] size)]
914+
[:label (tr [:game_card-count] {:cnt size})]
915915
(let [{:keys [total]} @hand-size]
916916
(stat-controls :hand-size [:div.hand-size (tr [:game_max-hand "Max hand size"] {:total total})]))
917917
[build-hand-card-view filled-hand size "card-popup-wrapper"]]])]))))

0 commit comments

Comments
 (0)