diff --git a/src/modules/stream/stream-stats.ts b/src/modules/stream/stream-stats.ts index 8f160c5..758ebb6 100644 --- a/src/modules/stream/stream-stats.ts +++ b/src/modules/stream/stream-stats.ts @@ -58,11 +58,11 @@ export class StreamStats { $element: CE('span'), }, [StreamStat.DOWNLOAD]: { - name: t('download'), + name: t('downloaded'), $element: CE('span'), }, [StreamStat.UPLOAD]: { - name: t('upload'), + name: t('uploaded'), $element: CE('span'), }, }; diff --git a/src/utils/settings-storages/global-settings-storage.ts b/src/utils/settings-storages/global-settings-storage.ts index c35f3d3..b30dd7e 100644 --- a/src/utils/settings-storages/global-settings-storage.ts +++ b/src/utils/settings-storages/global-settings-storage.ts @@ -722,8 +722,8 @@ export class GlobalSettingsStorage extends BaseSettingsStorage { [StreamStat.DECODE_TIME]: `${StreamStat.DECODE_TIME.toUpperCase()}: ${t('stat-decode-time')}`, [StreamStat.PACKETS_LOST]: `${StreamStat.PACKETS_LOST.toUpperCase()}: ${t('stat-packets-lost')}`, [StreamStat.FRAMES_LOST]: `${StreamStat.FRAMES_LOST.toUpperCase()}: ${t('stat-frames-lost')}`, - [StreamStat.DOWNLOAD]: `${StreamStat.DOWNLOAD.toUpperCase()}: ${t('download')}`, - [StreamStat.UPLOAD]: `${StreamStat.UPLOAD.toUpperCase()}: ${t('upload')}`, + [StreamStat.DOWNLOAD]: `${StreamStat.DOWNLOAD.toUpperCase()}: ${t('downloaded')}`, + [StreamStat.UPLOAD]: `${StreamStat.UPLOAD.toUpperCase()}: ${t('uploaded')}`, }, params: { size: 6, diff --git a/src/utils/translation.ts b/src/utils/translation.ts index 16cc3e2..f085c72 100644 --- a/src/utils/translation.ts +++ b/src/utils/translation.ts @@ -93,6 +93,7 @@ const Texts = { "disabled": "Disabled", "disconnected": "Disconnected", "download": "Download", + "downloaded": "Downloaded", "edit": "Edit", "enable-controller-shortcuts": "Enable controller shortcuts", "enable-local-co-op-support": "Enable local co-op support", @@ -106,7 +107,7 @@ const Texts = { "experimental": "Experimental", "export": "Export", "fast": "Fast", - "fortnite-allow-stw-mode": "Allows playing STW mode on mobile", + "fortnite-allow-stw-mode": "Allows playing \"Save the World\" mode on mobile", "fortnite-force-console-version": "Fortnite: force console version", "game-bar": "Game Bar", "getting-consoles-list": "Getting the list of consoles...", @@ -149,6 +150,7 @@ const Texts = { "mkb-disclaimer": "Using this feature when playing online could be viewed as cheating", "mouse-and-keyboard": "Mouse & Keyboard", "mouse-wheel": "Mouse wheel", + "msfs2020-force-native-mkb": "MSFS2020: force native M&KB support", "muted": "Muted", "name": "Name", "native-mkb": "Native Mouse & Keyboard", @@ -348,6 +350,7 @@ const Texts = { "unmuted": "Unmuted", "unsharp-masking": "Unsharp masking", "upload": "Upload", + "uploaded": "Uploaded", "use-mouse-absolute-position": "Use mouse's absolute position", "use-this-at-your-own-risk": "Use this at your own risk", "user-agent-profile": "User-Agent profile",