aboutsummaryrefslogtreecommitdiffstats
path: root/Resources/English.lproj/Localizable.strings
Commit message (Collapse)AuthorAgeFilesLines
* Make sure the root favorite has a name key and value. Also, update string files.stuconnolly2010-11-111-0/+0
|
* Rearchitect preferences, including:stuconnolly2010-11-031-0/+0
| | | | | | | | | - Split each preference pane into their own controller (subclass of SPPreferencePane, which is a subclass of NSViewController). - Each preference pane controller conforms to the protocol SPPreferencePaneProtocol to allow the main preference controller to build the toolbar. - Move the preferences upgrade function to it's own file. - Add SPFontPreviewTextField which is based on Colloquy's JVFontPreviewField to allow previewing of the selected font in the tables and editor preference panes. - Update localisable strings files.
* Add a new category to SPDatabaseDocument, allowing code cleanup and moving ↵rowanbeentje2010-11-031-0/+0
| | | | | | | | | | | central functionality out of SPTablesList: - Centralise control over table loading, moving it away from SPTablesList and into SPDatabaseDocument and the new SPDatabaseViewController category - Centralise control over the main tab view, moving control away from SPTablesList and into SPDatabaseDocument and the new SPDatabaseViewController category - Simplify and clean up view loading logic - Improve thread safety - Update localisable strings
* Split out all of SPTableStructure's delegate and datasource methods into ↵stuconnolly2010-10-261-0/+0
| | | | their own category.
* Because the process of editing a trigger involves droping and then ↵stuconnolly2010-10-191-0/+0
| | | | re-creating it, if an error occurs when attempting to re-create it remember to then re-create the original one. Fixes issue #795.
* Localize the header included in SQL and XML exports.stuconnolly2010-10-191-0/+0
|
* Remove use of multiple comments for localized strings.stuconnolly2010-10-191-0/+0
|
* Forgot to update Localizable.strings for previous commit.stuconnolly2010-10-101-0/+0
|
* Add support for adding SPATIAL indexes on MyISAM tables. Also, update ↵stuconnolly2010-10-081-0/+0
| | | | Localizable.strings.
* - Update SSH connections to pick up custom ports configured in SSH config ↵rowanbeentje2010-10-061-0/+0
| | | | | | | | files; thanks to Stefan Schüßer for this patch. - Tweak SSH Master Mode to use the "ControlMaster auto" setting instead of -M - Update localizable strings
* Correctly uppercase menu item. Also, update strings files.stuconnolly2010-09-271-0/+0
|
* Consolidate and improve ping code:rowanbeentje2010-09-251-0/+0
| | | | | | | | - Foreground and keepalive pings now use the same code, which has been tidied and improved - Global variables are no longer incorrectly shared across multiple instances - If a ping thread blocks in a state where pthread_cancel no longer functions, the connection is assumed to have failed (network issues etc) This should further improve MySQL crashes linked to pings, and will hopefully address Issue #830. Also update localizable strings
* Update Localizable.strings and resolve the use of multiple comments for the ↵stuconnolly2010-09-211-0/+0
| | | | same string.
* - A further attempt to improve MySQL library crashes by improving threaded ↵rowanbeentje2010-09-201-0/+0
| | | | | | | pings. This returns to an old approach by attempting to use interrupt signals to force a hung network read to close; however, the signal is now sent by the watchdog thread in a thread-safe fashion to specifically target the locking thread. If this approach works we'll probably consolidate the ping code to use it throughout. - Update localizable strings
* - Before performing an export (except from a dot export), refresh the table ↵stuconnolly2010-09-191-0/+0
| | | | | | | list to accommodate cases where additional tables have been added to the database by external applications. If so inform the user of this, giving them the choice of whether or not to continue with the export. - Update Localizable.strings
* - Remove a number of invalid [NSTableView makeFirstResponder] calls that ↵rowanbeentje2010-09-181-0/+0
| | | | | | | had crept into the source, replacing with the correct [NSWindow makeFirstResponder:NSTableView]. This fixes a number of exceptions. - Update localisable strings.
* - Consolidate structure and content row editing cancellation code into a ↵rowanbeentje2010-09-161-0/+0
| | | | | | | | | | single function in each class - Tweak NSTableView subclasses to catch presses of the Escape key and ask the class to abort row editing. This makes Esc key behaviour much more consistent, and allows cancelling/reverting edits made via the mouse (eg checkboxes, dropdowns, enums), or after the cell editing has finished but the row is still selected. - Remove debug - Update localisable strings
* - Implement support for MySQL over SSL for both TCP/IP and Socket ↵rowanbeentje2010-09-131-0/+0
| | | | | | | | | | connection modes. - Upgrade the MySQL binaries to version 5.1.50 (was 5.1.46) - Enable SSL support in the MySQL libraries (this leads to a large increase in library size, unfortunately) - Enable more optimisations in the MySQL libraries (especially --enable-assembler for faster in-library string processing and --with-mysqld-ldflags=-all-static) This completes support for Issue #27.
* - Add support for SSH identity files (public keys) in custom locationsrowanbeentje2010-09-081-0/+0
| | | | | | - Update localisable strings - Fix initial window position
* - Fix incomplete argument logic when deleting multiple rows without indexes ↵rowanbeentje2010-09-051-0/+0
| | | | | | | | (now rolled into argumentForRow: for centralised logic), addressing Issue #791 - Update table row count at bottom of window when deleting rows in the content view - Update localisable strings
* - Attempt more status checking before closing the MySQL connection, in an ↵rowanbeentje2010-08-301-0/+0
| | | | | | | attempt to further address http://spbug.com/l/13 - Update localisable strings
* Encoding changes and improvements, particularly to increase compatibility ↵rowanbeentje2010-08-251-0/+0
| | | | | | | | | | | with extended characters in MySQL identifiers (names of dbs/tables/cols): - Move encoding queries and control into MCPKit, with newly cleaned-up methods, and switch a number of locations to using the new code. - Use UTF8 connections for many identifier-based queries (selecting and listing databases, tables, stored procs, table information). This fixes selection and creation of table and database names containing extended characters, also fixing exceptions and errors. - Improve UTF8 over Latin1 to correctly set the client character set encoding as well, fixing custom queries and edits; remove custom code in SPTableContent achieving the same thing in a single location. - Fix database encoding detection routines - Update localisable strings
* - Make another couple of strings localisable, and tweak layout of CREATE ↵rowanbeentje2010-08-011-0/+0
| | | | indexes view labels
* - Make a few more strings localizablerowanbeentje2010-08-011-0/+0
|
* - Make SSH titlebar strings and preferences' favourite "Last Used" menu ↵rowanbeentje2010-08-011-0/+0
| | | | item localisable
* - Replace progress indicator CoreAnimation drawing with manual shadow/fade ↵rowanbeentje2010-07-311-0/+0
| | | | | | | code; this addresses hangs (see Issue #6677) and also prevents triggering the discrete graphics chip on newer MacBook Pros. - Update localisable strings
* - Clean up SPDataImport, removing unused methods and cleaning up order and ↵rowanbeentje2010-07-191-0/+0
| | | | | | | | | methods - Improve error handling when the connecting dies during import (previous the sheet would stay open) - Fix localised strings for error messages (label and text the wrong way round) - Improve comments
* - Expose a number of help menu items and help buttons to use localisable ↵rowanbeentje2010-07-181-0/+0
| | | | | | | | strings - Tweak MySQL help search to include a localisable language code for results in requested languages This addresses Issue #743
* Finalise Sequel Pro tab style:rowanbeentje2010-07-121-0/+0
| | | | | | | | - Add custom Safari-style tab close buttons - Tweak margins, especially on the right when a progress indicator is active to avoid doubled margins - Fix tab bar rendering when using font/help etc windows Also update the .strings files to match latest changes
* As the initial MySQL connection is now threaded, start the current tab's ↵stuconnolly2010-07-071-0/+0
| | | | progress indicator to indicate that it's connecting in the event that the user switches to a different tab. Also preserve the tab's label as 'Connecting...' when switching tabs.
* Change the export dialog's 'Selected Tables' option to simply 'Tables' and ↵stuconnolly2010-07-061-0/+0
| | | | update strings files.
* Simplify the ease at which export filename tokens can be localised as well ↵stuconnolly2010-07-051-0/+0
| | | | as how they are updated with respect to the selected export type.
* Localise the custom export filename tokens.stuconnolly2010-07-021-0/+0
|
* Remove all the old export code and associated UI controls.stuconnolly2010-07-021-0/+0
|
* Add option to toggle the tab bar visibility.avenjamin2010-06-301-0/+0
| | | | | - Only applies when one tab is present. - Saves last used state to preferences.
* Add tooltips to the export dialog's tableview.stuconnolly2010-06-301-0/+0
|
* Minor interface tweaks.stuconnolly2010-06-251-0/+0
|
* Forgot to commit new strings file, not that anything actually changed.avenjamin2010-06-141-0/+0
|
* Split the management of a table's indexes (adding and removing) to its own ↵stuconnolly2010-06-141-0/+0
| | | | controller and XIB in preparation for the UI redesign.
* - Implement the Wil shipley/Golden % Braeburn localisation method for ↵rowanbeentje2010-06-121-0/+0
| | | | | | | | .xibs; add a build stage to Release/Dist builds which generates .strings files for each nib, and swizzle nib loading to automatically translate strings based on any localised .strings files - Fix the genstring stage of the build script and move it to Release/Dist builds only - Update Localizable.strings to match latest code
* Merge export redesign branch back into trunk.stuconnolly2010-05-241-0/+0
| | | | | | | | | | | | | | | | | | | | | Includes a completely redesign approach to all export data types based on the use of NSOperation subclasses. CSV, SQL, XML and dot export types are currently functional, while the source files for PDF and HTML export types exist they are to be implemented, but are currently hidden from the interface. Also includes the following: - Completely redesigned export interface. - The ability to customize CSV NULL values. - The ability to specify whether the UTF-8 BOM should be used in SQL dumps. - The ability to specify whether BLOB fields are output as hex or plain text during SQL dumps. Defaults to hex. - Exporting currently selected tables via the tables list context menu. Outstanding issues: - Not all progress indicators for all export types are functional (or functioning correctly). - A few issues related to the introduction of only exporting the content and create and drop syntax of specific tables during SQL dumps. Needs some serious testing and benchmarking to ensure it replicates the current export functionality.
* Added 'Add Host' to Locazable.stringsmltownsend2010-05-041-0/+0
|
* changed many occurrences of "REMOVE" to "DELETE", eg. "DELETE DATABASE"jakob2010-04-221-0/+0
|
* Localize 'Edit Favorites...' popup button menu item.stuconnolly2010-04-201-0/+0
|
* Forgot to update Localizable.strings for previous commit.stuconnolly2010-04-111-0/+0
|
* When adding a new table with a CSV storage engine, the initial field cannot ↵stuconnolly2010-03-301-0/+0
| | | | be NULL as nullable fields are not supported. Fixes issue #614. Although resolved, this will ultimately be fixed in a better approach upon the implementation of issue #297 that should allow the user to customize many of the properties of the initial field of a new table.
* Localize 'Save As...' button titles on console and process list windows.stuconnolly2010-03-251-0/+0
|
* Update Localizable.strings and add error checking to genstrings build process.stuconnolly2010-03-231-0/+0
|
* Consolidate all localizable content in the Resources/ directory and only use ↵stuconnolly2010-03-171-0/+0
Interfaces/ for XIBs. This addresses the first point on issue #593.