LazSVNPkg:

1) Localized keymaps.
  2) Updated Russian translation and regenerated others.

git-svn-id: trunk@25259 -
This commit is contained in:
maxim 2010-05-08 17:28:08 +00:00
parent 996ccb8aac
commit b422bd7cb9
5 changed files with 18 additions and 5 deletions

View File

@ -161,6 +161,10 @@ msgstr "Zeige Protokoll"
msgid "Source file does not belong to the project. Please add first." msgid "Source file does not belong to the project. Please add first."
msgstr "Quelldatei gehört nicht zum Projekt. Fügen Sie sie zunächst hinzu." msgstr "Quelldatei gehört nicht zum Projekt. Fügen Sie sie zunächst hinzu."
#: svnclasses.rssvnsettings
msgid "SVN settings"
msgstr ""
#: svnclasses.rssvntools #: svnclasses.rssvntools
msgid "SVN tools" msgid "SVN tools"
msgstr "SVN Werkzeuge" msgstr "SVN Werkzeuge"

View File

@ -153,6 +153,10 @@ msgstr ""
msgid "Source file does not belong to the project. Please add first." msgid "Source file does not belong to the project. Please add first."
msgstr "" msgstr ""
#: svnclasses.rssvnsettings
msgid "SVN settings"
msgstr ""
#: svnclasses.rssvntools #: svnclasses.rssvntools
msgid "SVN tools" msgid "SVN tools"
msgstr "" msgstr ""

View File

@ -161,6 +161,10 @@ msgstr "Показать журнал"
msgid "Source file does not belong to the project. Please add first." msgid "Source file does not belong to the project. Please add first."
msgstr "Файл исходного кода не включён в проект. Добавьте его сначала." msgstr "Файл исходного кода не включён в проект. Добавьте его сначала."
#: svnclasses.rssvnsettings
msgid "SVN settings"
msgstr "Параметры SVN"
#: svnclasses.rssvntools #: svnclasses.rssvntools
msgid "SVN tools" msgid "SVN tools"
msgstr "Средства SVN" msgstr "Средства SVN"

View File

@ -62,11 +62,11 @@ begin
cat:=nil; cat:=nil;
{$endif} {$endif}
CmdSVNLog:=RegisterIDECommand(Cat, 'SVNLog', 'SVN log', Key, nil, @ProcSVNLog); CmdSVNLog:=RegisterIDECommand(Cat, 'SVNLog', rsShowLog, Key, nil, @ProcSVNLog);
CmdSVNCommit:=RegisterIDECommand(Cat, 'SVNCommit', 'SVN commit', Key, nil, @ProcSVNCommit); CmdSVNCommit:=RegisterIDECommand(Cat, 'SVNCommit', rsCommit, Key, nil, @ProcSVNCommit);
CmdSVNUpdate:=RegisterIDECommand(Cat, 'SVNUpdate', 'SVN update', Key, nil, @ProcSVNUpdate); CmdSVNUpdate:=RegisterIDECommand(Cat, 'SVNUpdate', rsUpdate, Key, nil, @ProcSVNUpdate);
CmdSVNDiff:=RegisterIDECommand(Cat, 'SVNDiff', 'SVN diff', Key, nil, @ProcSVNDiff); CmdSVNDiff:=RegisterIDECommand(Cat, 'SVNDiff', rsShowDiff, Key, nil, @ProcSVNDiff);
CmdSVNSettings:=RegisterIDECommand(Cat, 'SVNSettings', 'SVN settings', Key, nil, @ProcSVNSettings); CmdSVNSettings:=RegisterIDECommand(Cat, 'SVNSettings', rsSVNSettings, Key, nil, @ProcSVNSettings);
{$note add menu_svn bitmap in the main menu} {$note add menu_svn bitmap in the main menu}
mnuSVNMain := RegisterIDEMenuSection(itmCustomTools, 'SVN'); mnuSVNMain := RegisterIDEMenuSection(itmCustomTools, 'SVN');

View File

@ -62,6 +62,7 @@ resourcestring
rsRevision = 'Revision'; rsRevision = 'Revision';
rsSave = 'Save'; rsSave = 'Save';
rsSettings = 'Settings'; rsSettings = 'Settings';
rsSVNSettings = 'SVN settings';
rsShowDiff = 'Show diff'; rsShowDiff = 'Show diff';
rsShowDiffCountRev = 'Show last X commits'; rsShowDiffCountRev = 'Show last X commits';
rsShowLog = 'Show log'; rsShowLog = 'Show log';