Skip to content

Commit 9225d3c

Browse files
committed
Updated locales
1 parent ceba172 commit 9225d3c

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

src/adapters/ui/iconview.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ export class DesktopIconView extends EventEmitter {
312312
label: _('LBL_OPEN_WITH'),
313313
onclick: () => this.iconview.openEntry({entry, forceDialog: true})
314314
}, {
315-
label: entry.shortcut !== false ? _('LBL_REMOVE') : _('LBL_DELETE'),
315+
label: entry.shortcut !== false ? _('LBL_REMOVE_SHORTCUT') : _('LBL_DELETE'),
316316
onclick: () => this.iconview.removeEntry(entry)
317317
}]
318318
});

src/locale/en_EN.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -145,5 +145,7 @@ export const en_EN = {
145145
LBL_BACK: 'Back',
146146
LBL_FORWARD: 'Forward',
147147
LBL_UPLOAD: 'Upload',
148-
LBL_IMAGE: 'Image'
148+
LBL_IMAGE: 'Image',
149+
LBL_CREATE_SHORTCUT: 'Create shortcut',
150+
LBL_REMOVE_SHORTCUT: 'Remove shortcut'
149151
};

src/locale/nb_NO.js

+3-1
Original file line numberDiff line numberDiff line change
@@ -145,5 +145,7 @@ export const nb_NO = {
145145
LBL_BACK: 'Tilbake',
146146
LBL_FORWARD: 'Frem',
147147
LBL_UPLOAD: 'Last opp',
148-
LBL_IMAGE: 'Bilde'
148+
LBL_IMAGE: 'Bilde',
149+
LBL_CREATE_SHORTCUT: 'Lag til snarvei',
150+
LBL_REMOVE_SHORTCUT: 'Fjern snarvei'
149151
};

0 commit comments

Comments
 (0)