diff options
author | Dart Raiden <wowemuh@gmail.com> | 2014-01-04 22:35:04 +0000 |
---|---|---|
committer | Dart Raiden <wowemuh@gmail.com> | 2014-01-04 22:35:04 +0000 |
commit | 6897b0bec345e1db67aaa06dd506de952b0500bd (patch) | |
tree | 0f72f9e4a14da5e05ac65e1f97ac84be7ace8d38 /langpacks/bulgarian/Plugins | |
parent | 37e5a98b8a26c3c62edbadb073485ec129b8d66c (diff) |
langpacks: update according to [7492]
git-svn-id: http://svn.miranda-ng.org/main/trunk@7508 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'langpacks/bulgarian/Plugins')
-rw-r--r-- | langpacks/bulgarian/Plugins/Folders.txt | 2 | ||||
-rw-r--r-- | langpacks/bulgarian/Plugins/ICQ.txt | 2 | ||||
-rw-r--r-- | langpacks/bulgarian/Plugins/Jabber.txt | 18 | ||||
-rw-r--r-- | langpacks/bulgarian/Plugins/NimContact.txt | 2 | ||||
-rw-r--r-- | langpacks/bulgarian/Plugins/PackUpdater.txt | 2 |
5 files changed, 22 insertions, 4 deletions
diff --git a/langpacks/bulgarian/Plugins/Folders.txt b/langpacks/bulgarian/Plugins/Folders.txt index b43f8f88fe..5f3ca25218 100644 --- a/langpacks/bulgarian/Plugins/Folders.txt +++ b/langpacks/bulgarian/Plugins/Folders.txt @@ -51,7 +51,7 @@ [The plugin can also expand environment variables; the variables are specified like in any other]
-[program that can use environment variables, i.e. %<env variable>%.]
+[program that can use environment variables, i.e., %<env variable>%.]
[Note: Environment variables are expanded before any Miranda variables. So if you have, for]
diff --git a/langpacks/bulgarian/Plugins/ICQ.txt b/langpacks/bulgarian/Plugins/ICQ.txt index f5e2a8e07b..46df170e77 100644 --- a/langpacks/bulgarian/Plugins/ICQ.txt +++ b/langpacks/bulgarian/Plugins/ICQ.txt @@ -106,7 +106,7 @@ ICQ аватари [Enable peer-to-peer message connections]
Включване на peer-to-peer връзка при разговор
-[Passive mode, i.e. do not initiate new connections]
+[Passive mode (i.e., do not initiate new connections)]
Пасивен режим (напр. без стартиране на нови връзки)
[Extra Features]
Допълнителни функции
diff --git a/langpacks/bulgarian/Plugins/Jabber.txt b/langpacks/bulgarian/Plugins/Jabber.txt index c27a9246d1..460dfbace8 100644 --- a/langpacks/bulgarian/Plugins/Jabber.txt +++ b/langpacks/bulgarian/Plugins/Jabber.txt @@ -1861,6 +1861,8 @@ Facebook чат Стандартният списък за поверителност бе успешно отменен
[Error occurred while setting default list]
Възникна грешка при задаването на стандартен списък
+[Allow]
+
[Simple mode]
Прост режим
[Advanced mode]
@@ -1905,6 +1907,8 @@ Facebook чат [Query]
+[List has no rules, empty lists will be deleted then changes applied]
+
[allow ]
позволяване\s
[deny ]
@@ -1949,6 +1953,12 @@ Facebook чат Първо запишете списъка
[Please save list before you make it the default list]
Моля, запишете списъка преди да го направите стандартен
+[No list selected]
+
+[Can't remove active or default list]
+
+[Sorry]
+
[Unable to save list because you are currently offline.]
Списъка не може да бъде запаметен защото сте извън линия.
[List Editor...]
@@ -2055,6 +2065,14 @@ Facebook чат [sent unknown presence type]
+[Nick:]
+
+[Status:]
+
+[Status text:]
+
+[Real JID:]
+
;file \protocols\JabberG\src\jabber_thread.cpp
[Enter password for]
Въведете парола за
diff --git a/langpacks/bulgarian/Plugins/NimContact.txt b/langpacks/bulgarian/Plugins/NimContact.txt index 4c3b9c4378..44d3d5cf2d 100644 --- a/langpacks/bulgarian/Plugins/NimContact.txt +++ b/langpacks/bulgarian/Plugins/NimContact.txt @@ -118,7 +118,7 @@ URL [New Non-IM Contact]
;file \plugins\Non-IM Contact\src\dialog.cpp
-[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\nfile(X)\t\t<- specifies the file to read from. MUST be followed by either start() or end() or wholeline()\r\nfilename(X)\t<- copies the filename of file X.\r\nstart(...)\t\t<- specifies where to start copying from.\r\nend(...)\t\t<- specifies where to stop copying.\r\nwholeline(line(...))\t<- specifies a whole line to copy\r\n\r\nstart() and end() explained\r\n.........................\r\nMUST start with line() followed by a number or a string inside " marks, OR csv(separatorX) variable. The number specifies which character in the line to start/end copying. The string specifies a string in the line to start/end copying.\r\n\r\ncsv(seperatorX) explained...\r\nSeperator is either "tab" or "space" or any SINGLE character. X is the Xth seperator to pass before copying, (or to stop before).\r\n\r\nLastly the line(...) variable...\r\nInside 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). The X in lastline is the Xth line above the last line i.e. lastline(1) will use the 2nd last line of the file. If searching for a line with "some words" you 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\nSome Examples...\r\nfilename(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 occurrence 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, until 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 occurrence of zzzz in the line after the first occurrence of hello, until the 17th character in the 6th line (starting from line 0) of the 0th file.\r\n]
+[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\nfile(X)\t\t<- specifies the file to read from. MUST be followed by either start() or end() or wholeline()\r\nfilename(X)\t<- copies the filename of file X.\r\nstart(...)\t\t<- specifies where to start copying from.\r\nend(...)\t\t<- specifies where to stop copying.\r\nwholeline(line(...))\t<- specifies a whole line to copy\r\n\r\nstart() and end() explained\r\n.........................\r\nMUST start with line() followed by a number or a string inside " marks, OR csv(separatorX) variable. The number specifies which character in the line to start/end copying. The string specifies a string in the line to start/end copying.\r\n\r\ncsv(seperatorX) explained...\r\nSeperator is either "tab" or "space" or any SINGLE character. X is the Xth seperator to pass before copying, (or to stop before).\r\n\r\nLastly the line(...) variable...\r\nInside 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). The X in lastline is the Xth line above the last line, i.e., lastline(1) will use the 2nd last line of the file. If searching for a line with "some words" you 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\nSome Examples...\r\nfilename(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 occurrence 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, until 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 occurrence of zzzz in the line after the first occurrence of hello, until the 17th character in the 6th line (starting from line 0) of the 0th file.\r\n]
;file \plugins\Non-IM Contact\src\files.cpp
[File couldn't be opened]
diff --git a/langpacks/bulgarian/Plugins/PackUpdater.txt b/langpacks/bulgarian/Plugins/PackUpdater.txt index 3d94063a93..585198271c 100644 --- a/langpacks/bulgarian/Plugins/PackUpdater.txt +++ b/langpacks/bulgarian/Plugins/PackUpdater.txt @@ -2,7 +2,7 @@ ;============================================================
; File: PackUpdater.dll
; Plugin: Pack updater
-; Version: 0.0.1.1
+; Version: 0.1.0.1
; Authors: Mataes, ZERO_BiT
;============================================================
[Simple updater for Miranda NG premodified packs.]
|