Mercurial > addons > firefox-addons > feed-preview
comparison _locales/en/messages.json @ 10:ff5e5e3eba32
Implement feed subscription for web-based feed readers
Add options page for configuring web-based feed readers which allow for
subscribing to feeds via GET requests.
Track tabs containing feed previews and inject a content script which
retrieves the configured feed readers and keeps them in sync.
author | Guido Berhoerster <guido+feed-preview@berhoerster.name> |
---|---|
date | Fri, 07 Dec 2018 23:00:41 +0100 |
parents | 1c31f4102408 |
children | 688d75e554e0 |
comparison
equal
deleted
inserted
replaced
9:fcd65cf3f634 | 10:ff5e5e3eba32 |
---|---|
4 "description": "Name of the extension." | 4 "description": "Name of the extension." |
5 }, | 5 }, |
6 "extensionDescription": { | 6 "extensionDescription": { |
7 "message": "Indicates available RSS and Atom feeds and renders previews.", | 7 "message": "Indicates available RSS and Atom feeds and renders previews.", |
8 "description": "Description of the extension." | 8 "description": "Description of the extension." |
9 }, | |
10 "feedReaderSelectionLabel": { | |
11 "message": "Subscribe to this feed using", | |
12 "description": "Label for the feed reader menu." | |
13 }, | |
14 "subscribeButtonLabel": { | |
15 "message": "Subscribe Now", | |
16 "description": "Label for the subscibe button." | |
9 }, | 17 }, |
10 "defaultFeedTitle": { | 18 "defaultFeedTitle": { |
11 "message": "Untitled Feed", | 19 "message": "Untitled Feed", |
12 "description": "Default title for feeds." | 20 "description": "Default title for feeds." |
13 }, | 21 }, |
28 "description": "Default media file type." | 36 "description": "Default media file type." |
29 }, | 37 }, |
30 "filesTitle": { | 38 "filesTitle": { |
31 "message": "Media Files:", | 39 "message": "Media Files:", |
32 "description": "Title of the list of media files." | 40 "description": "Title of the list of media files." |
41 }, | |
42 "feedReadersTitle": { | |
43 "message": "Feed Readers", | |
44 "description": "Title of the feed reader options." | |
45 }, | |
46 "feedReaderMoveUpButton": { | |
47 "message": "Move Up", | |
48 "description": "Label of the button for deleting a feed reader up." | |
49 }, | |
50 "feedReaderMoveDownButton": { | |
51 "message": "Move Down", | |
52 "description": "Label of the button for moving a feed reader down." | |
53 }, | |
54 "feedReaderRemoveButton": { | |
55 "message": "Remove", | |
56 "description": "Label of the button for deleting a feed reader." | |
57 }, | |
58 "feedReaderAddButton": { | |
59 "message": "Add", | |
60 "description": "Label of the button for adding a feed reader." | |
61 }, | |
62 "feedReaderTitleLabel": { | |
63 "message": "Title", | |
64 "description": "Label of the text input field for the feed reader title." | |
65 }, | |
66 "feedReaderTitlePlaceholder": { | |
67 "message": "e.g. My Feed Reader", | |
68 "description": "Placeholder displayed in the text input field for the feed reader title." | |
69 }, | |
70 "feedReaderUrlTemplateLabel": { | |
71 "message": "URL Template", | |
72 "description": "Label of the text input field for the feed reader URL template." | |
73 }, | |
74 "feedReaderUrlTemplatePlaceholder": { | |
75 "message": "e.g. https://feedreader.example.org/?subscribe=%s", | |
76 "description": "Placeholder displayed in the text input field for the feed reader URL template." | |
77 }, | |
78 "feedReaderUrlTemplateCaption": { | |
79 "message": "URL for subscribing to feeds with a placeholder %s which will be substituted with the feed URL.", | |
80 "description": "Caption for the the text input field for the feed reader URL template." | |
81 }, | |
82 "invalidURLError": { | |
83 "message": "Please enter a valid URL.", | |
84 "description": "Error message if the subscription URL template is invalid." | |
85 }, | |
86 "invalidProtocolError": { | |
87 "message": "Please enter a URL which uses either the HTTP or HTTPS protocol.", | |
88 "description": "Error message if the protocol of the subscription URL template is neither HTTP nor HTTPS." | |
89 }, | |
90 "missingPlaceholderError": { | |
91 "message": "Please enter a subscription URL which contains a placeholder \"%s\" for the feed URL.", | |
92 "description": "Error message if the placholder is missing from the subscription URL template." | |
33 } | 93 } |
34 } | 94 } |