summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVitalii Lysak <v.lysak@dunice.net>2022-07-27 16:58:59 +0300
committerVitalii Lysak <v.lysak@dunice.net>2022-07-27 16:58:59 +0300
commit681d748683a09e8b3f2e3f8faeb6a3184edc5f7b (patch)
treead7d1cad3ae6ed48f36a4256078737e4e1077e5a
parent32453c4cab3f88949a029b2d9c8b50ca7ac683bc (diff)
downloadwebui-vue-681d748683a09e8b3f2e3f8faeb6a3184edc5f7b.tar.xz
fix titles for cpu temp, dynamic
-rw-r--r--src/locales/ru-RU.json8
-rw-r--r--src/views/_sila/Processors/Dynamic/CpuTemp.vue14
2 files changed, 11 insertions, 11 deletions
diff --git a/src/locales/ru-RU.json b/src/locales/ru-RU.json
index 88d4cc88..8b801958 100644
--- a/src/locales/ru-RU.json
+++ b/src/locales/ru-RU.json
@@ -864,11 +864,11 @@
"table": {
"temperature": {
"name": "Имя модуля",
- "currentTemperature": "Текущее, С°",
- "middleTemperature": "Среднее, С°",
- "minTemperature": "Минимальное, С°",
+ "current": "Текущее, С°",
+ "middle": "Среднее, С°",
+ "min": "Минимальное, С°",
"minDate": "Дата минимального",
- "maxTemperature": "Максимальное, С°",
+ "max": "Максимальное, С°",
"maxDate": "Дата максимального"
},
"power": {
diff --git a/src/views/_sila/Processors/Dynamic/CpuTemp.vue b/src/views/_sila/Processors/Dynamic/CpuTemp.vue
index 1da00e70..0adcae84 100644
--- a/src/views/_sila/Processors/Dynamic/CpuTemp.vue
+++ b/src/views/_sila/Processors/Dynamic/CpuTemp.vue
@@ -111,32 +111,32 @@ export default {
fields: [
{
key: 'name',
- label: this.$t('pageProcessors.table.name'),
+ label: this.$t('pageProcessors.table.temperature.name'),
thStyle: { width: '25%' },
},
{
key: 'current',
- label: this.$t('pageProcessors.table.currentTemperature'),
+ label: this.$t('pageProcessors.table.temperature.current'),
},
{
key: 'middle',
- label: this.$t('pageProcessors.table.middleTemperature'),
+ label: this.$t('pageProcessors.table.temperature.middle'),
},
{
key: 'min',
- label: this.$t('pageProcessors.table.minTemperature'),
+ label: this.$t('pageProcessors.table.temperature.min'),
},
{
key: 'minDate',
- label: this.$t('pageProcessors.table.minDate'),
+ label: this.$t('pageProcessors.table.temperature.minDate'),
},
{
key: 'max',
- label: this.$t('pageProcessors.table.maxTemperature'),
+ label: this.$t('pageProcessors.table.temperature.max'),
},
{
key: 'maxDate',
- label: this.$t('pageProcessors.table.maxDate'),
+ label: this.$t('pageProcessors.table.temperature.maxDate'),
},
],
};