Skip to content

Commit 770e691

Browse files
committed
Fixed issue after rebase in LaunchTypeModal and improved "Par" capitalization in French
1 parent bcee90c commit 770e691

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

src/components/modals/launch-type/LaunchTypeModal.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import {areWrapperArgumentsProvided, getDeterminedLaunchType, getWrapperLaunchAr
1010
import CopyToClipboardButton from "../../buttons/CopyToClipboardButton.vue";
1111
import ManagerSettings from "../../../r2mm/manager/ManagerSettings";
1212
import { useI18n } from 'vue-i18n';
13+
import EnumResolver from '../../../model/enums/_EnumResolver';
1314
1415
const store = getStore<State>();
1516
const { t } = useI18n();

src/components/views/DownloadProgressModal.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ function closeModal() {
3333
</h3>
3434

3535
<p>
36-
{{ t('translations.pages.manager.modals.downloadProgress.downloadProgress', { progress: store.getters['download/currentDownload'].downloadProgress, FileUtils.humanReadableSize(store.getters['download/currentDownload'].totalDownloadSize) }) }}
36+
{{ t('translations.pages.manager.modals.downloadProgress.downloadProgress', { progress: store.getters['download/currentDownload'].downloadProgress, totalSize: FileUtils.humanReadableSize(store.getters['download/currentDownload'].totalDownloadSize) }) }}
3737
</p>
3838

3939
<Progress

src/i18n/en/pages/ManagerTranslation.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,8 @@ export const ManagerTranslation: ManagerMessageFormat = {
189189
downloading: 'Downloading {modName}',
190190
installing: 'Installing {modName}',
191191
},
192-
downloadProgress: 'Downloading: {progress}% complete',
193-
installProgress: 'Installing: {progress}% complete',
192+
downloadProgress: 'Downloading: {progress}% of {totalSize}',
193+
installProgress: 'Installing: {progress}%',
194194
waitingForDownload: 'Installing: waiting for download to finish',
195195
},
196196
downloadModVersionSelect: {

src/i18n/fr/pages/ManagerTranslation.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -183,9 +183,9 @@ export const ManagerTranslation: ManagerMessageFormat = {
183183
downloading: 'Téléchargement de {modName}',
184184
installing: 'Installation de {modName}',
185185
},
186-
downloadProgress: 'Téléchargement : {progress}% terminé',
187-
installProgress: 'Installation : {progress}% terminée',
188-
waitingForDownload: 'Installation : en attente de la fin du téléchargement',
186+
downloadProgress: 'Téléchargement en cours : {progress}% sur {totalSize}',
187+
installProgress: 'Installation en cours : {progress}% terminée',
188+
waitingForDownload: 'Installation en cours : en attente de la fin du téléchargement',
189189
},
190190
downloadModVersionSelect: {
191191
title: 'Sélectionnez une version de {modName} à télécharger',
@@ -305,7 +305,7 @@ export const ManagerTranslation: ManagerMessageFormat = {
305305
installed: 'Mod déjà installé',
306306
},
307307
mod: {
308-
author: 'Par {author}'
308+
author: 'par {author}'
309309
},
310310
actions: {
311311
download: 'Télécharger',

0 commit comments

Comments
 (0)