Skip to content

Commit

Permalink
ui: fix english of messages (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
Riolku authored Oct 16, 2023
1 parent 75e35df commit dd37702
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/SchemaView/SchemaSidebarAddView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
</th>
</tr>
<tr v-else>
<th scope="col">There is no property in this table</th>
<th scope="col">There are no properties in this table</th>
</tr>
</thead>

Expand Down
2 changes: 1 addition & 1 deletion src/components/SchemaView/SchemaSidebarEditView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
</th>
</tr>
<tr v-else>
<th scope="col">There is no property in this table</th>
<th scope="col">There are no properties in this table</th>
</tr>
</thead>
<tbody v-if="tableProperties.length > 0">
Expand Down
2 changes: 1 addition & 1 deletion src/components/SchemaView/SchemaSidebarHoverView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
<th scope="col">Type</th>
</tr>
<tr v-else>
<th scope="col">There is no property in this table</th>
<th scope="col">There are no properties in this table</th>
</tr>
</thead>
<tbody v-if="tableProperties.length > 0">
Expand Down
4 changes: 2 additions & 2 deletions src/components/SchemaView/SchemaSidebarOverview.vue
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
</tr>
<tr v-if="schema.nodeTables.length === 0">
<td colspan="2">
There is no node table in this schema. Click "Add" to add one.
There are no node tables in this schema. Click "Add" to add one.
</td>
</tr>
</tbody>
Expand Down Expand Up @@ -93,7 +93,7 @@
</tr>
<tr v-if="schema.relTables.length === 0">
<td colspan="2">
There is no rel table in this schema. Click "Add" to add one.
There are no rel tables in this schema. Click "Add" to add one.
</td>
</tr>
</tbody>
Expand Down

0 comments on commit dd37702

Please sign in to comment.