diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-01-14 15:16:48 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2014-01-14 15:16:48 +0000 |
commit | 127744a38a4bad16aa1cbf20c3824345a9644c5a (patch) | |
tree | a4aa3acc6d3772daa057dd009a04aafd938fc8e5 | |
parent | 938aaa96f63e6cab2803eab57f67e93f5c352df0 (diff) |
- PluginUpdater: menu items names updated;
- langpacks/english: update;
- langpacks/russian: update;
git-svn-id: http://svn.miranda-ng.org/main/trunk@7646 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-rw-r--r-- | langpacks/english/Plugins/DbEditorPP.txt | 2 | ||||
-rw-r--r-- | langpacks/english/Plugins/PluginUpdater.txt | 4 | ||||
-rw-r--r-- | langpacks/russian/Plugins/DbEditorPP.txt | 2 | ||||
-rw-r--r-- | langpacks/russian/Plugins/PluginUpdater.txt | 8 | ||||
-rw-r--r-- | plugins/PluginUpdater/src/PluginUpdater.cpp | 8 | ||||
-rw-r--r-- | plugins/PluginUpdater/src/Utils.cpp | 2 |
6 files changed, 13 insertions, 13 deletions
diff --git a/langpacks/english/Plugins/DbEditorPP.txt b/langpacks/english/Plugins/DbEditorPP.txt index 2d1549dbd8..d592032e5e 100644 --- a/langpacks/english/Plugins/DbEditorPP.txt +++ b/langpacks/english/Plugins/DbEditorPP.txt @@ -2,7 +2,7 @@ ;============================================================
; File: DbEditorPP.dll
; Plugin: Database editor++
-; Version: 3.2.0.0
+; Version: 3.2.0.1
; Authors: Bio, Jonathan Gordon
;============================================================
[Advanced Database Editor.]
diff --git a/langpacks/english/Plugins/PluginUpdater.txt b/langpacks/english/Plugins/PluginUpdater.txt index bb1d04d365..5609f7b57d 100644 --- a/langpacks/english/Plugins/PluginUpdater.txt +++ b/langpacks/english/Plugins/PluginUpdater.txt @@ -78,8 +78,8 @@ [Test]
[Services]
;file \plugins\PluginUpdater\src\PluginUpdater.cpp
-[Check for plugin updates]
-[Show full plugin list]
+[Check for updates]
+[Available components list]
;file \plugins\PluginUpdater\src\Utils.cpp
['Yes' Button]
['No' Button]
diff --git a/langpacks/russian/Plugins/DbEditorPP.txt b/langpacks/russian/Plugins/DbEditorPP.txt index 6df33e04a6..a7e3d70ef6 100644 --- a/langpacks/russian/Plugins/DbEditorPP.txt +++ b/langpacks/russian/Plugins/DbEditorPP.txt @@ -2,7 +2,7 @@ ;============================================================
; File: DbEditorPP.dll
; Plugin: Database editor++
-; Version: 3.2.0.0
+; Version: 3.2.0.1
; Authors: Bio, Jonathan Gordon
;============================================================
[Advanced Database Editor.]
diff --git a/langpacks/russian/Plugins/PluginUpdater.txt b/langpacks/russian/Plugins/PluginUpdater.txt index f595aff7d1..5de393c6fc 100644 --- a/langpacks/russian/Plugins/PluginUpdater.txt +++ b/langpacks/russian/Plugins/PluginUpdater.txt @@ -141,10 +141,10 @@ Тест
[Services]
Службы
-[Check for plugin updates]
-Проверить обновления плагинов
-[Show full plugin list]
-Список плагинов для установки
+[Check for updates]
+Проверить обновления
+[Available components list]
+Компоненты для установки
['Yes' Button]
Кнопка 'Да'
['No' Button]
diff --git a/plugins/PluginUpdater/src/PluginUpdater.cpp b/plugins/PluginUpdater/src/PluginUpdater.cpp index 8fbf8aa5d9..3e90fb75eb 100644 --- a/plugins/PluginUpdater/src/PluginUpdater.cpp +++ b/plugins/PluginUpdater/src/PluginUpdater.cpp @@ -109,7 +109,7 @@ extern "C" __declspec(dllexport) int Load(void) CLISTMENUITEM mi = { sizeof(mi) };
mi.position = 400010000;
mi.icolibItem = Skin_GetIconHandle("check_update");
- mi.pszName = LPGEN("Check for plugin updates");
+ mi.pszName = LPGEN("Check for updates");
mi.pszService = MODNAME"/CheckUpdates";
Menu_AddMainMenuItem(&mi);
@@ -118,15 +118,15 @@ extern "C" __declspec(dllexport) int Load(void) mi.position++;
mi.icolibItem = Skin_GetIconHandle("plg_list");
- mi.pszName = LPGEN("Show full plugin list");
+ mi.pszName = LPGEN("Available components list");
mi.pszService = MODNAME"/ShowList";
Menu_AddMainMenuItem(&mi);
#endif
// Add hotkey
HOTKEYDESC hkd = { sizeof(hkd) };
- hkd.pszName = "Check for plugin updates";
- hkd.pszDescription = "Check for plugin updates";
+ hkd.pszName = "Check for updates";
+ hkd.pszDescription = "Check for updates";
hkd.pszSection = "Plugin Updater";
hkd.pszService = MODNAME"/CheckUpdates";
hkd.DefHotKey = HOTKEYCODE(HOTKEYF_CONTROL, VK_F10) | HKF_MIRANDA_LOCAL;
diff --git a/plugins/PluginUpdater/src/Utils.cpp b/plugins/PluginUpdater/src/Utils.cpp index 5082d7abe1..d7171e4f71 100644 --- a/plugins/PluginUpdater/src/Utils.cpp +++ b/plugins/PluginUpdater/src/Utils.cpp @@ -39,7 +39,7 @@ struct }
static iconList[] =
{
- { "check_update", LPGEN("Check for plugin updates"), IDI_MENU },
+ { "check_update", LPGEN("Check for updates"), IDI_MENU },
{ "btn_ok", LPGEN("'Yes' Button"), IDI_OK },
{ "btn_cancel", LPGEN("'No' Button"), IDI_CANCEL },
{ "info", LPGEN("Plugin info"), IDI_INFO },
|