[Pkg-mozext-commits] [automatic-save-folder] 77/133: Change : - Layout fix (tooltip and dropmenu size). - Enable ASF box if the user choose DownThemAll while ASF->dTa is enabled. - Update Russian locales.
David Prévot
taffit at moszumanska.debian.org
Mon Apr 27 20:33:54 UTC 2015
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch wip
in repository automatic-save-folder.
commit 49586dbf41eb104473040665fa04f715d2694db3
Author: Cyan <Cyan at d0063192-6b2e-11de-89a9-0b20f3e2dceb>
Date: Mon Jul 19 13:00:24 2010 +0000
Change :
- Layout fix (tooltip and dropmenu size).
- Enable ASF box if the user choose DownThemAll while ASF->dTa is enabled.
- Update Russian locales.
git-svn-id: http://automatic-save-folder.googlecode.com/svn/trunk@83 d0063192-6b2e-11de-89a9-0b20f3e2dceb
---
content/asf_download.js | 22 ++++++++++------
content/common.dtd | 9 ++++++-
content/help/about.xhtml | 1 +
content/options.xul | 36 +++++++-------------------
locale/en-US/about.dtd | 7 +----
locale/en-US/asf.dtd | 2 +-
locale/fr/about.dtd | 7 +----
locale/fr/asf.dtd | 2 +-
locale/it/about.dtd | 7 +----
locale/it/asf.dtd | 2 +-
locale/ru/about.dtd | 29 +++++++++------------
locale/ru/asf.dtd | 66 ++++++++++++++++++++++++------------------------
12 files changed, 83 insertions(+), 107 deletions(-)
diff --git a/content/asf_download.js b/content/asf_download.js
index f1d26af..3598708 100644
--- a/content/asf_download.js
+++ b/content/asf_download.js
@@ -257,6 +257,13 @@ Copyright (C) 2007-2010 Éric Cassar (Cyan).
// show or hide the asf option on saving window
this.show_dloptions();
this.check_uCTOption(true);
+
+ var radioSavemode = document.getElementById("mode");
+ radioSavemode.addEventListener(
+ "command", // After a save mode change (save, open, etc.)
+ function(){ automatic_save_folder.check_uCTOption(); }, // show/hide and enable/disable ASF.
+ false
+ );
}
return false;
@@ -760,6 +767,11 @@ Copyright (C) 2007-2010 Éric Cassar (Cyan).
var asf_viewdloption = this.prefManager.getBoolPref("extensions.asf.viewdloption");
var asf_viewdloptionType = this.prefManager.getIntPref("extensions.asf.viewdloptionType");
var asf_viewpathselect = this.prefManager.getBoolPref("extensions.asf.viewpathselect");
+ var dTa = false;
+ if (this.DownThemAll_isEnabled) // enable ASF box if dTa is selected and sending folder to dTa is enabled.
+ {
+ dTa = this.prefManager.getBoolPref("extensions.asf.dta_ASFtoDTA_isActive") && (document.getElementById("downthemall").selected || document.getElementById("turbodta").selected);
+ }
// Workaround for bug 439323 (if call when not needed, dosen't work anymore)
// https://bugzilla.mozilla.org/show_bug.cgi?id=439323
@@ -767,7 +779,7 @@ Copyright (C) 2007-2010 Éric Cassar (Cyan).
if (asf_viewdloption)
{
- if(save) // if set to "save the file"
+ if(save || dTa) // if set to "save the file"
{
asf_radio_savepath.disabled = false;
asf_radiogroup_pathselect.disabled = false;
@@ -1219,10 +1231,4 @@ Copyright (C) 2007-2010 Éric Cassar (Cyan).
"load", // After OnLoad from overlay_unknownContentType.xul file
function(){ automatic_save_folder.main(); }, // Run main from automatic_save_folder to check the filters
false
- );
-
- addEventListener(
- "command", // After a click in the unknownContentType.xul, check if the user changed the saving option (save, open, etc.)
- function(){ automatic_save_folder.check_uCTOption(); }, // Run main from automatic_save_folder to check the filters
- false
- );
+ );
\ No newline at end of file
diff --git a/content/common.dtd b/content/common.dtd
index ddff35e..5fc967f 100644
--- a/content/common.dtd
+++ b/content/common.dtd
@@ -1,2 +1,9 @@
<!-- Current version -->
-<!ENTITY asf.version "1.0.2b Rev82">
\ No newline at end of file
+<!ENTITY asf.version "1.0.2b Rev83">
+
+<!ENTITY about.translators "
+- en-US : Cyan, Narayan<br />
+- fr : Cyan, Goofy, Haynee<br />
+- it : Scognito.<br />
+- ru : MrCOLOMBO<br />
+">
\ No newline at end of file
diff --git a/content/help/about.xhtml b/content/help/about.xhtml
index 7646f6e..0576c3f 100644
--- a/content/help/about.xhtml
+++ b/content/help/about.xhtml
@@ -110,6 +110,7 @@
<br />
<strong>&about.translation.title;</strong><br />
&about.translation.content;
+&about.translators;
</p>
<br />
</body>
diff --git a/content/options.xul b/content/options.xul
index 59b206b..b329c21 100644
--- a/content/options.xul
+++ b/content/options.xul
@@ -58,31 +58,13 @@
<menuitem label="&asf.delete.popup;" oncommand="automatic_save_folder.asf_delete();"/>
<menuitem label="&asf.bottom.popup;" oncommand="automatic_save_folder.move('bottom');"/>
</menupopup>
- <tooltip id="tooltip_folderList" orient="vertical" style="background-color: #33DD00;" noautohide="true">
- <description value="&asf.folderList.tooltip;"/>
- </tooltip>
- <tooltip id="tooltip_viewdloption" style="background-color: #33DD00;" noautohide="true">
- <description value="&asf.viewdloption.tooltip;"/>
- </tooltip>
- <tooltip id="tooltip_viewpathselect" style="background-color: #33DD00;" noautohide="true">
- <description value="&asf.viewpathselect.tooltip;"/>
- </tooltip>
- <tooltip id="tooltip_userightclick" orient="vertical" style="background-color: #33DD00;" noautohide="true">
- <description value="&asf.userightclick.tooltip;"/>
- </tooltip>
- <tooltip id="tooltip_rightclicktimeout" orient="vertical" style="background-color: #33DD00;" noautohide="true">
- <description value="&asf.rightclicktimeout.tooltip1;"/>
- <description value="&asf.rightclicktimeout.tooltip2;"/>
- <description value="&asf.rightclicktimeout.tooltip3;"/>
- <description value="&asf.rightclicktimeout.tooltip4;"/>
- </tooltip>
- <tooltip id="tooltip_variablemode" orient="vertical" style="background-color: #33DD00;" noautohide="true">
- <description value="&asf.variablemode.tooltip1;"/>
- <description value="&asf.variablemode.tooltip2;"/>
- </tooltip>
- <tooltip id="tooltip_dialogacceptFiltered" orient="vertical" style="background-color: #33DD00;" noautohide="true">
- <description value="&asf.dialogacceptFiltered.tooltip;"/>
- </tooltip>
+ <tooltip id="tooltip_folderList" label="&asf.folderList.tooltip;" noautohide="true" />
+ <tooltip id="tooltip_viewdloption" label="&asf.viewdloption.tooltip;" noautohide="true" />
+ <tooltip id="tooltip_viewpathselect" label="&asf.viewpathselect.tooltip;" noautohide="true" />
+ <tooltip id="tooltip_userightclick" label="&asf.userightclick.tooltip;" noautohide="true" />
+ <tooltip id="tooltip_rightclicktimeout" label="&asf.rightclicktimeout.tooltip1;
&asf.rightclicktimeout.tooltip2;
&asf.rightclicktimeout.tooltip3;
&asf.rightclicktimeout.tooltip4;" noautohide="true" />
+ <tooltip id="tooltip_variablemode" label="&asf.variablemode.tooltip1;
&asf.variablemode.tooltip2;" noautohide="true" />
+ <tooltip id="tooltip_dialogacceptFiltered" label="&asf.dialogacceptFiltered.tooltip;" noautohide="true" />
<vbox>
<tabbox>
<tabs>
@@ -183,7 +165,7 @@
<checkbox id="asf-dialogacceptFiltered" preference="asf_dialogacceptFiltered" label="&asf.dialogacceptFiltered.bool;" tooltip="tooltip_dialogacceptFiltered" style="margin-left:25px;"/>
<hbox flex="1">
<checkbox id="asf-dialogForceRadio_Start" preference="asf_dialogForceRadio" label="&asf.dialogForceRadio_Start.bool;" style="margin-left:25px;"/>
- <menulist id="asf-dialogForceRadioTo" preference="asf_dialogForceRadioTo" >
+ <menulist id="asf-dialogForceRadioTo" preference="asf_dialogForceRadioTo">
<menupopup>
<menuitem value="open" label="&asf.dialogForceRadioTo.label1;"></menuitem>
<menuitem value="downthemall" label="&asf.dialogForceRadioTo.label2;" id="asf-dialogForceRadioToDownthemall" style="display:none;"></menuitem>
@@ -191,7 +173,7 @@
<menuitem value="save" label="&asf.dialogForceRadioTo.label4;"></menuitem>
</menupopup>
</menulist>
- <label id="asf-dialogForceRadio_End" flex="1">&asf.dialogForceRadio_End.bool;</label>
+ <label id="asf-dialogForceRadio_End" flex="1" style="max-height:2em;">&asf.dialogForceRadio_End.bool;</label>
</hbox>
<hbox>
<checkbox id="asf-viewdloption" preference="asf_viewdloption" label="&asf.viewdloption.bool;" tooltip="tooltip_viewdloption" oncommand="automatic_save_folder.toggle_options();"/>
diff --git a/locale/en-US/about.dtd b/locale/en-US/about.dtd
index abe3adf..8faa42f 100644
--- a/locale/en-US/about.dtd
+++ b/locale/en-US/about.dtd
@@ -166,10 +166,5 @@ And contributors:<br />
<!ENTITY about.bugreport.content "- Photonic, Martin">
<!ENTITY about.translation.title "Translations">
-<!ENTITY about.translation.content "- Independant translators and Babelzilla translation team: <br />
-- en-US : Cyan, Narayan<br />
-- fr : Cyan, Goofy, Haynee<br />
-- it : Scognito.<br />
-- ru : MrCOLOMBO<br />
-">
+<!ENTITY about.translation.content "- Independant translators and Babelzilla translation team: <br />">
diff --git a/locale/en-US/asf.dtd b/locale/en-US/asf.dtd
index c3d9b0e..6a29517 100644
--- a/locale/en-US/asf.dtd
+++ b/locale/en-US/asf.dtd
@@ -97,7 +97,7 @@
<!ENTITY asf.options.groupbox6.label "DownThemAll!">
<!ENTITY asf.options.dtaDetected.label "Automatic Save Folder has detected that you are using DownThemAll! &NL;add-on. Automatic Save Folder can send the filtered destination path to DownThemAll when using the "What should firefox do with this file" saving window. This option is disabled when using the Private Browsing mode.">
<!ENTITY asf.dta_ASFtoDTA_isActive.bool "Enable Automatic Save Folder to send the filtered path to DownThemAll.">
-<!ENTITY asf.dta_chooseSendingMethod.label "Choose the sending method for DTA OneClic!:">
+<!ENTITY asf.dta_chooseSendingMethod.label "Choose the sending method for DTA OneClick!:">
<!ENTITY asf.dta_methodReplace.label "Replace first folder in list">
<!ENTITY asf.dta_methodAdd.label "Add to list">
diff --git a/locale/fr/about.dtd b/locale/fr/about.dtd
index 72275ae..8b7b851 100644
--- a/locale/fr/about.dtd
+++ b/locale/fr/about.dtd
@@ -166,10 +166,5 @@ Ainsi que les contributeurs :<br />
<!ENTITY about.bugreport.content "- Photonic, Martin">
<!ENTITY about.translation.title "Traductions">
-<!ENTITY about.translation.content "- Traducteurs indépendants et l'équipe de traduction de Babelzilla : <br />
-- en-US : Cyan, Narayan<br />
-- fr : Cyan, Goofy, Haynee<br />
-- it : Scognito.<br />
-- ru : MrCOLOMBO<br />
-">
+<!ENTITY about.translation.content "- Traducteurs indépendants et l'équipe de traduction de Babelzilla : <br />">
diff --git a/locale/fr/asf.dtd b/locale/fr/asf.dtd
index e85e67b..37615d9 100644
--- a/locale/fr/asf.dtd
+++ b/locale/fr/asf.dtd
@@ -97,7 +97,7 @@
<!ENTITY asf.options.groupbox6.label "DownThemAll!">
<!ENTITY asf.options.dtaDetected.label "Automatic Save Folder a détecté que vous utilisez l'extension DownThemAll!. &NL;Automatic Save Folder peut envoyer le dossier de destination filtré à DownThemAll lorsque vous utilisez la fenêtre de sauvegarde "Que doit faire Firefox avec ce fichier ?". Cette option est désactivée lorsque vous utilisez le mode Navigation Privée.">
<!ENTITY asf.dta_ASFtoDTA_isActive.bool "Activer l'envoi du dossier filtré par Automatic Save Folder à DownThemAll!.">
-<!ENTITY asf.dta_chooseSendingMethod.label "Choix de la méthode d'envoi pour DTA OneClic!:">
+<!ENTITY asf.dta_chooseSendingMethod.label "Choix de la méthode d'envoi pour DTA OneClick!:">
<!ENTITY asf.dta_methodReplace.label "Remplacer le premier dossier de la liste">
<!ENTITY asf.dta_methodAdd.label "Ajouter à la liste">
diff --git a/locale/it/about.dtd b/locale/it/about.dtd
index 8869040..192d8c0 100644
--- a/locale/it/about.dtd
+++ b/locale/it/about.dtd
@@ -166,10 +166,5 @@ And contributors:<br />
<!ENTITY about.bugreport.content "- Photonic, Martin">
<!ENTITY about.translation.title "Translations">
-<!ENTITY about.translation.content "- Independant translators and Babelzilla translation team: <br />
-- en-US : Cyan, Narayan<br />
-- fr : Cyan, Goofy, Haynee<br />
-- it : Scognito.<br />
-- ru : MrCOLOMBO<br />
-">
+<!ENTITY about.translation.content "- Independant translators and Babelzilla translation team: <br />">
diff --git a/locale/it/asf.dtd b/locale/it/asf.dtd
index 3a5dab8..2886503 100644
--- a/locale/it/asf.dtd
+++ b/locale/it/asf.dtd
@@ -97,7 +97,7 @@
<!ENTITY asf.options.groupbox6.label "DownThemAll!">
<!ENTITY asf.options.dtaDetected.label "Automatic Save Folder has detected that you are using DownThemAll! add-on. &NL;Automatic Save Folder can send the filtered destination path to DownThemAll when using the "What should firefox do with this file" saving window. This option is disabled when using the Private Browsing mode.">
<!ENTITY asf.dta_ASFtoDTA_isActive.bool "Enable Automatic Save Folder to send the filtered path to DownThemAll.">
-<!ENTITY asf.dta_chooseSendingMethod.label "Choose the sending method for DTA OneClic!:">
+<!ENTITY asf.dta_chooseSendingMethod.label "Choose the sending method for DTA OneClick!:">
<!ENTITY asf.dta_methodReplace.label "Replace first folder in list">
<!ENTITY asf.dta_methodAdd.label "Add to list">
diff --git a/locale/ru/about.dtd b/locale/ru/about.dtd
index e69218c..a7415f1 100644
--- a/locale/ru/about.dtd
+++ b/locale/ru/about.dtd
@@ -23,17 +23,17 @@
<!ENTITY about.version.title "Версия">
<!-- Keep the newline intact as it uses the < pre > tag, keep the 2 beginning spaces to create indentation -->
-<!ENTITY about.version.102 "+ Added an option to force the action choice when using the automatic download option.
-+ If DownThemAll add-on is installed, a new option's tab is available to send ASF target path to DTA.
-+ Added an option to select if the filters are case sensitive or insensitive.
-+ New options related to Graphical User Interface.
-+ Added a Drag&Drop Copy method (ie. drag+Ctrl on Windows).
-! Fixed a bug where checking the Regexp option when a filter ended by a slash didn't add a second slash.
-! Fixed a bug where no data were returned if a download was initiated from the URL bar or from an external software which resulted in no filters in the filter's list if the preferences window was opened from the saving dialog "+ Add or edit a filter". (Thanks to MrCOLOMBO)
-! ASF now uses the full URL instead of the domain when falling back to current website URL if no filter is found, when using single click (Right-click already used full URL).">
-
-<!ENTITY about.version.101 "! Fixed a spelling error preventing ASF to work when no filter matched.
-! Added a missing Russian string on the filter's tab.">
+<!ENTITY about.version.102 "+ Добавлена опция выбора действия для автоматического сохранения.
++ Если установлено расширение DownThemAll, доступны новые опции для настройки взаимодействия с ним.
++ Настройки обработки регистра в фильтрах.
++ Новые опции для графического интерфейса.
++ Добавлен метод копирования через Drag&Drop (Например: Удерживая Ctrl при перетаскивании в Windows).
+! Исправлена обработка регулярных выражений когда фильтр оканчивался на косую черту (слеш).
+! Исправлена ошибка при открытии окна настроек фильтров из окна сохранения ("+ Добавить или изменить фильтр"), при обработке пути который не был представлен в списке фильтров. (Благодарность MrCOLOMBO)
+! ASF использует полный путь вместо домена если не найден подходящий фильтр, для левой кнопки мыши (Правая кнопка уже использует полный путь).">
+
+<!ENTITY about.version.101 "! Исправлена проблема с переводом, которая не позволяла работать ASF когда не найден подходящий фильтр.
+! Добавлен пропущенный русский перевод для закладки Фильтры.">
<!ENTITY about.version.100 "+ Add filtering on Right-Click menus "Save link as...", "Save image as..." and "Save as...(Ctrl+S)"
(Need at least Firefox 2.0 and is not compatible with Download Sort add-on. If you have both activated, Download Sort prevails)
@@ -166,10 +166,5 @@ I removed the "Accept" button and replaced it with a scripted one "S
<!ENTITY about.bugreport.content "- Photonic, Martin">
<!ENTITY about.translation.title "Переводы">
-<!ENTITY about.translation.content "- Независимые переводчики и команда переводчиков Babelzilla: <br />
-- en-US : Cyan, Narayan<br />
-- fr : Cyan, Goofy, Haynee<br />
-- it : Scognito.<br />
-- ru : MrCOLOMBO<br />
-">
+<!ENTITY about.translation.content "- Независимые переводчики и команда переводчиков Babelzilla: <br />">
diff --git a/locale/ru/asf.dtd b/locale/ru/asf.dtd
index 42e3068..0ef1d91 100644
--- a/locale/ru/asf.dtd
+++ b/locale/ru/asf.dtd
@@ -1,7 +1,7 @@
<!-- ASF Settings -->
<!-- Change the preferences window size to fit your localization. Default values : resize=false width=617 height=423, in pixels-->
-<!ENTITY asf.preferences_window.resize "false">
-<!ENTITY asf.preferences_window.width "617">
+<!ENTITY asf.preferences_window.resize "true">
+<!ENTITY asf.preferences_window.width "630">
<!ENTITY asf.preferences_window.height "423">
<!-- new line, U+00A0 ISOnum -->
@@ -19,7 +19,7 @@
<!ENTITY asf.tree.column.filename "Имя файла">
<!ENTITY asf.tree.column.localfolder "Папка для сохранения">
<!ENTITY asf.tree.column.enabled "Архив">
-<!-- this is 1 space (not empty string), this is the text you want to see on the buttons next to the arrows on the filter's tab, you can write 'up' if you want -->
+<!-- this is 1 space (not empty string), this is the text you want to see on the buttons next to the arrows on the filter"s tab, you can write "up" if you want -->
<!ENTITY asf.options.move.up " ">
<!ENTITY asf.options.move.down " ">
<!ENTITY asf.options.edit "Изменить">
@@ -41,27 +41,27 @@
<!-- Options tab -->
<!ENTITY asf.options.label "Опции">
-<!ENTITY asf.options.tab1.label "Page 1">
-<!ENTITY asf.options.tab2.label "Page 2">
-<!ENTITY asf.options.tabdta.label "DownThemAll">
+<!ENTITY asf.options.tab1.label "Страница 1">
+<!ENTITY asf.options.tab2.label "Страница 2">
+<!ENTITY asf.options.tabdta.label "Расширение "DownThemAll"">
-<!ENTITY asf.options.groupbox1.label "File Explorer">
+<!ENTITY asf.options.groupbox1.label "Проводник">
<!ENTITY asf.useDownloadDir.bool "Не предлагать выбор папки и автоматически сохранить в:">
<!ENTITY asf.desktop.label "Рабочий стол">
<!ENTITY asf.systemdownload.label "Загрузки">
<!ENTITY asf.filteredfolder.label "Использовать фильтры">
<!ENTITY asf.folderList.tooltip "Если папка "Загрузки" не существует, будет предложено выбрать папку.">
-<!ENTITY asf.options.groupbox2.label "Save dialog">
+<!ENTITY asf.options.groupbox2.label "Диалог сохранения">
<!ENTITY asf.dialogaccept.bool "Автоматически использовать настройку "Как FireFox следует обработать это файл".">
<!ENTITY asf.dialogacceptFiltered.bool "Только если найден фильтр">
<!ENTITY asf.dialogacceptFiltered.tooltip "Не будет автоматически использовать настройку "Как FireFox следует обработать это файл" если не найдено подходящего фильтра.">
-<!ENTITY asf.dialogForceRadio_Start.bool "Force the radio choice to">
-<!ENTITY asf.dialogForceRadioTo.label1 "Open with">
-<!ENTITY asf.dialogForceRadioTo.label2 "DownThemAll!">
-<!ENTITY asf.dialogForceRadioTo.label3 "dTa OneClick!">
-<!ENTITY asf.dialogForceRadioTo.label4 "Save File">
-<!ENTITY asf.dialogForceRadio_End.bool "before automatically accepting the save dialog.">
+<!ENTITY asf.dialogForceRadio_Start.bool "Использовать следующий метод:">
+<!ENTITY asf.dialogForceRadioTo.label1 "Открыть с помощью">
+<!ENTITY asf.dialogForceRadioTo.label2 "Расширение "DownThemAll!"">
+<!ENTITY asf.dialogForceRadioTo.label3 "Расширение "dTa OneClick!"">
+<!ENTITY asf.dialogForceRadioTo.label4 "Сохранить файл">
+<!ENTITY asf.dialogForceRadio_End.bool "до автоматического действия в диалоге сохранения.">
<!ENTITY asf.viewdloption.bool "Показывать опции при загрузке">
<!ENTITY asf.viewdloption.tooltip "Показывать две последних использованных папки и кнопку для добавления и редактирования фильтров">
<!ENTITY asf.viewdloptionType0.label "Всегда показывать">
@@ -71,12 +71,12 @@
<!ENTITY asf.viewpathselect.bool "Показывать список папок">
<!ENTITY asf.viewpathselect.tooltip "Активировать меню перетаскивания мышкой для всех папок фильтров.">
-<!ENTITY asf.options.groupbox3.label "Filtering options">
-<!ENTITY asf.lastdir.bool "Изменять папку для команды 'сохранить как...' когда есть подходящий фильтр">
+<!ENTITY asf.options.groupbox3.label "Настройки фильтров">
+<!ENTITY asf.lastdir.bool "Изменять папку для команды "сохранить как..." когда есть подходящий фильтр">
<!ENTITY asf.usecurrenturl.bool "Использовать пусть из строки адреса если не найден фильтр для домена загружаемого файла.">
-<!ENTITY asf.regexp_caseinsensitive.bool "Filters are case insensitive.">
+<!ENTITY asf.regexp_caseinsensitive.bool "Учитывать регистр при обработке фильтров.">
-<!ENTITY asf.options.groupbox4.label "Right-click">
+<!ENTITY asf.options.groupbox4.label "Правая кнопка мыши">
<!ENTITY asf.userightclick.bool "Использовать фильтры в меню">
<!ENTITY asf.userightclick.tooltip "Использовать фильтры для меню "Сохранить ссылку как...", "Сохранить картинку как..." и "Сохранить как... (Ctrl+S)"">
<!ENTITY asf.rightclicktimeout.bool "Убрать задержку по времени и активировать фильтры для меню правой кнопки мыши "Сохранить ссылку как..."">
@@ -85,21 +85,21 @@
<!ENTITY asf.rightclicktimeout.tooltip3 "Использовать только для скриптов с перенаправлением загрузок.">
<!ENTITY asf.rightclicktimeout.tooltip4 "На заметку: Опция не имеет влияния на меню "Сохранить картинку как..." и "Сохранить как... (Ctrl+S)".">
<!ENTITY asf.rightclick.ff2.label "Меню Automatic Save Folder по правой кнопке мыши не доступно для Firefox 2. Если вы хотите иметь возможность использовать фильтры для меню правой кнопки мыши "Сохранить ссылку как...", вы должны обновить Firefox до версии 3.0 (рекомендуемая версия 3.5 или выше).">
-<!ENTITY asf.rightclick.DSort.label "Обнаружено дополнение 'Download sort'. &NL;Меню Automatic Save Folder по правой кнопке мыши не будет доступно пока вы не отключите 'Download Sort' в списке дополнений.">
-
-<!ENTITY asf.options.groupbox5.label "Graphical inerface">
-<!ENTITY asf.pathlist_defaultforceontop.bool "On drop-down menus, shows the default save path first.">
-<!ENTITY asf.pathlist_alphasort.bool "Sort save paths list alphabetically.">
-<!ENTITY asf.rowmatchinghighlight.label "Highlight color when selecting a matching filter:">
-<!ENTITY asf.rowmatchinghighlight.color "ASF color">
-<!ENTITY asf.rowmatchinghighlight.system "System color">
-
-<!ENTITY asf.options.groupbox6.label "DownThemAll!">
-<!ENTITY asf.options.dtaDetected.label "Automatic Save Folder has detected that you are using DownThemAll! add-on. &NL;Automatic Save Folder can send the filtered destination path to DownThemAll when using the "What should firefox do with this file" saving window. This option is disabled when using the Private Browsing mode.">
-<!ENTITY asf.dta_ASFtoDTA_isActive.bool "Enable Automatic Save Folder to send the filtered path to DownThemAll.">
-<!ENTITY asf.dta_chooseSendingMethod.label "Choose the sending method for DTA OneClic!:">
-<!ENTITY asf.dta_methodReplace.label "Replace first folder in list">
-<!ENTITY asf.dta_methodAdd.label "Add to list">
+<!ENTITY asf.rightclick.DSort.label "Обнаружено дополнение "Download sort". &NL;Меню Automatic Save Folder по правой кнопке мыши не будет доступно пока вы не отключите "Download Sort" в списке дополнений.">
+
+<!ENTITY asf.options.groupbox5.label "Графический интерфейс">
+<!ENTITY asf.pathlist_defaultforceontop.bool "Первым показывать путь для сохранения по умолчанию.">
+<!ENTITY asf.pathlist_alphasort.bool "Алфавитная сортировка списков.">
+<!ENTITY asf.rowmatchinghighlight.label "Цвет выделения при совпадении с фильтром:">
+<!ENTITY asf.rowmatchinghighlight.color "Собственный цвет">
+<!ENTITY asf.rowmatchinghighlight.system "Системный цвет">
+
+<!ENTITY asf.options.groupbox6.label "Расширение "DownThemAll!"">
+<!ENTITY asf.options.dtaDetected.label "Automatic Save Folder определил, что вы используете расширение "DownThemAll!". &NL;Automatic Save Folder может передавать пути, основанные на фильтрах, в "DownThemAll" при использовнии окна "Как FireFox следует обработать это файл". Эта опция недоступна в режиме приватного просмотра.">
+<!ENTITY asf.dta_ASFtoDTA_isActive.bool "Включить передачу путей из расширения "Automatic Save Folder" в расширение "DownThemAll".">
+<!ENTITY asf.dta_chooseSendingMethod.label "Выбрать действие для "DTA OneClick!":">
+<!ENTITY asf.dta_methodReplace.label "Заменить первый путь в списке">
+<!ENTITY asf.dta_methodAdd.label "Добавить в список">
<!-- Dynamics tab-->
<!ENTITY asf.dynamics.label "Динамические папки">
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-mozext/automatic-save-folder.git
More information about the Pkg-mozext-commits
mailing list