mirror of
https://github.com/netbirdio/plugins.git
synced 2026-05-22 18:44:07 -07:00
net/quagga: be consistent about type of English used
This commit is contained in:
@@ -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"
|
||||
|
||||
Reference in New Issue
Block a user