Bug #299483 --> "OPML Files" string in import dialog of "RSS Subscriptions" window is hardcoded and needs

to be a string resource.

Patch by Magnus Melin mkmelin+bugzilla@cc.hut.fi
sr=me
This commit is contained in:
scott%scott-macgregor.org 2005-08-25 19:32:47 +00:00
Родитель 4a244e15aa
Коммит 05c1cd72d6
2 изменённых файлов: 5 добавлений и 1 удалений

Просмотреть файл

@ -155,7 +155,9 @@ function futils_nosepicker(initialPath, typeList, attribs)
picker.appendFilters(FILTER_XUL);
break;
case "$opml":
picker.appendFilter('OPML Files', '*.opml');
var newsBlogBundle = document.getElementById("bundle_newsblog");
picker.appendFilter(
newsBlogBundle.getString("subscribe-OPMLExportOPMLFilesFilterText"), "*.opml");
break;
default:

Просмотреть файл

@ -14,6 +14,8 @@ subscribe-OPMLExportFileName=MyThunderbirdFeeds.opml
#LOCALIZATION NOTE: %S is the name of the OPML file the user tried to import.
subscribe-errorInvalidOPMLFile=Either %S is not a valid OPML file or there was an error importing the file.
subscribe-OPMLExportOPMLFilesFilterText=OPML Files
#LOCALIZATION NOTE: %S is the name of the feed the user wants to unsubscribe from.
subsribe-confirmFeedDeletionTitle=Remove Feed
subsribe-confirmFeedDeletion=Are you sure you want to unsubscribe from the feed: \n %S?