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."
msgstr "Quelldatei gehört nicht zum Projekt. Fügen Sie sie zunächst hinzu."
#: svnclasses.rssvnsettings
msgid "SVN settings"
msgstr ""
#: svnclasses.rssvntools
msgid "SVN tools"
msgstr "SVN Werkzeuge"

View File

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

View File

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

View File

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

View File

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