-
Notifications
You must be signed in to change notification settings - Fork 578
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Updated POTFILES.in #451
Updated POTFILES.in #451
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
[Desktop Entry] | ||
Encoding=UTF-8 | ||
Name=Guake Preferences | ||
Name[pt_BR]=Preferências do Guake | ||
Comment=Configure your Guake sessions | ||
Comment[pt_BR]=Configurações do terminal Guake | ||
Comment[fr_FR]=Configurer votre session Guake | ||
_Name=Guake Preferences | ||
_Comment=Configure your Guake sessions | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Shouldn't this be in english? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What do you mean? It is in English. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Sorry indeed, I think I wasn't quite awake and my eyes were not quite open, so basically -ENOCOFFEE :) There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No worries, happens to me too. :) |
||
TryExec=guake-prefs | ||
Exec=guake-prefs | ||
Icon=guake-prefs | ||
|
@@ -13,4 +10,4 @@ Type=Application | |
StartupNotify=true | ||
Categories=GTK;GNOME;Settings;X-GNOME-PersonalSettings; | ||
X-Desktop-File-Install-Version=0.15 | ||
Keywords=Terminal;Utility; | ||
_Keywords=Terminal;Utility; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,11 @@ | ||
[Desktop Entry] | ||
Encoding=UTF-8 | ||
Name=Guake Terminal | ||
Name[pt]=Guake Terminal | ||
Name[pt_BR]=Guake Terminal | ||
Name[fr]=Guake Terminal | ||
Name[fr_FR]=Guake Terminal | ||
Comment=Use the command line in a Quake-like terminal | ||
Comment[pt]=Utilizar a linha de comando em um terminal estilo Quake | ||
Comment[pt_BR]=Utilizar a linha de comando em um terminal estilo Quake | ||
Comment[fr]=Utilisez la ligne de commande comme dans un terminal quake | ||
Comment[fr_FR]=Utilisez la ligne de commande comme dans un terminal quake | ||
_Name=Guake Terminal | ||
_Comment=Use the command line in a Quake-like terminal | ||
TryExec=guake | ||
Exec=guake | ||
Icon=guake | ||
Type=Application | ||
Categories=GNOME;GTK;System;Utility;TerminalEmulator; | ||
StartupNotify=true | ||
Keywords=Terminal;Utility; | ||
_Keywords=Terminal;Utility; |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,12 @@ | ||
[encoding: UTF-8] | ||
data/about.glade | ||
data/guake.glade | ||
data/prefs.glade | ||
data/guake-autoconfigure.desktop.in | ||
data/guake-autostart.desktop.in | ||
data/guake.desktop.in | ||
data/guake.glade | ||
data/guake-prefs.desktop.in | ||
guake/dbusiface.py | ||
guake/main.py | ||
guake/prefs.py | ||
guake/common.py | ||
guake/notifier.py | ||
data/prefs.glade | ||
src/guake/gconfhandler.py | ||
src/guake/guake_app.py | ||
src/guake/main.py | ||
src/guake/prefs.py |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I don't understand why all these '_' ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
_ makes gettext pick up these strings for translation. I'm not sure if there is any additional automake magic to make it work, but that's the basics.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok