aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/locale.conf10
-rw-r--r--core/locales/locale.ru.conf10
-rw-r--r--modules/textadept/menu.lua12
3 files changed, 16 insertions, 16 deletions
diff --git a/core/locale.conf b/core/locale.conf
index acf4358f..295e44b2 100644
--- a/core/locale.conf
+++ b/core/locale.conf
@@ -165,11 +165,6 @@ Filter Through = _Filter Through
Adeptsense = _Adeptsense
Complete Symbol = _Complete Symbol
Show Documentation = Show _Documentation
-Snippets = _Snippets
-Insert Snippet... = _Insert Snippet...
-Expand Snippet/Next Placeholder = _Expand Snippet/Next Placeholder
-Previous Snippet Placeholder = _Previous Snippet Placeholder
-Cancel Snippet = _Cancel Snippet
Bookmark = _Bookmark
Toggle Bookmark = _Toggle Bookmark
Clear Bookmarks = _Clear Bookmarks
@@ -180,6 +175,11 @@ Snapopen = Snap_open
Snapopen User Home = Snapopen _User Home
Snapopen Textadept Home = Snapopen _Textadept Home
Snapopen Current Directory = Snapopen _Current Directory
+Snippets = _Snippets
+Insert Snippet... = _Insert Snippet...
+Expand Snippet/Next Placeholder = _Expand Snippet/Next Placeholder
+Previous Snippet Placeholder = _Previous Snippet Placeholder
+Cancel Snippet = _Cancel Snippet
Show Style = Show St_yle
Buffer = _Buffer
Next Buffer = _Next Buffer
diff --git a/core/locales/locale.ru.conf b/core/locales/locale.ru.conf
index e47f7bb5..eee3757e 100644
--- a/core/locales/locale.ru.conf
+++ b/core/locales/locale.ru.conf
@@ -165,11 +165,6 @@ Filter Through = Пропустить через _фильтр
Adeptsense = _Adeptsense
Complete Symbol = _Завершить символ
Show Documentation = Показать _документацию
-Snippets = _Заготовки
-Insert Snippet... = _Вставить загтовку...
-Expand Snippet/Next Placeholder = _Развернуть заготовку/Следующая метка
-Previous Snippet Placeholder = _Предыдущая метка заготовки
-Cancel Snippet = _Убрать заготовку
Bookmark = _Закладки
Toggle Bookmark = _Показать/скрыть закладки
Clear Bookmarks = _Очистить закладки
@@ -180,6 +175,11 @@ Snapopen = _Быстрое открытие файлов
Snapopen User Home = Быстрое открытие _домашнего каталога
Snapopen Textadept Home = Быстрое открытие домашней страницы _Textadept
Snapopen Current Directory = Быстрое открытие _текущего каталога
+Snippets = _Заготовки
+Insert Snippet... = _Вставить загтовку...
+Expand Snippet/Next Placeholder = _Развернуть заготовку/Следующая метка
+Previous Snippet Placeholder = _Предыдущая метка заготовки
+Cancel Snippet = _Убрать заготовку
Show Style = Показать _стиль
Buffer = _Буфер
Next Buffer = _Следующий буфер
diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua
index 304a4f0d..82c72cfa 100644
--- a/modules/textadept/menu.lua
+++ b/modules/textadept/menu.lua
@@ -127,12 +127,6 @@ menubar = {
{ L('Complete Symbol'), m_textadept.adeptsense.complete_symbol },
{ L('Show Documentation'), m_textadept.adeptsense.show_documentation },
},
- { title = L('Snippets'),
- { L('Insert Snippet...'), m_textadept.snippets._select },
- { L('Expand Snippet/Next Placeholder'), m_textadept.snippets._insert },
- { L('Previous Snippet Placeholder'), m_textadept.snippets._previous },
- { L('Cancel Snippet'), m_textadept.snippets._cancel_current },
- },
{ title = L('Bookmark'),
{ L('Toggle Bookmark'), m_textadept.bookmarks.toggle },
{ L('Clear Bookmarks'), m_textadept.bookmarks.clear },
@@ -145,6 +139,12 @@ menubar = {
{ L('Snapopen Textadept Home'), { m_textadept.snapopen.open, _HOME } },
{ L('Snapopen Current Directory'), utils.snapopen_filedir },
},
+ { title = L('Snippets'),
+ { L('Insert Snippet...'), m_textadept.snippets._select },
+ { L('Expand Snippet/Next Placeholder'), m_textadept.snippets._insert },
+ { L('Previous Snippet Placeholder'), m_textadept.snippets._previous },
+ { L('Cancel Snippet'), m_textadept.snippets._cancel_current },
+ },
SEPARATOR,
{ L('Show Style'), utils.show_style },
},