aboutsummaryrefslogtreecommitdiff
path: root/core/locale.lua
AgeCommit message (Collapse)Author
2021-04-11Initial pass reformatting all code.mitchell
Use clang-format, LuaFormatter, and 100 character limit on lines.
2021-01-29Updated copyright information.mitchell
2020-10-20Code cleanup.mitchell
Of note: * io.save_all_files() does not visit each buffer to save anymore. An unintended side-effect was checking for outside modification (but only if the file itself was modified), so outside changes will always be saved over now. * The menu clicked handler uses assert_type(), so the 'Unknown command' localization is no longer needed. * When printing to a new buffer type would split the view, use an existing split view when possible. * Prefer 'goto continue' construct in loops over nested 'if's. * Fixed clearing of ui.find.replace_entry_text on reset in the GUI version. * Fixed lack of statusbar updating when setting options like buffer EOL mode, indentation, and encoding. * Renamed internal new_snippet() to new() and put it in the snippet metatable.
2020-10-01Handle CRLF in locale files.mitchell
Previously, LF was expected, so CR (if present) would be in every message.
2020-09-29Updated copyright information.mitchell
2020-03-10Core code cleanup, reformat, refactoring, and bugfixes.mitchell
`events.FILE_CHANGED` was not emitting a filename. Added tests for key commands, keychains, and key modes.
2020-03-03Added test suite and API type checking for more helpful error messages.mitchell
2020-02-26Small code cleanup.mitchell
2020-02-21Tweaked localization keys.mitchell
This is in anticipate of removing '_' from keys, which would have created duplicate keys.
2019-12-31Updated copyright year.mitchell
2019-02-16Updated copyright year.mitchell
2018-01-25Updated copyright year.mitchell
2016-12-31Updated copyright information.mitchell
2016-06-15Be more liberal about comments in locale files and use '#' by default.mitchell
2015-12-31Updated copyright date.mitchell
2015-03-16Code cleanup based on the output of luacheck, a Lua linter.mitchell
2014-12-31Updated copyright year.mitchell
2014-03-01Use `assert(...)` as a shortcut for `if not ... then error() end`.mitchell
2014-01-14Added Swedish translation from Niklas Wallén.mitchell
2014-01-12Updated copyright information.mitchell
2013-06-12Removed `_L._EXISTS()`; core/locale.luamitchell
2013-04-03Textadept should support multiple curses platforms; remove ncurses references.mitchell
Requires Scintilla r4436 and Scinterm r45.
2013-01-20Updated copyright date.mitchell
2012-11-19Rewrote LuaDoc.mitchell
2012-11-19Changed Lua code style for tables.mitchell
2012-09-12Documentation overhaul.mitchell
Rewrote most of the manual and Lua API to complement each other. Key bindings reference moved from Appendix to modules/textadept/keys.lua LuaDoc.
2012-09-05Attempt to auto-detect locale using 'LANG' environment variable; core/locale.luamitchell
2012-07-17Added function to check if a localized message exists; core/locale.luamitchell
2012-07-17Remove mnemonics from localized ncurses strings; core/locale.luamitchell
2012-06-24Show the text to be localized in the 'No Localization' message; core/locale.luamitchell
2012-03-16Moved "Markdown:" comments into module LuaDoc comments.mitchell
2012-03-07Updated contact email address.mitchell
2012-03-07Documentation overhaul with Discount (Markdown implementation).mitchell
The standard LuaDoc template is no longer used. Instead, the new `scripts/markdowndoc.lua` has the template for LuaDoc and `scripts/update_doc` has the template for the Manual. Also added README, CHANGELOG, and THANKS files.
2012-02-10Update LuaDoc with new formatting.mitchell
2012-01-17Updated LuaDoc.mitchell
2012-01-06Updated copyright information.mitchell
2011-12-31Changed 'locale.localize()' to global '_L' table.mitchell
2011-12-13Remove 'package.seeall' from LuaDoc comments.mitchell
2011-12-12Remove 'module' and update LuaDoc comments appropriately.mitchell
2010-12-28Updated copyright information.mitchell
2010-11-30New manual.mitchell
2010-10-15Changed locale implementation.mitchell
2010-03-29Check for ~/.textadept/locale.conf first; core/locale.luamitchell
2010-01-07Updated copyright to 2010.mitchell
2009-07-25Documentation overhaul.mitchell
2009-02-17Moved localization into a configuration file.mitchell
2009-02-15Removed buggy 'Select in Structure' from _m.textadept.editing.mitchell
2009-02-14Prompt for file reload if it was modified outside of Textadept.mitchell
2009-02-14Can toggle the showing of 'dot' files in the PM file browser via popupmenu.mitchell
2009-02-10Moved the textadept.locale table into the globals table.mitchell