Skip to content

Commit

Permalink
Updated locales
Browse files Browse the repository at this point in the history
  • Loading branch information
andersevenrud committed Sep 11, 2019
1 parent ceba172 commit 9225d3c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/adapters/ui/iconview.js
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ export class DesktopIconView extends EventEmitter {
label: _('LBL_OPEN_WITH'),
onclick: () => this.iconview.openEntry({entry, forceDialog: true})
}, {
label: entry.shortcut !== false ? _('LBL_REMOVE') : _('LBL_DELETE'),
label: entry.shortcut !== false ? _('LBL_REMOVE_SHORTCUT') : _('LBL_DELETE'),
onclick: () => this.iconview.removeEntry(entry)
}]
});
Expand Down
4 changes: 3 additions & 1 deletion src/locale/en_EN.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,5 +145,7 @@ export const en_EN = {
LBL_BACK: 'Back',
LBL_FORWARD: 'Forward',
LBL_UPLOAD: 'Upload',
LBL_IMAGE: 'Image'
LBL_IMAGE: 'Image',
LBL_CREATE_SHORTCUT: 'Create shortcut',
LBL_REMOVE_SHORTCUT: 'Remove shortcut'
};
4 changes: 3 additions & 1 deletion src/locale/nb_NO.js
Original file line number Diff line number Diff line change
Expand Up @@ -145,5 +145,7 @@ export const nb_NO = {
LBL_BACK: 'Tilbake',
LBL_FORWARD: 'Frem',
LBL_UPLOAD: 'Last opp',
LBL_IMAGE: 'Bilde'
LBL_IMAGE: 'Bilde',
LBL_CREATE_SHORTCUT: 'Lag til snarvei',
LBL_REMOVE_SHORTCUT: 'Fjern snarvei'
};

0 comments on commit 9225d3c

Please sign in to comment.