Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
trisquel-packages
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
5
Merge Requests
5
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
trisquel
trisquel-packages
Commits
d9f46ded
Commit
d9f46ded
authored
Mar 15, 2012
by
Ruben Rodriguez
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
extra/gnome-app-install: Updated AppDescView.py to fix packages with no description failing to load
parent
fd3a6981
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
20 additions
and
9 deletions
+20
-9
AppDescView.py
extra/gnome-app-install/AppInstall/widgets/AppDescView.py
+5
-1
changelog
extra/gnome-app-install/debian/changelog
+7
-0
gnome-app-install.pot
extra/gnome-app-install/po/gnome-app-install.pot
+8
-8
No files found.
extra/gnome-app-install/AppInstall/widgets/AppDescView.py
View file @
d9f46ded
...
...
@@ -73,7 +73,11 @@ class AppDescView(ReleaseNotesViewer):
try
:
# short_desc = ... already looked up the correct translation
# for us.
rough_desc
=
candidate
.
package
.
_pcache
.
_records
.
LongDesc
.
split
(
"
\n
"
,
1
)[
1
]
tmp
=
candidate
.
package
.
_pcache
.
_records
.
LongDesc
.
split
(
"
\n
"
,
1
)
if
len
(
tmp
)
==
1
:
rough_desc
=
""
else
:
rough_desc
=
tmp
[
1
]
except
AttributeError
:
rough_desc
=
candidate
and
candidate
.
raw_description
.
split
(
"
\n
"
,
1
)[
1
]
...
...
extra/gnome-app-install/debian/changelog
View file @
d9f46ded
gnome-app-install (0.5.60.1ubuntu2trisquel6-4) slaine; urgency=low
* Updated AppDescView.py to fix packages with no description failing
to load
-- Trisquel GNU/Linux developers <trisquel-devel@listas.trisquel.info> Thu, 15 Mar 2012 15:17:56 +0100
gnome-app-install (0.5.60.1ubuntu2trisquel6-3) slaine; urgency=low
* Updated AppDescView.py to fix descriptions failing to load in
...
...
extra/gnome-app-install/po/gnome-app-install.pot
View file @
d9f46ded
...
...
@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: Sebastian Heinlein <sebi@glatzor.de>\n"
"POT-Creation-Date: 2012-03-15 1
4:35
+0100\n"
"POT-Creation-Date: 2012-03-15 1
5:18
+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
...
...
@@ -792,13 +792,13 @@ msgstr ""
msgid "Description"
msgstr ""
#: ../AppInstall/widgets/AppDescView.py:10
4
#: ../AppInstall/widgets/AppDescView.py:10
8
#, python-format
msgid "%s cannot be installed"
msgstr ""
#. warn that this app is not available on this plattform
#: ../AppInstall/widgets/AppDescView.py:11
3
#: ../AppInstall/widgets/AppDescView.py:11
7
#, python-format
msgid ""
"%s cannot be installed on your computer type (%s). Either the application "
...
...
@@ -806,29 +806,29 @@ msgid ""
"computer type."
msgstr ""
#: ../AppInstall/widgets/AppDescView.py:12
4
#: ../AppInstall/widgets/AppDescView.py:12
8
#, python-format
msgid ""
"%s is available in the third party software channel '%s'. To install it, "
"please click on the checkbox to activate the software channel."
msgstr ""
#: ../AppInstall/widgets/AppDescView.py:13
4
#: ../AppInstall/widgets/AppDescView.py:13
8
msgid "This application is bundled with the following applications: "
msgstr ""
#: ../AppInstall/widgets/AppDescView.py:2
28
#: ../AppInstall/widgets/AppDescView.py:2
32
msgid "Screenshot"
msgstr ""
#: ../AppInstall/widgets/AppDescView.py:2
36
#: ../AppInstall/widgets/AppDescView.py:2
40
#, python-format
msgid ""
"\n"
"Homepage: %s\n"
msgstr ""
#: ../AppInstall/widgets/AppDescView.py:2
38
#: ../AppInstall/widgets/AppDescView.py:2
42
#, python-format
msgid "Version: %s (%s)"
msgstr ""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment