forked from gnome-terminator/terminator
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "replace gettext and intltool with Babel"
- Loading branch information
1 parent
4719eef
commit 6718ab1
Showing
10 changed files
with
748 additions
and
773 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,47 +2,47 @@ | |
<!-- Copyright 2013 Stephen Boddy <[email protected]> --> | ||
<component type="desktop"> | ||
<id>terminator.desktop</id> | ||
<metadata_license>CC0-1.0</metadata_license> | ||
<project_license>GPL-2.0 only</project_license> | ||
<name translatable="yes">Terminator</name> | ||
<summary translatable="yes">Multiple terminals in one window</summary> | ||
<metadata_license>CC0-1.0</metadata_license> | ||
<project_license>GPL-2.0 only</project_license> | ||
<_name>Terminator</_name> | ||
<_summary>Multiple terminals in one window</_summary> | ||
<description> | ||
<p translatable="yes"> | ||
<_p> | ||
The robot future of terminals | ||
</p> | ||
<p translatable="yes"> | ||
</_p> | ||
<_p> | ||
A power-user tool for arranging terminals. It is inspired by programs such as | ||
gnome-multi-term, quadkonsole, etc. in that the main focus is arranging terminals | ||
in grids (tabs is the most common default method, which Terminator also supports). | ||
</p> | ||
<p translatable="yes"> | ||
</_p> | ||
<_p> | ||
Much of the behavior of Terminator is based on GNOME Terminal, and we are adding | ||
more features from that as time goes by, but we also want to extend out in different | ||
directions with useful features for sysadmins and other users. | ||
</p> | ||
<p translatable="yes">Some highlights:</p> | ||
</_p> | ||
<_p>Some highlights:</_p> | ||
<ul> | ||
<li translatable="yes">Arrange terminals in a grid</li> | ||
<li translatable="yes">Tabs</li> | ||
<li translatable="yes">Drag and drop re-ordering of terminals</li> | ||
<li translatable="yes">Lots of keyboard shortcuts</li> | ||
<li translatable="yes">Save multiple layouts and profiles via GUI preferences editor</li> | ||
<li translatable="yes">Simultaneous typing to arbitrary groups of terminals</li> | ||
<_li>Arrange terminals in a grid</_li> | ||
<_li>Tabs</_li> | ||
<_li>Drag and drop re-ordering of terminals</_li> | ||
<_li>Lots of keyboard shortcuts</_li> | ||
<_li>Save multiple layouts and profiles via GUI preferences editor</_li> | ||
<_li>Simultaneous typing to arbitrary groups of terminals</_li> | ||
</ul> | ||
<p translatable="yes">And lots more...</p> | ||
<_p>And lots more...</_p> | ||
</description> | ||
<screenshots> | ||
<screenshot type="default"> | ||
<image>http://4.bp.blogspot.com/-xt4Tja1TMQ0/Vdemmf8wYSI/AAAAAAAAA9A/uROTre0PMls/s1600/terminator_main_basic.png</image> | ||
<caption translatable="yes">The main window showing the application in action</caption> | ||
<_caption>The main window showing the application in action</_caption> | ||
</screenshot> | ||
<screenshot> | ||
<image>http://4.bp.blogspot.com/-rRxALSpEEZw/Vdeu58JgpnI/AAAAAAAAA9o/XewWKJ5HNo4/s1600/terminator_main_complex.png</image> | ||
<caption translatable="yes">Getting a little crazy with the terminals</caption> | ||
<_caption>Getting a little crazy with the terminals</_caption> | ||
</screenshot> | ||
<screenshot> | ||
<image>http://2.bp.blogspot.com/-t_8oRyMXUls/VdemmRVnZnI/AAAAAAAAA88/rHIr8L1X7Ho/s1600/terminatorprefs_global.png</image> | ||
<caption translatable="yes">The preferences window where you can change the defaults</caption> | ||
<image>http://2.bp.blogspot.com/-t_8oRyMXUls/VdemmRVnZnI/AAAAAAAAA88/rHIr8L1X7Ho/s1600/terminator_prefs_global.png</image> | ||
<_caption>The preferences window where you can change the defaults</_caption> | ||
</screenshot> | ||
</screenshots> | ||
<url type="homepage">https://github.com/gnome-terminator/terminator</url> | ||
|
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
#!/bin/sh | ||
# Stupid workaround for intltools not handling extensionless files | ||
ln -s terminator ../terminator.py | ||
ln -s remotinator ../remotinator.py | ||
|
||
# Make translation files | ||
intltool-update -g terminator -o terminator.pot -p | ||
|
||
# Cleanup after stupid workaround | ||
rm ../terminator.py | ||
rm ../remotinator.py |
Oops, something went wrong.