@@ -72,7 +72,7 @@
class="role-tertiary"
@click="closeOutputWindow"
>
- Close Output to Continue
+ {{ t('images.manager.close') }}
@@ -131,25 +131,26 @@ export default {
data() {
return {
currentCommand: null,
- headers: [
+ headers:
+ [
{
name: 'imageName',
- label: 'Image',
+ label: this.t('images.manager.table.header.imageName'),
sort: ['imageName', 'tag', 'imageID'],
},
{
name: 'tag',
- label: 'Tag',
+ label: this.t('images.manager.table.header.tag'),
sort: ['tag', 'imageName', 'imageID'],
},
{
name: 'imageID',
- label: 'Image ID',
+ label: this.t('images.manager.table.header.imageId'),
sort: ['imageID', 'imageName', 'tag'],
},
{
name: 'size',
- label: 'Size',
+ label: this.t('images.manager.table.header.size'),
sort: ['size', 'imageName', 'tag'],
},
],
@@ -179,19 +180,19 @@ export default {
// selection state.
image.availableActions = [
{
- label: 'Push',
+ label: this.t('images.manager.table.action.push'),
action: 'doPush',
enabled: this.isPushable(image),
icon: 'icon icon-upload',
},
{
- label: 'Delete',
+ label: this.t('images.manager.table.action.delete'),
action: 'deleteImage',
enabled: this.isDeletable(image),
icon: 'icon icon-delete',
},
{
- label: 'Scan...',
+ label: this.t('images.manager.table.action.scan'),
action: 'scanImage',
enabled: true,
icon: 'icon icon-info',
@@ -245,20 +246,20 @@ export default {
if (this.isPushable(row)) {
items.push({
- label: 'Push',
+ label: this.t('images.table.action.push'),
action: this.doPush,
value: row,
});
}
if (this.isDeletable(row)) {
items.push({
- label: `Delete`,
+ label: this.t('images.table.action.delete'),
action: this.deleteImage,
value: row,
});
}
items.push({
- label: `Scan...`,
+ label: this.t('images.table.action.scan'),
action: this.scanImage,
value: row,
});