net/quagga: be consistent about type of English used

This commit is contained in:
Franco Fichtner 2017-07-31 07:00:23 +02:00
parent 09c5ad3728
commit b97bc0e36a
2 changed files with 3 additions and 3 deletions

View file

@ -123,8 +123,8 @@ POSSIBILITY OF SUCH DAMAGE.
<td><%= area['interfaces']['active'] %></td>
</tr>
<tr>
<td>{{ lang._('Fully Adjacent Neighbour Count') }}</td>
<td><%= area['fully_adjacent_neighbour_count'] %></td>
<td>{{ lang._('Fully Adjacent Neighbor Count') }}</td>
<td><%= area['fully_adjacent_neighbor_count'] %></td>
</tr>
<tr>
<td>{{ lang._('SPF Execution Count') }}</td>

View file

@ -369,7 +369,7 @@ class OSPF
current_area[:lsa] ||= {}
current_area[:lsa][$1] = {count: $2.to_i, checksum: $3}
when /Number of fully adjacent neighbors in this area: (\d+)/
current_area[:fully_adjacent_neighbour_count] = $1.to_i
current_area[:fully_adjacent_neighbor_count] = $1.to_i
when /SPF algorithm executed (\d) times/
current_area[:spf_exec_count] = $1.to_i
when "Area has no authentication"