Extension:TranslateSvg
This extension is currently not actively maintained! Although it may still work, any bug reports or feature requests will more than likely be ignored. If you are interested in taking on the task of developing and maintaining this extension, you can request repository ownership. As a courtesy, you may want to contact the author. You should also remove this template and list yourself as maintaining the extension in the page's {{extension}} infobox. |
![]() Release status: unmaintained |
|
---|---|
Implementation | Special page |
Description | Provides a special page to allow for native SVG translating. |
Author(s) | Harry Burt |
Latest version | 1.0.0 (2011-12-20) |
MediaWiki | |
License | GNU General Public License 2.0 |
Download | log |
|
|
Quarterly downloads | 3 (Ranked 167th) |
Translate the TranslateSvg extension if it is available at translatewiki.net | |
Issues | Open tasks · Report a bug |
TranslateSvg is a MediaWiki extension that creates a Special page to provide a native-style interface for translating SVGs in line with the SVG1.1 specification.
StatusEdit
To see the latest version of the extension in action, watch File:TranslateSvg.ogv, which is updated with every new release. (Note that any visible SVG text alignment issues are the result of problems in rsvg for Windows and not problems with the extension.)
This extension was developed as part of Harry Burt's GSoC project.
For notes about the development of the project, see Extension:TranslateSvg/2.0.
InstallationEdit
NOTE: Latest instructions are at this page.
- First install the Translate extension.
- Download and place the file(s) in a directory called
TranslateSvg
in yourextensions/
folder. - Only when installing from Git, run Composer to install PHP dependencies, by issuing
composer install --no-dev
in the extension directory. (See task T173141 for potential complications.) - Add the following code at the bottom of your
LocalSettings.php
:wfLoadExtension( 'TranslateSvg' );
- Run the update script which will automatically create the necessary database tables that this extension needs.
- Done – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.
To users running MediaWiki 1.24 or earlier:
The instructions above describe the new way of installing this extension using wfLoadExtension()
.
If you need to install this extension on these earlier versions (MediaWiki 1.24 and earlier), instead of wfLoadExtension( 'TranslateSvg' );
, you need to use:
require_once "$IP/extensions/TranslateSvg/TranslateSvg.php";
See alsoEdit
- SVG Translate tool — a standalone tool for translating SVGs.