소스 검색

use string resources for timezone and locale

pull/1/head
Jonathan Cobb 4 년 전
부모
커밋
5b9e58c937
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      src/account/NetworksPage.vue

+ 2
- 2
src/account/NetworksPage.vue 파일 보기

@@ -21,8 +21,8 @@
<tbody>
<tr v-for="network in networks" :key="network.uuid">
<td>{{network.name}}.{{network.domainName}}</td>
<td>{{network.locale}}</td>
<td>{{network.timezone}}</td>
<td nowrap="nowrap">{{messages['locale_'+network.locale] || network.locale}}</td>
<td nowrap="nowrap">{{messages['tz_name_'+network.timezone] || network.timezone}}</td>
<td>{{network.state}}</td>
<td><router-link :to="{ path: '/networks/'+ network.uuid }">{{messages.table_row_networks_action_view}}</router-link></td>
<td v-if="network.state === 'running'">{{messages.table_row_networks_action_stop}}</td>


불러오는 중...
취소
저장