Skip to content

Commit

Permalink
refactor some messages
Browse files Browse the repository at this point in the history
  • Loading branch information
tappi287 committed Jan 30, 2022
1 parent 86531b5 commit 5b7c165
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
3 changes: 2 additions & 1 deletion src/components/DirManager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
</div>
</template>
<template v-else>
<div>None</div>
<div v-html="$t('main.dirModNoLib')"></div>
</template>

<!-- Add Custom Dir -->
Expand Down Expand Up @@ -137,6 +137,7 @@ export default {
this.$eventHub.$emit('set-busy', false)
},
addCustomDir: async function() {
if (this.addDir === '') { return }
this.$eventHub.$emit('set-busy', true)
this.$eventHub.$emit('toggle-dir-manager')
Expand Down
2 changes: 1 addition & 1 deletion src/components/SteamLibTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<!-- Add User Dir -->
<b-button @click="$eventHub.$emit('toggle-dir-manager', false, true)" variant="primary"
:disabled="backgroundBusy || steamlibBusy"
v-b-popover.hover.top="$t('lib.addAppHint')">
v-b-popover.hover.top="$t('lib.addAppDirHint')">
<b-icon icon="folder-plus"></b-icon>
</b-button>
<!-- Manual Update -->
Expand Down
6 changes: 4 additions & 2 deletions src/lang/translations/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,13 @@
"debug": "Debug Mode",
"debugText": " Visualisiert den angewendeten Radius und wird regelmäßig den Leistungsverlust durch FSR dokumentieren.",
"versionMismatch": "Installierte OpenVR FSR Version wird von dieser Version der App nicht unterstützt. Einige FSR Konfigurationseinstellungen sind möglicherweise nicht verfügbar oder haben möglicherweise keine auswirkung.",
"versionMatch": "Diese Version von OpenVR FSR wird von dieser App unterstützt.",
"versionMatch": "Diese Version der Mod wird von dieser App unterstützt.",
"dirModTitle": "App Verzeichnisse verwalten",
"dirModText": "Verwalte Datei-Verzeichnisse zu unterschiedlichen Mod Versionen und hinzugefügten App Bibliotheken.",
"dirModLibs": "Benutzer App Bibliotheken",
"dirRem": "Soll diese benutzerdefinierte Bibliothek wirklich entfernt werden?",
"dirRemConfirm": "Entfernung Bestätigen"
"dirRemConfirm": "Entfernung Bestätigen",
"dirModNoLib": "Keine benutzerdefinierten Bibliotheken vorhanden"
},
"setting": {
"keyboardAssign": "Eine Tastatur Taste drücken um einen Hotkey zuzuweisen"
Expand Down Expand Up @@ -67,6 +68,7 @@
"addDirPathHint": "Pfad zum Stammverzeichnis der Bibliothek angeben die App Ordner enthält",
"addDirSubmit": "Bibliothek hinzufügen",
"addAppHint": "Füge eine eigene Anwendung außerhalb der Steam Bibliothek hinzu.",
"addAppDirHint": "Benutzer App Bibliothek hinzufügen.",
"addAppTitle": "Benutzer App hinzufügen",
"addAppText": "Einen Pfad zur externen Anwendung im Format: <i>C:\\Dir\\MyDir</i> eingeben.<br /><br />",
"addAppName": "Anwendungs Name",
Expand Down
6 changes: 4 additions & 2 deletions src/lang/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,13 @@
"debug": "Debug Mode",
"debugText": "If enabled, will visualize the radius to which FSR is applied.\n Will also periodically log the GPU cost for applying FSR in the\n current configuration.",
"versionMismatch": "Installed OpenVR FSR version doesn't match the version supported by this app. Some FSR configuration settings may not be available or may have no effect.",
"versionMatch": "This version of OpenVR FSR is supported by this version of the app.",
"versionMatch": "This version of this Mod is supported by this version of the app.",
"dirModTitle": "Manage App directories",
"dirModText": "Manage directories pointing to different mod version or remove custom user libraries.",
"dirModLibs": "User App Libraries",
"dirRem": "Do you really want to remove this custom library?",
"dirRemConfirm": "Confirm Removal"
"dirRemConfirm": "Confirm Removal",
"dirModNoLib": "No User App Libraries added yet"
},
"setting": {
"keyboardAssign": "Press a keyboard key to assign a Hotkey"
Expand Down Expand Up @@ -67,6 +68,7 @@
"addDirPathHint": "Provide the path to the root directory of the library containing app folders",
"addDirSubmit": "Add Library",
"addAppHint": "Add a custom app outside your Steam library.",
"addAppDirHint": "Add a custom app library.",
"addAppTitle": "Add User App",
"addAppText": "Provide the path to an application outside your Steam library in the format: <i>C:\\Dir\\MyDir</i>.<br /><br />",
"addAppName": "Application Name",
Expand Down

0 comments on commit 5b7c165

Please sign in to comment.