aboutsummaryrefslogtreecommitdiffstats
path: root/embed/downloader-view.c
diff options
context:
space:
mode:
Diffstat (limited to 'embed/downloader-view.c')
-rw-r--r--embed/downloader-view.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/embed/downloader-view.c b/embed/downloader-view.c
index 2fc78b45a..ff8557ed5 100644
--- a/embed/downloader-view.c
+++ b/embed/downloader-view.c
@@ -516,15 +516,21 @@ progress_cell_data_func (GtkTreeViewColumn *col,
switch (state)
{
case EPHY_DOWNLOAD_INITIALISING:
+ /* Translators: The text before the "|" is context to help you decide on
+ * the correct translation. You MUST OMIT it in the translated string. */
text = Q_("download status|Unknown");
break;
case EPHY_DOWNLOAD_FAILED:
+ /* Translators: The text before the "|" is context to help you decide on
+ * the correct translation. You MUST OMIT it in the translated string. */
text = Q_("download status|Failed");
break;
case EPHY_DOWNLOAD_DOWNLOADING:
case EPHY_DOWNLOAD_PAUSED:
if (percent == -1)
{
+ /* Translators: The text before the "|" is context to help you decide on
+ * the correct translation. You MUST OMIT it in the translated string. */
text = Q_("download status|Unknown");
percent = 0;
}