-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathget-locale-strings.js
30 lines (28 loc) · 1.09 KB
/
get-locale-strings.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/* global require, exports:false */
'use strict';
const _ = require('sdk/l10n').get;
exports.getLocaleStrings = function () {
return {
closeTabsAbove: _('close_tabs_above'),
closeTabsBelow: _('close_tabs_below'),
moreTabs: (n) => _('more_tabs', n),
sideLabel: _('side_label'),
sideTooltip: _('side_tooltip'),
sidebarShrink: _('sidebar_shrink'),
sidebarOpen: _('sidebar_open'),
topLabel: _('top_label'),
topTooltip: _('top_tooltip'),
tourTitleIntro: _('tour_title_intro'),
tourTitleCollapse: _('tour_title_collapse'),
tourTitleRestore: _('tour_title_restore'),
dismissLabel: _('dismiss_label'),
dismissLabelReminderTour: _('dismiss_label_reminder_tour'),
tourInstructionsIntro: _('tour_instructions_intro'),
tourInstructionsCollapse: _('tour_instructions_collapse'),
tourInstructionsRestore: _('tour_instructions_restore'),
progressButtonGo: _('progress_button_go'),
progressButtonIntro: _('progress_button_intro'),
progressButtonCollapse: _('progress_button_collapse'),
progressButtonRestore: _('progress_button_restore')
};
};