From 40bba8b31cfbef319553920d9fa678ffc1a99597 Mon Sep 17 00:00:00 2001 From: 0neGal Date: Thu, 30 Dec 2021 03:43:37 +0100 Subject: version now refreshes, fixed and renamed stuff The version now refreshes when you update/install Northstar, I renamed vpVersion/nsVersion to just vpversion/nsversion and getInstalledVersion() to getNSVersion(), removed uses of getElementById() with just the ID. I also added English localization. The versions text color is now bound by a CSS variable (we may use it in the future again). I'm also not sure what the point of `style="white-space: nowrap;"` was, as I don't see much of a difference? Rather instead use `` in the lang file if needed. Besides that I did tiny code cleanup. --- src/lang/en.json | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/lang') diff --git a/src/lang/en.json b/src/lang/en.json index e88079e..a89f848 100644 --- a/src/lang/en.json +++ b/src/lang/en.json @@ -17,6 +17,8 @@ "cli.launch.linuxerror": "Launching the game is not currently supported on Linux", "gui.welcome": "Welcome to Viper!", + "gui.versions.viper": "Viper version", + "gui.versions.northstar": "Northstar version", "gui.exit": "Exit", "gui.update": "Update", "gui.setpath": "Game Path", -- cgit v1.2.3 From addc349189f582a1d8a833ba554f7b8df9205dd4 Mon Sep 17 00:00:00 2001 From: Alystrasz Date: Fri, 31 Dec 2021 13:25:18 +0100 Subject: [fix] adding missing french translations --- src/lang/fr.json | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/lang') diff --git a/src/lang/fr.json b/src/lang/fr.json index c3e7027..26648c4 100644 --- a/src/lang/fr.json +++ b/src/lang/fr.json @@ -1,6 +1,7 @@ { "cli.help.help": "affiche ce message d'aide", "cli.help.debug": "affiche les outils de développement", + "cli.help.version": "retourne des informations sur la version du logiciel", "cli.help.cli": "force l'activation de la CLI", "cli.help.update": "met à jour Northstar sur le chemin du jeu précisé", "cli.help.setpath": "enregistre le chemin du client de jeu", @@ -17,10 +18,17 @@ "cli.launch.linuxerror": "Le support du jeu sur Linux n'est pas encore implémenté.", "gui.welcome": "Bienvenue sur Viper !", + "gui.versions.viper": "Version de Viper", + "gui.versions.northstar": "Version de Northstar", "gui.exit": "Fermer", "gui.update": "Mise à jour", "gui.setpath": "Chemin du jeu", + "gui.update.downloading": "Téléchargement de la mise à jour...", + "gui.update.extracting": "Extraction des fichiers...", + "gui.update.finished": "Terminé, vous pouvez jouer !", + "gui.update.uptodate": "Déjà à jour !", + "gui.launch": "Jouer", "gui.launchvanilla": "Vanilla", "gui.launchnorthstar": "Northstar", -- cgit v1.2.3 From 10c786da5be323c0b2e7042e79bcee8849e25ef4 Mon Sep 17 00:00:00 2001 From: 0neGal Date: Fri, 31 Dec 2021 15:39:10 +0100 Subject: fixed padding on welcome text and added 's --- src/app/main.css | 4 +++- src/lang/fr.json | 41 ----------------------------------------- 2 files changed, 3 insertions(+), 42 deletions(-) delete mode 100644 src/lang/fr.json (limited to 'src/lang') diff --git a/src/app/main.css b/src/app/main.css index dfa5633..c2ca627 100644 --- a/src/app/main.css +++ b/src/app/main.css @@ -62,6 +62,8 @@ button, .text { transition: 0.2s ease-in-out; } +#welcome {padding: 0px} + button { margin-bottom: 10px; color: var(--btnforeground); @@ -79,4 +81,4 @@ button:active { #setpath {background: #5E81AC} #northstar {background: #C7777F} #vanilla, #exit {background: #656E7F} -button:disabled {background: var(--disabled) !important; opacity: 0.5} \ No newline at end of file +button:disabled {background: var(--disabled) !important; opacity: 0.5} diff --git a/src/lang/fr.json b/src/lang/fr.json deleted file mode 100644 index 26648c4..0000000 --- a/src/lang/fr.json +++ /dev/null @@ -1,41 +0,0 @@ -{ - "cli.help.help": "affiche ce message d'aide", - "cli.help.debug": "affiche les outils de développement", - "cli.help.version": "retourne des informations sur la version du logiciel", - "cli.help.cli": "force l'activation de la CLI", - "cli.help.update": "met à jour Northstar sur le chemin du jeu précisé", - "cli.help.setpath": "enregistre le chemin du client de jeu", - - "cli.setpath.noarg": "Aucun argument donné à --setpath", - - "cli.update.current": "Version actuelle :", - "cli.update.downloading": "Téléchargement en cours ", - "cli.update.checking": "Vérification des mises à jour ...", - "cli.update.downloaddone": "Téléchargement terminé ! Extraction des fichiers...", - "cli.update.finished": "Mise à jour terminée !", - "cli.update.uptodate": "La dernière version (%s) est déjà installée.", - - "cli.launch.linuxerror": "Le support du jeu sur Linux n'est pas encore implémenté.", - - "gui.welcome": "Bienvenue sur Viper !", - "gui.versions.viper": "Version de Viper", - "gui.versions.northstar": "Version de Northstar", - "gui.exit": "Fermer", - "gui.update": "Mise à jour", - "gui.setpath": "Chemin du jeu", - - "gui.update.downloading": "Téléchargement de la mise à jour...", - "gui.update.extracting": "Extraction des fichiers...", - "gui.update.finished": "Terminé, vous pouvez jouer !", - "gui.update.uptodate": "Déjà à jour !", - - "gui.launch": "Jouer", - "gui.launchvanilla": "Vanilla", - "gui.launchnorthstar": "Northstar", - - "gui.selectpath": "Veuillez sélectionner le dossier où se trouve le client Titanfall 2.", - - - "general.launching": "Lancement", - "general.missingpath": "Le chemin du client n'est pas défini !" -} -- cgit v1.2.3 From ba82a7e8e5bc90705649c859674caeb334996b81 Mon Sep 17 00:00:00 2001 From: 0neGal Date: Fri, 31 Dec 2021 15:51:27 +0100 Subject: fixed missing fr.json Some git shenanigans led to me unknowningly deleting this file, that or it was when testing the locale, since the way I tested it was by copying the original file to the en.json, I must've moved the file instead of copying, oh well... It's fixed now... --- src/lang/fr.json | 41 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 src/lang/fr.json (limited to 'src/lang') diff --git a/src/lang/fr.json b/src/lang/fr.json new file mode 100644 index 0000000..26648c4 --- /dev/null +++ b/src/lang/fr.json @@ -0,0 +1,41 @@ +{ + "cli.help.help": "affiche ce message d'aide", + "cli.help.debug": "affiche les outils de développement", + "cli.help.version": "retourne des informations sur la version du logiciel", + "cli.help.cli": "force l'activation de la CLI", + "cli.help.update": "met à jour Northstar sur le chemin du jeu précisé", + "cli.help.setpath": "enregistre le chemin du client de jeu", + + "cli.setpath.noarg": "Aucun argument donné à --setpath", + + "cli.update.current": "Version actuelle :", + "cli.update.downloading": "Téléchargement en cours ", + "cli.update.checking": "Vérification des mises à jour ...", + "cli.update.downloaddone": "Téléchargement terminé ! Extraction des fichiers...", + "cli.update.finished": "Mise à jour terminée !", + "cli.update.uptodate": "La dernière version (%s) est déjà installée.", + + "cli.launch.linuxerror": "Le support du jeu sur Linux n'est pas encore implémenté.", + + "gui.welcome": "Bienvenue sur Viper !", + "gui.versions.viper": "Version de Viper", + "gui.versions.northstar": "Version de Northstar", + "gui.exit": "Fermer", + "gui.update": "Mise à jour", + "gui.setpath": "Chemin du jeu", + + "gui.update.downloading": "Téléchargement de la mise à jour...", + "gui.update.extracting": "Extraction des fichiers...", + "gui.update.finished": "Terminé, vous pouvez jouer !", + "gui.update.uptodate": "Déjà à jour !", + + "gui.launch": "Jouer", + "gui.launchvanilla": "Vanilla", + "gui.launchnorthstar": "Northstar", + + "gui.selectpath": "Veuillez sélectionner le dossier où se trouve le client Titanfall 2.", + + + "general.launching": "Lancement", + "general.missingpath": "Le chemin du client n'est pas défini !" +} -- cgit v1.2.3