mirror of
https://github.com/opnsense/plugins.git
synced 2026-05-28 04:34:15 -04:00
net/quagga: be consistent about type of English used
This commit is contained in:
parent
09c5ad3728
commit
b97bc0e36a
2 changed files with 3 additions and 3 deletions
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in a new issue