Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions frontend/src/components/log/file/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
>
<hightlight :log="log" :type="config.colorMode ?? 'nginx'"></hightlight>
</div>
<hightlight v-if="visibleLogs.length === 0" :log="$t('commons.log.noLog')" type="system"></hightlight>
</div>
</div>
</template>
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/lang/modules/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,9 @@ const message = {
hourUnit: 'h',
dayUnit: 'd',
},
log: {
noLog: 'No logs available',
},
},
menu: {
home: 'Overview',
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/lang/modules/ja.ts
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,9 @@ const message = {
dayUnit: 'd',
millisecond: 'ミリ秒',
},
log: {
noLog: 'ログはありません',
},
},
menu: {
home: '概要',
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/lang/modules/ko.ts
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,9 @@ const message = {
dayUnit: '일',
millisecond: '밀리초',
},
log: {
noLog: '로그 없음',
},
},
menu: {
home: '개요',
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/lang/modules/ms.ts
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,9 @@ const message = {
dayUnit: 'd',
millisecond: 'Milisaat',
},
log: {
noLog: 'Tiada log sedia ada',
},
},
menu: {
home: 'Overview',
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/lang/modules/pt-br.ts
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,9 @@ const message = {
dayUnit: 'd',
millisecond: 'Milissegundo',
},
log: {
noLog: 'Nenhum log disponível',
},
},
menu: {
home: 'Visão Geral',
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/lang/modules/ru.ts
Original file line number Diff line number Diff line change
Expand Up @@ -340,6 +340,9 @@ const message = {
dayUnit: 'д',
millisecond: 'Миллисекунда',
},
log: {
noLog: 'Нет доступных логов',
},
},
menu: {
home: 'Обзор',
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/lang/modules/tr.ts
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,9 @@ const message = {
hourUnit: 'sa',
dayUnit: 'g',
},
log: {
noLog: 'Günlük yok',
},
},
menu: {
home: 'Genel Bakış',
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/lang/modules/zh-Hant.ts
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,9 @@ const message = {
dayUnit: '天',
millisecond: '毫秒',
},
log: {
noLog: '暫無日志',
},
},
menu: {
home: '概覽',
Expand Down
3 changes: 3 additions & 0 deletions frontend/src/lang/modules/zh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,9 @@ const message = {
dayUnit: '天',
millisecond: '毫秒',
},
log: {
noLog: '暂无日志',
},
},
menu: {
home: '概览',
Expand Down
Loading