mirror of
https://github.com/Lissy93/dashy.git
synced 2025-07-26 23:24:38 +02:00
commit
e82ad44b17
@ -147,5 +147,11 @@
|
|||||||
"backup-error-password": "Incorrect password. Please enter your current password.",
|
"backup-error-password": "Incorrect password. Please enter your current password.",
|
||||||
"backup-success-msg": "Completed Successfully",
|
"backup-success-msg": "Completed Successfully",
|
||||||
"restore-success-msg": "Config Restored Successfully"
|
"restore-success-msg": "Config Restored Successfully"
|
||||||
|
},
|
||||||
|
"menu": {
|
||||||
|
"sametab": "Open in Current Tab",
|
||||||
|
"newtab": "Open in New Tab",
|
||||||
|
"modal": "Open in Pop-Up Modal",
|
||||||
|
"workspace": "Open in Workspace View"
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -147,5 +147,11 @@
|
|||||||
"backup-error-password": "Mot de passe incorrect. Veuillez saisir votre mot de passe actuel.",
|
"backup-error-password": "Mot de passe incorrect. Veuillez saisir votre mot de passe actuel.",
|
||||||
"backup-success-msg": "Sauvegarde effectuée avec succès",
|
"backup-success-msg": "Sauvegarde effectuée avec succès",
|
||||||
"restore-success-msg": "Configuration restaurée avec succès"
|
"restore-success-msg": "Configuration restaurée avec succès"
|
||||||
|
},
|
||||||
|
"menu": {
|
||||||
|
"sametab": "Ouvrir dans l'onglet actuel",
|
||||||
|
"newtab": "Ouvrir dans un nouvel onglet",
|
||||||
|
"modal": "Ouvrir en mode fenêtré",
|
||||||
|
"workspace": "Ouvrir en mode plein écran"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -5,19 +5,19 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li @click="launch('sametab')">
|
<li @click="launch('sametab')">
|
||||||
<SameTabOpenIcon />
|
<SameTabOpenIcon />
|
||||||
<span>Open in Current Tab</span>
|
<span>{{ $t('menu.sametab') }}</span>
|
||||||
</li>
|
</li>
|
||||||
<li @click="launch('newtab')">
|
<li @click="launch('newtab')">
|
||||||
<NewTabOpenIcon />
|
<NewTabOpenIcon />
|
||||||
<span>Open in New Tab</span>
|
<span>{{ $t('menu.newtab') }}</span>
|
||||||
</li>
|
</li>
|
||||||
<li @click="launch('modal')">
|
<li @click="launch('modal')">
|
||||||
<IframeOpenIcon />
|
<IframeOpenIcon />
|
||||||
<span>Open in Pop-Up Modal</span>
|
<span>{{ $t('menu.modal') }}</span>
|
||||||
</li>
|
</li>
|
||||||
<li @click="launch('workspace')">
|
<li @click="launch('workspace')">
|
||||||
<WorkspaceOpenIcon />
|
<WorkspaceOpenIcon />
|
||||||
<span>Open in Workspace View</span>
|
<span>{{ $t('menu.workspace') }}</span>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user