Sfoglia il codice sorgente

use string resources for timezone and locale

pull/1/head
Jonathan Cobb 4 anni fa
parent
commit
5b9e58c937
1 ha cambiato i file con 2 aggiunte e 2 eliminazioni
  1. +2
    -2
      src/account/NetworksPage.vue

+ 2
- 2
src/account/NetworksPage.vue Vedi File

@@ -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>


Caricamento…
Annulla
Salva