diff options
-rw-r--r-- | core/locale.conf | 1 | ||||
-rw-r--r-- | core/locales/locale.de.conf | 1 | ||||
-rw-r--r-- | core/locales/locale.es.conf | 1 | ||||
-rw-r--r-- | core/locales/locale.fr.conf | 1 | ||||
-rw-r--r-- | core/locales/locale.ru.conf | 1 | ||||
-rw-r--r-- | modules/textadept/keys.lua | 1 | ||||
-rw-r--r-- | modules/textadept/menu.lua | 1 |
7 files changed, 7 insertions, 0 deletions
diff --git a/core/locale.conf b/core/locale.conf index 4878377e..ab7ea05d 100644 --- a/core/locale.conf +++ b/core/locale.conf @@ -113,6 +113,7 @@ Open _Recent... = Open _Recent... Re_load = Re_load _Save = _Save Save _As = Save _As +Save All = Save All _Close = _Close Close All = Close All Loa_d Session... = Loa_d Session... diff --git a/core/locales/locale.de.conf b/core/locales/locale.de.conf index 183d1f1f..0e20c984 100644 --- a/core/locales/locale.de.conf +++ b/core/locales/locale.de.conf @@ -103,6 +103,7 @@ Open _Recent... = Zuletzt verwendete Dateien öffnen... Re_load = Erneut laden _Save = _Speichern Save _As = Speichern _unter +Save All = Alle speichern _Close = S_chließen Close All = Alle schließen Loa_d Session... = Session laden... diff --git a/core/locales/locale.es.conf b/core/locales/locale.es.conf index 102401e4..ddea326e 100644 --- a/core/locales/locale.es.conf +++ b/core/locales/locale.es.conf @@ -114,6 +114,7 @@ Open _Recent... = Abrir _reciente... Re_load = _Volver a cargar _Save = _Guardar Save _As = Guardar co_mo +Save All = Guardar to_do _Close = _Cerrar Close All = Cerrar _todo Loa_d Session... = Cargar s_esión... diff --git a/core/locales/locale.fr.conf b/core/locales/locale.fr.conf index 60279918..167a910b 100644 --- a/core/locales/locale.fr.conf +++ b/core/locales/locale.fr.conf @@ -114,6 +114,7 @@ Open _Recent... = Ouvrir _récent... Re_load = Re_charger _Save = _Enregistrer Save _As = Enregistrer _sous +Save All = Enregistrer tout _Close = _Fermer Close All = Fermer tout Loa_d Session... = Ch_arger session... diff --git a/core/locales/locale.ru.conf b/core/locales/locale.ru.conf index c1fde42c..f0d32f76 100644 --- a/core/locales/locale.ru.conf +++ b/core/locales/locale.ru.conf @@ -103,6 +103,7 @@ Open _Recent... = Открыть _недавние... Re_load = _Перезагрузить _Save = Со_хранить Save _As = Сохранить _как +Save All = Сохранить в_се _Close = _Закрыть Close All = Закрыть в_се Loa_d Session... = За_грузить сессию... diff --git a/modules/textadept/keys.lua b/modules/textadept/keys.lua index 6206d456..9a94ab53 100644 --- a/modules/textadept/keys.lua +++ b/modules/textadept/keys.lua @@ -366,6 +366,7 @@ keys[not OSX and not CURSES and 'cao' or 'cmo'] = io.open_recent_file keys[not OSX and (not CURSES and 'cO' or 'mo') or 'mO'] = io.reload_file keys[not OSX and 'cs' or 'ms'] = io.save_file keys[not OSX and (not CURSES and 'cS' or 'cms') or 'mS'] = io.save_file_as +-- TODO: io.save_all_files keys[not OSX and 'cw' or 'mw'] = io.close_buffer keys[not OSX and (not CURSES and 'cW' or 'cmw') or 'mW'] = io.close_all_buffers -- TODO: textadept.sessions.load diff --git a/modules/textadept/menu.lua b/modules/textadept/menu.lua index 2833311a..e064e4e0 100644 --- a/modules/textadept/menu.lua +++ b/modules/textadept/menu.lua @@ -24,6 +24,7 @@ local menubar = { {_L['Re_load'], io.reload_file}, {_L['_Save'], io.save_file}, {_L['Save _As'], io.save_file_as}, + {_L['Save All'], io.save_all_files}, SEPARATOR, {_L['_Close'], io.close_buffer}, {_L['Close All'], io.close_all_buffers}, |