diff --git a/studio/card_equipment/resources/js/card_equipment.js b/studio/card_equipment/resources/js/card_equipment.js
index d4955e6c..133c19de 100644
--- a/studio/card_equipment/resources/js/card_equipment.js
+++ b/studio/card_equipment/resources/js/card_equipment.js
@@ -2,7 +2,8 @@ var CardEquipment = {
_i18n: {
'fr': {
'tab': "Équipement",
- 'nocard': "Vous n'avez aucune carte pour le moment. Cliquez sur le bouton + en haut pour en creer une.",
+ 'nocard': "Vous n'avez aucune carte pour le moment.",
+ 'nocard2': " Cliquez sur le bouton + en haut pour en creer une.",
'printnocard': "Vous n'avez aucune carte pour le moment",
'newcard': "Créer une carte",
'print': "Imprimer des cartes",
@@ -49,7 +50,8 @@ var CardEquipment = {
},
'en': {
'tab': "Equipment",
- 'nocard': "You have no card for the moment. Click on the + button in the header to create one.",
+ 'nocard': "You have no card for the moment.",
+ 'nocard2': " Click on the + button in the header to create one.",
'printnocard': "You have no card for the moment",
'newcard': "Create a new card",
'print': "Print cards",
@@ -138,7 +140,7 @@ var CardEquipment = {
}
else
{
- html += "
" + CardEquipment._i18n[Language].nocard + "
";
+ html += "" + CardEquipment._i18n[Language].nocard + (withEditLink !== false ? CardEquipment._i18n[Language].nocard2 : '') + "
";
}
if (!withEditLink)
diff --git a/studio/card_spell/resources/js/card_spell.js b/studio/card_spell/resources/js/card_spell.js
index 24002ecf..bb96be34 100644
--- a/studio/card_spell/resources/js/card_spell.js
+++ b/studio/card_spell/resources/js/card_spell.js
@@ -2,7 +2,8 @@ var CardSpell = {
_i18n: {
'fr': {
'tab': "Sort",
- 'nocard': "Vous n'avez aucune carte pour le moment. Cliquez sur le bouton + en haut pour en creer une.",
+ 'nocard': "Vous n'avez aucune carte pour le moment.",
+ 'nocard2': " Cliquez sur le bouton + en haut pour en creer une.",
'printnocard': "Vous n'avez aucune carte pour le moment",
'newcard': "Créer une carte",
'print': "Imprimer des cartes",
@@ -40,7 +41,8 @@ var CardSpell = {
},
'en': {
'tab': "Spell",
- 'nocard': "You have no card for the moment. Click on the + button in the header to create one.",
+ 'nocard': "You have no card for the moment.",
+ 'nocard2': " Click on the + button in the header to create one.",
'printnocard': "You have no card for the moment",
'newcard': "Create a new card",
'print': "Print cards",
@@ -120,7 +122,7 @@ var CardSpell = {
}
else
{
- html += "" + CardSpell._i18n[Language].nocard + "
";
+ html += "" + CardSpell._i18n[Language].nocard + (withEditLink !== false ? CardSpell._i18n[Language].nocard2 : '') + "
";
}
if (!withEditLink)