summaryrefslogtreecommitdiff
path: root/plugins/Non-IM Contact/src
diff options
context:
space:
mode:
authorTobias Weimer <wishmaster51@googlemail.com>2013-09-16 18:39:46 +0000
committerTobias Weimer <wishmaster51@googlemail.com>2013-09-16 18:39:46 +0000
commit146332f5b9c44683398b383ec924a35f4c317cd6 (patch)
tree399ccf8e706a090383ac799ee7913d041401ac63 /plugins/Non-IM Contact/src
parent2543f7813d5af8c9f36e7ce58c97a2c188c8f8a1 (diff)
translation fix (patch by person)
git-svn-id: http://svn.miranda-ng.org/main/trunk@6094 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/Non-IM Contact/src')
-rw-r--r--plugins/Non-IM Contact/src/dialog.cpp40
1 files changed, 19 insertions, 21 deletions
diff --git a/plugins/Non-IM Contact/src/dialog.cpp b/plugins/Non-IM Contact/src/dialog.cpp
index c457ab1ed6..cf99e00c03 100644
--- a/plugins/Non-IM Contact/src/dialog.cpp
+++ b/plugins/Non-IM Contact/src/dialog.cpp
@@ -1,4 +1,21 @@
#include "commonheaders.h"
+
+#define NIM_HELP_TEXT LPGEN("String replacing variables....\r\nThe following are all the valid variables that can be used. Refer to the readme for a proper explanation.\r\n\r\n\
+file(X)\t\t<- specifies the file to read from\r\nMUST be followed by either start() or end() or wholeline()\r\n\
+filename(X)\t\t<- copyies the filename of file X.\r\n\
+start(...)\t\t<-specifies where to start copying from.\r\n\
+end(...)\t\t<-specifies where to stop copying.\r\n\
+wholeline(line(...))\t<-specifies a whole line to copy\r\n\r\n\
+start() and end() explained\r\n.........................\r\n\
+MUST start with line() followed by a number or a string inside \" marks, OR csv(seperatorX) variable\r\n\
+The number specifies which character in the line to start/end copying.\r\nThe string specifies a string in the line to start/end copying.\r\n\
+csv(seperatorX) explained...\r\nseperator is either \"tab\" or \"space\" or any SINGLE character.\r\nX is the Xth seperator to pass before copying, (or to stop before)\r\n\r\n\
+Lastly the line(...) variable...\r\n\
+Inside the brackets must be either a number (to specify the line number), or a string inside \" marks (to use the line with that string), or lastline(X).\r\nthe X in lastline is the Xth line above the last line. i.e lastline(1) will use the 2nd last line of the file.\r\n\
+If searching for a line with u may put a + or - X after the closing ) i.e line(\"some words\")+3 to go 3 lines after the line with \"some words\".\r\n\r\n\
+Some Expamples...\r\n\r\n\
+filename(0) <- will display the filename of the 0th file\r\nfile(0)wholeline(line(0))) <- will display the whole first line of the 0th file\r\nfile(0)wholeline(line(\"hello\")-1))) <- the wholeline above the first occurance of \"hello\" in the file\r\nfile(0)start(line(lastline(1))csv(tab2))end(line(lastline())csv(tab4))) <- starts at the 2nd last line of the file, from the 2nd tab variable, untill the 4th tab variable in the last line (in the 0th file)\r\nfile(0)start(line(\"hello\")+1\"zzzz\")end(line(6)17)) <- starts from the first occurance of zzzz in the line after the first occurance of hello, untill the 17th character in the 6th line (starting from line 0) of the 0th file.\r\n")
+
INT_PTR CALLBACK DlgProcNimcOpts(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
@@ -90,27 +107,8 @@ INT_PTR CALLBACK HelpWindowDlgProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lP
{
switch(msg) {
case WM_INITDIALOG:
- {
- char string[10000];
- TranslateDialogDefault(hwnd);
-
- strcpy(string, Translate("String replacing variables....\r\nThe following are all the valid variables that can be used. Refer to the readme for a proper explanation.\r\n\r\n"));
- strcat(string, Translate("file(X)\t\t<- specifies the file to read from\r\nMUST be followed by either start() or end() or wholeline()\r\n"));
- strcat(string, Translate("filename(X)\t\t<- copyies the filename of file X.\r\n"));
- strcat(string, Translate("start(...)\t\t<-specifies where to start copying from.\r\n"));
- strcat(string, Translate("end(...)\t\t<-specifies where to stop copying.\r\n"));
- strcat(string, Translate("wholeline(line(...))\t<-specifies a whole line to copy\r\n\r\n"));
- strcat(string, Translate("start() and end() explained\r\n.........................\r\n"));
- strcat(string, Translate("MUST start with line() followed by a number or a string inside \" marks, OR csv(seperatorX) variable\r\n"));
- strcat(string, Translate("The number specifies which character in the line to start/end copying.\r\nThe string specifies a string in the line to start/end copying.\r\n"));
- strcat(string, Translate("csv(seperatorX) explained...\r\nseperator is either \"tab\" or \"space\" or any SINGLE character.\r\nX is the Xth seperator to pass before copying, (or to stop before)\r\n\r\n"));
- strcat(string, Translate("Lastly the line(...) variable...\r\n"));
- strcat(string, Translate("Inside the brackets must be either a number (to specify the line number), or a string inside \" marks (to use the line with that string), or lastline(X).\r\nthe X in lastline is the Xth line above the last line. i.e lastline(1) will use the 2nd last line of the file.\r\n"));
- strcat(string, Translate("If searching for a line with u may put a + or - X after the closing ) i.e line(\"some words\")+3 to go 3 lines after the line with \"some words\".\r\n\r\n"));
- strcat(string, Translate("Some Expamples...\r\n\r\n"));
- strcat(string, Translate("filename(0) <- will display the filename of the 0th file\r\nfile(0)wholeline(line(0))) <- will display the whole first line of the 0th file\r\nfile(0)wholeline(line(\"hello\")-1))) <- the wholeline above the first occurance of \"hello\" in the file\r\nfile(0)start(line(lastline(1))csv(tab2))end(line(lastline())csv(tab4))) <- starts at the 2nd last line of the file, from the 2nd tab variable, untill the 4th tab variable in the last line (in the 0th file)\r\nfile(0)start(line(\"hello\")+1\"zzzz\")end(line(6)17)) <- starts from the first occurance of zzzz in the line after the first occurance of hello, untill the 17th character in the 6th line (starting from line 0) of the 0th file.\r\n"));
- SetDlgItemTextA(hwnd, IDC_HELPTEXT,string);
- }
+ SetDlgItemTextA(hwnd, IDC_HELPTEXT, NIM_HELP_TEXT);
+ TranslateDialogDefault(hwnd);
return TRUE;
case WM_COMMAND: