Skip to content

Commit

Permalink
fix button text
Browse files Browse the repository at this point in the history
  • Loading branch information
ianopolous committed Jul 8, 2024
1 parent 174c4f8 commit 386063d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/drive/DriveShare.vue
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@
<td>{{ item.userPassword }}</td>
<td>{{ item.maxRetrievals.ref != null ? item.maxRetrievals.ref.toString() : "-" }}</td>
<td>{{ item.expiry.ref != null ? formatDateTime(item.expiry.ref) : "-" }}</td>
<td> <button class="btn btn-success" @click="editLink(item)">Edit</button>
<td> <button class="btn btn-success" @click="editLink(item)">{{ translate("DRIVE.LINK.VIEWEDIT") }}</button>
</td>
<td> <button class="btn btn-success" @click="deleteLink(item)">Delete</button>
</td>
Expand Down
3 changes: 2 additions & 1 deletion src/i18n/en-GB.js
Original file line number Diff line number Diff line change
Expand Up @@ -330,7 +330,8 @@ module.exports = {
"DRIVE.LINK.COPY":"Copy to clipboard",
"DRIVE.LINK.EMAIL":"Share via email",
"DRIVE.LINK.OK":"OK",
"DRIVE.LINK.UPDATE":"View/Update",
"DRIVE.LINK.UPDATE":"Update",
"DRIVE.LINK.VIEWEDIT":"View/Edit",
"DRIVE.LINK.CREATE":"Create",
"DRIVE.LINK.WRITABLE":"Make link writable (Beware: the link holder could fill your space)",
"DRIVE.LINK.EXPIRE.ON":"Expire on",
Expand Down

0 comments on commit 386063d

Please sign in to comment.