diff options
-rw-r--r-- | langpacks/english/Plugins/Import.txt | 5 | ||||
-rw-r--r-- | langpacks/russian/Plugins/Import.txt | 10 | ||||
-rw-r--r-- | plugins/Import/res/resource.rc | 2 | ||||
-rw-r--r-- | plugins/Import/src/import.cpp | 2 |
4 files changed, 17 insertions, 2 deletions
diff --git a/langpacks/english/Plugins/Import.txt b/langpacks/english/Plugins/Import.txt index 3b1b2ca9f0..2d1bcc9e92 100644 --- a/langpacks/english/Plugins/Import.txt +++ b/langpacks/english/Plugins/Import.txt @@ -41,9 +41,13 @@ [URLs]
[File Transfers]
[Other]
+[Choose appropriate accounts for import]
;file \plugins\Import\src\import.cpp
[Ignored event from/to self]
[Added contact %u (found in history)]
+[<New account>]
+[Old account]
+[New account]
[Failed to add %S contact %s]
[Added %S contact %s, '%s']
[Added %S contact %s]
@@ -62,6 +66,7 @@ [There's no database driver to open the input file, exiting.]
[Error loading source file, exiting.]
[Number of contacts in database: %d]
+[Error mapping accounts, exiting.]
[Importing groups.]
[Group import failed.]
[Importing contacts.]
diff --git a/langpacks/russian/Plugins/Import.txt b/langpacks/russian/Plugins/Import.txt index ef667b6bef..abd8effeff 100644 --- a/langpacks/russian/Plugins/Import.txt +++ b/langpacks/russian/Plugins/Import.txt @@ -75,10 +75,18 @@ Miranda нашла следующие профили. Выберите проф Передача файлов
[Other]
Другое
+[Choose appropriate accounts for import]
+Поиск соответствующих учетных записей
[Ignored event from/to self]
Пропускаю событие от самого себя
[Added contact %u (found in history)]
Добавлен контакт %u (найдено в истории)
+[<New account>]
+<Новая учётная запись>
+[Old account]
+Старая учётная запись
+[New account]
+Новая учётная запись
[Failed to add %S contact %s]
Не удалось добавить %S контакт %s
[Added %S contact %s, '%s']
@@ -115,6 +123,8 @@ Miranda нашла следующие профили. Выберите проф Ошибка загрузки исходного файла, выход.
[Number of contacts in database: %d]
Количество контактов в базе: %d
+[Error mapping accounts, exiting.]
+Не найдено соответствия учётных записей.
[Importing groups.]
Импорт групп.
[Group import failed.]
diff --git a/plugins/Import/res/resource.rc b/plugins/Import/res/resource.rc index af948610fc..5f10bdcc0b 100644 --- a/plugins/Import/res/resource.rc +++ b/plugins/Import/res/resource.rc @@ -127,7 +127,7 @@ END IDD_ACCMERGE DIALOGEX 0, 0, 312, 150
STYLE DS_SETFONT | DS_MODALFRAME | DS_CENTER | DS_FIXEDSYS | WS_POPUP | WS_CAPTION | WS_SYSMENU
-CAPTION "Account merge"
+CAPTION "Choose appropriate accounts for import"
FONT 8, "MS Shell Dlg", 400, 0, 0x1
BEGIN
DEFPUSHBUTTON "OK",IDOK,204,132,50,16
diff --git a/plugins/Import/src/import.cpp b/plugins/Import/src/import.cpp index 507936a201..dbb63564df 100644 --- a/plugins/Import/src/import.cpp +++ b/plugins/Import/src/import.cpp @@ -308,7 +308,7 @@ static INT_PTR CALLBACK AccountsMatcherProc(HWND hwndDlg, UINT uMsg, WPARAM wPar LVCOLUMN col = { 0 };
col.mask = LVCF_TEXT | LVCF_WIDTH | LVCF_FMT | LVCF_SUBITEM;
col.fmt = LVCFMT_LEFT;
- col.cx = 100;
+ col.cx = 140;
col.pszText = TranslateT("Old account");
ListView_InsertColumn(hwndList, 0, &col);
|